Repository: incubator-systemml
Updated Branches:
  refs/heads/gh-pages c067a5858 -> bc14cf295


[SYSTEMML-1380] Kmeans isY and verb parameters should be boolean

Change Kmeans.dml isY and verb parameters to boolean.

Closes #516.


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/bc14cf29
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/bc14cf29
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/bc14cf29

Branch: refs/heads/gh-pages
Commit: bc14cf2950b6fd5ec138ce7864ee5429e329f235
Parents: c067a58
Author: krishnakalyan3 <krishnakaly...@gmail.com>
Authored: Thu May 25 23:00:52 2017 -0700
Committer: Deron Eriksson <de...@us.ibm.com>
Committed: Thu May 25 23:00:52 2017 -0700

----------------------------------------------------------------------
 algorithms-clustering.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/bc14cf29/algorithms-clustering.md
----------------------------------------------------------------------
diff --git a/algorithms-clustering.md b/algorithms-clustering.md
index 0c91fa1..7554660 100644
--- a/algorithms-clustering.md
+++ b/algorithms-clustering.md
@@ -123,10 +123,10 @@ apart is a "false negative" etc.
                                     maxi=[int]
                                     tol=[double]
                                     samp=[int]
-                                    isY=[int]
+                                    isY=[boolean]
                                     Y=[file]
                                     fmt=[format]
-                                    verb=[int]
+                                    verb=[boolean]
 </div>
 <div data-lang="Spark" markdown="1">
     $SPARK_HOME/bin/spark-submit --master yarn-cluster
@@ -143,10 +143,10 @@ apart is a "false negative" etc.
                                          maxi=[int]
                                          tol=[double]
                                          samp=[int]
-                                         isY=[int]
+                                         isY=[boolean]
                                          Y=[file]
                                          fmt=[format]
-                                         verb=[int]
+                                         verb=[boolean]
 </div>
 </div>
 
@@ -203,14 +203,14 @@ in the centroid initialization procedure
 available mapping of records to clusters (defined by the output
 centroids)
 
-**isY**: (default: `0`) `0` = do not write matrix $Y$, `1` = write $Y$
+**isY**: (default: `FALSE`) Do not write matrix $Y$
 
 **fmt**: (default: `"text"`) Matrix file output format, such as `text`,
 `mm`, or `csv`; see read/write functions in
 SystemML Language Reference for details.
 
-**verb**: (default: `0`) `0` = do not print per-iteration statistics for
-each run, `1` = print them (the "verbose" option)
+**verb**: (default: `FALSE`) Do not print per-iteration statistics for
+each run
 
 
 ### Arguments - K-Means Prediction

Reply via email to