Hi Andy,
That is the case in Spark 1.0, yes. However, as of Spark 1.1 which is
coming out very soon, you will be able to run SVD on non-TS matrices.

If you try to apply the current algorithm to a matrix with more than 10,000
columns, you will overburden the master node, which has to compute a 10k x
10k local SVD by itself.

This bottleneck has been removed in Spark 1.1, and if you really want it
now you can pull the current master from github.

Best,
Reza


On Sun, Aug 10, 2014 at 9:35 PM, Andy Zhao <andyrao1...@gmail.com> wrote:

> Hi guys
>
>      I'm considering apply MLlib SVD in my work. But I find that in the
> document, it says: "In this release, we provide SVD computation to
> row-oriented matrices that have only a few columns, say, less than 1000,
> but
> many rows, which we call tall-and-skinny."  Does that mean this SVD will
> not
> work for a matrix which have a lot of columns, say more than 10000? What
> will happen if this kind of matrix is applied to SVD?
>
> Thank you ,
> Andy Zhao
>
>
>
>
> --
> View this message in context:
> http://apache-spark-user-list.1001560.n3.nabble.com/Does-MLlib-in-spark-1-0-2-only-work-for-tall-and-skinny-matrix-tp11869.html
> Sent from the Apache Spark User List mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
> For additional commands, e-mail: user-h...@spark.apache.org
>
>

Reply via email to