From 7ffa2aa75ed2a26bbd0058902e37c78908ce8b67 Mon Sep 17 00:00:00 2001 From: Reza Zadeh Date: Wed, 20 Aug 2014 17:59:43 -0700 Subject: [PATCH] better title --- docs/mllib-dimensionality-reduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mllib-dimensionality-reduction.md b/docs/mllib-dimensionality-reduction.md index 0270776083db7..f0c327dfb9552 100644 --- a/docs/mllib-dimensionality-reduction.md +++ b/docs/mllib-dimensionality-reduction.md @@ -55,7 +55,7 @@ $O(n^2 k)$ time on the driver. compute $(A^T A)$'s top eigenvalues and eigenvectors on the driver node. This requires $O(k)$ passes, $O(n)$ storage on each executor, and $O(n k)$ storage on the driver. -## SVD Example +### SVD Example MLlib provides SVD functionality to row-oriented matrices, provided in the RowMatrix class.