Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 814 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 814 Bytes

Centroid based clustering algorithms implementation

  • lac.py: Learning Automata Clustering (LAC) algorithm
  • kmeans.py: K-means clustering algorithm
  • kmeans++.py: K-means++ clustering algorithm
  • kmedians.py: K-medians clustering algorithm
  • kmedoids.py: K-medoids clustering algorithm

Density based clustering algorithm implementation

  • dbscan.py: DBSCAN clustering algorithm

Spectral based clustering

  • spectral.py: Spectral clustering

Requirements

  • Linux OS
  • Python 3.4
  • NumPy: sudo pip3.4 install numpy

References