Skip to content

pyclustering 0.9.1 release

Compare
Choose a tag to compare
@annoviko annoviko released this 04 Sep 11:25
· 1 commit to 0.9.1.rel since this release

pyclustering 0.9.1 library is a collection of clustering algorithms and methods, oscillatory networks, neural networks, etc.

GENERAL CHANGES:

  • Introduced predict method for X-Means algorithm to find closest clusters for particular points (pyclustering.cluster.xmeans).
    See: #540

  • Optimization of OPTICS algorithm by reducing complexity (ccore.clst.optics).
    See: #521

  • Optimization of K-Medians algorithm by parallel processing (ccore.clst.kmedians).
    See: #529

  • Introduced predict method for K-Medoids algorithm to find closest clusters for particular points (pyclustering.cluster.kmedoids).
    See: #527

  • Introduced predict method for K-Means algorithm to find closest clusters for particular points (pyclustering.cluster.kmeans).
    See: #515

  • Parallel optimization of Elbow method. (ccore.clst.elbow).
    See: #511