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
Remove the doc comment about the optimizer's default value
  • Loading branch information
yu-iskw committed Jul 15, 2015
commit d7a332ab8b457a3597c0acc477ae37bf17df354b
4 changes: 2 additions & 2 deletions python/pyspark/mllib/clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,8 @@ def train(cls, rdd, k=10, maxIterations=20, docConcentration=-1.0,
for the prior placed on topics' distributions over terms.
:param seed: Random Seed
:param checkpointInterval: Period (in iterations) between checkpoints.
:param optimizer: LDAOptimizer used to perform the actual calculation
(default = EMLDAOptimizer). Currently "em", "online" are supported. Default to "em".
:param optimizer: LDAOptimizer used to perform the actual calculation.
Currently "em", "online" are supported. Default to "em".
"""
model = callMLlibFunc("trainLDAModel", rdd, k, maxIterations,
docConcentration, topicConcentration, seed,
Expand Down