Skip to content

Commit 8b633f3

Browse files
committed
Style issue
1 parent 9be2534 commit 8b633f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mllib/src/main/scala/org/apache/spark/mllib/clustering/GaussianMixtureModelEM.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ class GaussianMixtureModelEM private (
212212
* Given the input vectors, return the membership value of each vector
213213
* to all mixture components.
214214
*/
215-
def predictClusters(points:RDD[Vector], mu:Array[Vector], sigma:Array[Matrix],
216-
weight:Array[Double],k:Int): RDD[Array[Double]] = {
215+
def predictClusters(points: RDD[Vector], mu: Array[Vector], sigma: Array[Matrix],
216+
weight: Array[Double], k: Int): RDD[Array[Double]] = {
217217
val ctx = points.sparkContext
218218
val dists = ctx.broadcast{
219219
(0 until k).map{ i =>

0 commit comments

Comments
 (0)