python机器学习API介绍18: LLE模型用于数据降维

python机器学习API介绍18: LLE模型用于数据降维

----python机器学习API介绍18: LLE模型用于数据降维//---- http://


LocallyLinearEmbedding模型(局部线性嵌入模型 , 简写LLE)是有scikit-learn提供的降维模型 , 其原型为:

class sklearn.manifold.LocallyLinearEmbedding(n_neighbors=5n_components=2reg=0.001eigen_solver='auto' tol=1e-06max_iter=100method='standard'hessian_tol=0.0001modified_tol=1e-12 neighbors_algorithm='auto' random_state=None)

参数说明:

n_neighbors:一个整数 , 指定近邻参数K 。

n_components:一个整数 , 指定低维的维数 。

推荐阅读