Skip to content

Commit

Permalink
[Issue {sagnik1511#32}]Add clustering models inside single_model_dict
Browse files Browse the repository at this point in the history
Changes made
Adding Hierarchical Divisive Clustering to models.py

Description
The divisive clustering algorithm is a top-down clustering approach, initially, all the points in the dataset belong to one cluster and split is performed recursively as one moves down the hierarchy.
  • Loading branch information
Akansha3001 authored Feb 17, 2023
1 parent ac94419 commit 4f34b23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tab_automl/automl/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"MeanShift": MeanShift,
"OPTICS": OPTICS,
"SpectralClustering": SpectralClustering,
"GaussianMixture": GaussianMixture
"GaussianMixture": GaussianMixture,
"HierarchicalDivisiveClustering": HierarchicalDivisiveClustering
}
}

0 comments on commit 4f34b23

Please sign in to comment.