We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12eca9a + e155324 commit 664d1e9Copy full SHA for 664d1e9
examples/src/main/scala/org/apache/spark/examples/mllib/DenseKMeans.scala
@@ -56,7 +56,7 @@ object DenseKMeans {
56
.text(s"number of clusters, required")
57
.action((x, c) => c.copy(k = x))
58
opt[Int]("numIterations")
59
- .text(s"number of iterations, default; ${defaultParams.numIterations}")
+ .text(s"number of iterations, default: ${defaultParams.numIterations}")
60
.action((x, c) => c.copy(numIterations = x))
61
opt[String]("initMode")
62
.text(s"initialization mode (${InitializationMode.values.mkString(",")}), " +
0 commit comments