aboutsummaryrefslogtreecommitdiff
path: root/docs/mllib-guide.md
diff options
context:
space:
mode:
authorReza Zadeh <rizlar@gmail.com>2014-01-07 17:19:28 -0800
committerReza Zadeh <rizlar@gmail.com>2014-01-07 17:19:28 -0800
commit4f38b6fab5bf633a205b9039db9d4a26ed28ec89 (patch)
tree2db18778cbe23e83d0d87c6fa809c9f96976e9ac /docs/mllib-guide.md
parent7d7490b67b8d0ff7f731e9ff6328ed0fca3f43c1 (diff)
downloadspark-4f38b6fab5bf633a205b9039db9d4a26ed28ec89.tar.gz
spark-4f38b6fab5bf633a205b9039db9d4a26ed28ec89.tar.bz2
spark-4f38b6fab5bf633a205b9039db9d4a26ed28ec89.zip
documentation for sparsematrix
Diffstat (limited to 'docs/mllib-guide.md')
-rw-r--r--docs/mllib-guide.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/mllib-guide.md b/docs/mllib-guide.md
index 653848b6d4..44e6c8f58b 100644
--- a/docs/mllib-guide.md
+++ b/docs/mllib-guide.md
@@ -228,8 +228,8 @@ from which we recover S and V.
Then we compute U via easy matrix multiplication
as *U = A * V * S^-1*
-Only singular vectors associated with singular values
-greater or equal to MIN_SVALUE are recovered. If there are k
+Only singular vectors associated with largest k singular values
+are recovered. If there are k
such values, then the dimensions of the return will be:
* *S* is *k x k* and diagonal, holding the singular values on diagonal.
@@ -237,7 +237,8 @@ such values, then the dimensions of the return will be:
* *V* is *n x k* and satisfies V^TV = eye(k).
All input and output is expected in sparse matrix format, 1-indexed
-as tuples of the form ((i,j),value) all in RDDs. Below is example usage.
+as tuples of the form ((i,j),value) all in
+SparseMatrix RDDs. Below is example usage.
{% highlight scala %}