File size: 169 Bytes
3cab2dd
 
 
 
0e83192
04b61ad
 
c777165
1
2
3
4
5
6
7
8
9
from cluster.kmedoids import Kmedoids
from cluster.kmeans import Kmeans


clustering_methods = {
    "kmeans-clustering": Kmeans,
    "kmedoids-clustering": Kmedoids,
}