pyspark.mllib.linalg.distributed.
SingularValueDecomposition
Represents singular value decomposition (SVD) factors.
New in version 2.2.0.
Methods
call(name, *a)
call
Call method of java_model
Attributes
U
Returns a distributed matrix whose columns are the left singular vectors of the SingularValueDecomposition if computeU was set to be True.
V
Returns a DenseMatrix whose columns are the right singular vectors of the SingularValueDecomposition.
s
Returns a DenseVector with singular values in descending order.
Methods Documentation
Attributes Documentation