Skip to content

Commit 2278829

Browse files
committed
Fix the indentation
1 parent 39514ec commit 2278829

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

mllib/src/main/scala/org/apache/spark/mllib/api/python/PythonMLLibAPI.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -515,12 +515,12 @@ private[python] class PythonMLLibAPI extends Serializable {
515515
checkpointInterval: Int,
516516
optimizer: String): LDAModel = {
517517
val algo = new LDA()
518-
.setK(k)
519-
.setMaxIterations(maxIterations)
520-
.setDocConcentration(docConcentration)
521-
.setTopicConcentration(topicConcentration)
522-
.setCheckpointInterval(checkpointInterval)
523-
.setOptimizer(optimizer)
518+
.setK(k)
519+
.setMaxIterations(maxIterations)
520+
.setDocConcentration(docConcentration)
521+
.setTopicConcentration(topicConcentration)
522+
.setCheckpointInterval(checkpointInterval)
523+
.setOptimizer(optimizer)
524524

525525
if (seed != null) algo.setSeed(seed)
526526

0 commit comments

Comments
 (0)