文件名称:classification
文件大小:3KB
文件格式:ZIP
更新时间:2024-04-15 21:53:02
Python
分类 此存储库存储SimpleKMean类,用于通过K-mean聚类进行无监督学习。 该类包含以下方法和函数。 init :使用给定参数初始化K均值求解器; 输入: a. n_clusters: number of clusters to be found, default = 3 b. n_iters: number of maximum iteration to be run, default = 100 c. tolerance: minimum changes of centroid before the solution is accepted 输出:无 适合:根据簇数查找质心,并使用k-mean ++进行初始化 输入: a. positions: a (N,2) array containing the positions of N datapoints 输出:无 预测
【文件预览】:
classification-main
----SimpleKMean.py(8KB)
----README.md(1KB)