diff --git a/sparkbench/ml/src/main/scala/com/intel/sparkbench/ml/RandomForestClassification.scala b/sparkbench/ml/src/main/scala/com/intel/sparkbench/ml/RandomForestClassification.scala index 4c183c3e3..5c9c33254 100644 --- a/sparkbench/ml/src/main/scala/com/intel/sparkbench/ml/RandomForestClassification.scala +++ b/sparkbench/ml/src/main/scala/com/intel/sparkbench/ml/RandomForestClassification.scala @@ -67,7 +67,6 @@ object RandomForestClassification { } val testErr = labelAndPreds.filter(r => r._1 != r._2).count.toDouble / testData.count() println("Test Error = " + testErr) - println("Learned classification forest model:\n" + model.toDebugString) sc.stop() }