File size: 209 Bytes
3cab2dd
 
 
 
 
 
 
 
c777165
1
2
3
4
5
6
7
8
9
10
from cluster.clusterer import Clusterer
from cluster.kmedoids import Kmedoids
from cluster.kmeans import Kmeans


clustering_methods: dict[str, Clusterer] = {
    "kmeans": Kmeans,
    "kmedoids": Kmedoids,
}