Skip to content

Commit

Permalink
SPARK-3278 fixed indentation error
Browse files Browse the repository at this point in the history
  • Loading branch information
zapletal-martin committed Jan 30, 2015
1 parent 75eac55 commit 3da56e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class LinearRegressionClusterSuite extends FunSuite with LocalClusterSparkContex
}.cache()
// If we serialize data directly in the task closure, the size of the serialized task would be
// greater than 1MB and hence Spark would throw an error.
val model = LinearRegressionWithSGD.train(points, 2 )
val model = LinearRegressionWithSGD.train(points, 2)
val predictions = model.predict(points.map(_.features))
}
}

0 comments on commit 3da56e5

Please sign in to comment.