layout | title | displayTitle |
---|---|---|
global |
Dimensionality Reduction - RDD-based API |
Dimensionality Reduction - RDD-based API |
- Table of contents {:toc}
Dimensionality reduction is the process
of reducing the number of variables under consideration.
It can be used to extract latent features from raw and noisy features
or compress data while maintaining the structure.
spark.mllib
provides support for dimensionality reduction on the RowMatrix class.
Singular value decomposition (SVD)
factorizes a matrix into three matrices:
\[ A = U \Sigma V^T, \]
where
-
$U$ is an orthonormal matrix, whose columns are called left singular vectors, -
$\Sigma$ is a diagonal matrix with non-negative diagonals in descending order, whose diagonals are called singular values, -
$V$ is an orthonormal matrix, whose columns are called right singular vectors.
For large matrices, usually we don't need the complete factorization but only the top singular values and its associated singular vectors. This can save storage, de-noise and recover the low-rank structure of the matrix.
If we keep the top
-
$U$
:$m \times k$
, -
$\Sigma$
:$k \times k$
, -
$V$
:$n \times k$
.
We assume
- If
$n$ is small ($n < 100$ ) or$k$ is large compared with$n$ ($k > n / 2$ ), we compute the Gramian matrix first and then compute its top eigenvalues and eigenvectors locally on the driver. This requires a single pass with$O(n^2)$ storage on each executor and on the driver, and$O(n^2 k)$ time on the driver. - Otherwise, we compute
$(A^T A) v$ in a distributive way and send it to ARPACK to 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.
spark.mllib
provides SVD functionality to row-oriented matrices, provided in the
RowMatrix class.
{% include_example scala/org/apache/spark/examples/mllib/SVDExample.scala %}
The same code applies to IndexedRowMatrix
if U
is defined as an
IndexedRowMatrix
.
{% include_example java/org/apache/spark/examples/mllib/JavaSVDExample.java %}
The same code applies to IndexedRowMatrix
if U
is defined as an
IndexedRowMatrix
.
{% include_example python/mllib/svd_example.py %}
The same code applies to IndexedRowMatrix
if U
is defined as an
IndexedRowMatrix
.
Principal component analysis (PCA) is a statistical method to find a rotation such that the first coordinate has the largest variance possible, and each succeeding coordinate, in turn, has the largest variance possible. The columns of the rotation matrix are called principal components. PCA is used widely in dimensionality reduction.
spark.mllib
supports PCA for tall-and-skinny matrices stored in row-oriented format and any Vectors.
The following code demonstrates how to compute principal components on a RowMatrix
and use them to project the vectors into a low-dimensional space.
Refer to the RowMatrix
Scala docs for details on the API.
{% include_example scala/org/apache/spark/examples/mllib/PCAOnRowMatrixExample.scala %}
The following code demonstrates how to compute principal components on source vectors and use them to project the vectors into a low-dimensional space while keeping associated labels:
Refer to the PCA
Scala docs for details on the API.
{% include_example scala/org/apache/spark/examples/mllib/PCAOnSourceVectorExample.scala %}
The following code demonstrates how to compute principal components on a RowMatrix
and use them to project the vectors into a low-dimensional space.
Refer to the RowMatrix
Java docs for details on the API.
{% include_example java/org/apache/spark/examples/mllib/JavaPCAExample.java %}
The following code demonstrates how to compute principal components on a RowMatrix
and use them to project the vectors into a low-dimensional space.
Refer to the RowMatrix
Python docs for details on the API.
{% include_example python/mllib/pca_rowmatrix_example.py %}