Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix the indentation
  • Loading branch information
yu-iskw committed Jul 15, 2015
commit 22788295feb04531447f1695625bd6ab8a86624c
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