主成分分析法PCA降维
转载自:https://blog.youkuaiyun.com/program_developer/article/details/80632779
##Python实现PCA
import numpy as np
def pca(X,k):#k is the components you want
#mean of each feature
n_samples, n_features = X....
转载
2019-08-30 07:23:41 ·
280 阅读 ·
0 评论