Skip to content

Commit

Permalink
[This PR adds 5 clustering models corrected {sagnik1511#32}]
Browse files Browse the repository at this point in the history
Affinity Propagation
Agglomerative Clustering
Birch
DBSCAN
KMeans
  • Loading branch information
Tihsrah committed Feb 11, 2022
1 parent 84e66d3 commit 4c77bd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tab_automl/automl/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"Random Forest Classifier": RandomForestClassifier
},
"clustering":{
"AffinityPropagation":AffinityPropagation,
"AgglomerativeClustering":AgglomerativeClustering,
"Affinity Propagation":AffinityPropagation,
"Agglomerative Clustering":AgglomerativeClustering,
"Birch":Birch,
"DBSCAN":DBSCAN,
"KMeans":KMeans
Expand Down

0 comments on commit 4c77bd9

Please sign in to comment.