def ReduceDimension(X):
from sklearn.decomposition import FastICA
reducer = FastICA(n_components=2)
x_r = reducer.fit_transform(X)
yield 'ICA',x_r[:,0],x_r[:,1]
#=================================================
irisclustering.py 文件源码
python
阅读 34
收藏 0
点赞 0
评论 0
评论列表
文章目录