Skip to content
Snippets Groups Projects
Commit e1553247 authored by Jacky Li's avatar Jacky Li Committed by Sean Owen
Browse files

[MLlib] fix typo

fix typo: it should be "default:" instead of "default;"

Author: Jacky Li <jackylk@users.noreply.github.com>

Closes #4713 from jackylk/patch-10 and squashes the following commits:

15daf2e [Jacky Li] [MLlib] fix typo
parent 5b0a42cb
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ object DenseKMeans { ...@@ -56,7 +56,7 @@ object DenseKMeans {
.text(s"number of clusters, required") .text(s"number of clusters, required")
.action((x, c) => c.copy(k = x)) .action((x, c) => c.copy(k = x))
opt[Int]("numIterations") opt[Int]("numIterations")
.text(s"number of iterations, default; ${defaultParams.numIterations}") .text(s"number of iterations, default: ${defaultParams.numIterations}")
.action((x, c) => c.copy(numIterations = x)) .action((x, c) => c.copy(numIterations = x))
opt[String]("initMode") opt[String]("initMode")
.text(s"initialization mode (${InitializationMode.values.mkString(",")}), " + .text(s"initialization mode (${InitializationMode.values.mkString(",")}), " +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment