Monday, May 10, 2021

Clustering algorithms 

Clustering algos are the algos for unsupervised learning. 

Data is provided to them without labels and the algo clusters them into groups. 


There are 3 types of clustering algorithms : 

Desnsity Based : DBSCAN , OPTICS

Distribution Based : 

Centroid Based : K-means, Gaussian Mixture Model, BIRCH

BIRCH-> Balance Iterative Reducing and Clustering using Hierarchies

OPTICS->Ordering Points to Identify Clustering Structure 

No comments:

Post a Comment

Misc Javascript points

 Nodejs can support multithreading through use of promises _ is the numeric separator for javascript, that means the numbers 10_000, 11.23_0...