Skip to content

Commit

Permalink
Remove the default value of seed from the Model class
Browse files Browse the repository at this point in the history
  • Loading branch information
yu-iskw committed Jul 16, 2015
1 parent 978ee2c commit e933723
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,7 @@ class KMeans(override val uid: String) extends Estimator[KMeansModel] with KMean
runs -> 1,
initMode -> MLlibKMeans.K_MEANS_PARALLEL,
initSteps -> 5,
epsilon -> 1e-4,
seed -> Utils.random.nextLong())
epsilon -> 1e-4)

override def copy(extra: ParamMap): Estimator[KMeansModel] = defaultCopy(extra)

Expand Down

0 comments on commit e933723

Please sign in to comment.