【发布时间】:2017-04-04 15:22:49
【问题描述】:
我用 sklearn.decomposition.PCA 执行 SVD
从 SVD 的方程
A= U x S x V_t
V_t = V 的转置矩阵 (对不起,我无法粘贴原方程)
如果我想要矩阵 U、S 和 V,如果我使用 sklearn.decomposition.PCA 怎么得到它?
【问题讨论】:
我用 sklearn.decomposition.PCA 执行 SVD
从 SVD 的方程
A= U x S x V_t
V_t = V 的转置矩阵 (对不起,我无法粘贴原方程)
如果我想要矩阵 U、S 和 V,如果我使用 sklearn.decomposition.PCA 怎么得到它?
【问题讨论】:
首先,根据矩阵的大小,PCA 的 sklearn 实现并不总是计算完整的 SVD 分解。以下摘自PCA's GitHub reciprocity:
svd_solver : string {'auto', 'full', 'arpack', 'randomized'}
auto :
the solver is selected by a default policy based on `X.shape` and
`n_components`: if the input data is larger than 500x500 and the
number of components to extract is lower than 80% of the smallest
dimension of the data, then the more efficient 'randomized'
method is enabled. Otherwise the exact full SVD is computed and
optionally truncated afterwards.
full :
run exact full SVD calling the standard LAPACK solver via
`scipy.linalg.svd` and select the components by postprocessing
arpack :
run SVD truncated to n_components calling ARPACK solver via
`scipy.sparse.linalg.svds`. It requires strictly
0 < n_components < X.shape[1]
randomized :
run randomized SVD by the method of Halko et al.
此外,它还对数据进行一些操作(参见here)。
现在,如果您想获得在sklearn.decomposition.PCA 中使用的U, S, V,您可以使用pca._fit(X)。
例如:
from sklearn.decomposition import PCA
X = np.array([[1, 2], [3,5], [8,10], [-1, 1], [5,6]])
pca = PCA(n_components=2)
pca._fit(X)
打印
(array([[ -3.55731195e-01, 5.05615563e-01],
[ 2.88830295e-04, -3.68261259e-01],
[ 7.10884729e-01, -2.74708608e-01],
[ -5.68187889e-01, -4.43103380e-01],
[ 2.12745524e-01, 5.80457684e-01]]),
array([ 9.950385 , 0.76800941]),
array([[ 0.69988535, 0.71425521],
[ 0.71425521, -0.69988535]]))
但是,如果你只是想对原始数据进行 SVD 分解,我建议使用scipy.linalg.svd
【讨论】: