Skip to content

Commit

Permalink
Fix the indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yu-iskw committed Jul 15, 2015
1 parent 39514ec commit 2278829
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -515,12 +515,12 @@ private[python] class PythonMLLibAPI extends Serializable {
checkpointInterval: Int,
optimizer: String): LDAModel = {
val algo = new LDA()
.setK(k)
.setMaxIterations(maxIterations)
.setDocConcentration(docConcentration)
.setTopicConcentration(topicConcentration)
.setCheckpointInterval(checkpointInterval)
.setOptimizer(optimizer)
.setK(k)
.setMaxIterations(maxIterations)
.setDocConcentration(docConcentration)
.setTopicConcentration(topicConcentration)
.setCheckpointInterval(checkpointInterval)
.setOptimizer(optimizer)

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

Expand Down

0 comments on commit 2278829

Please sign in to comment.