Jensen-holm's picture
getting rid of some more problematic type hints
0e83192
raw
history blame
209 Bytes
from cluster.clusterer import Clusterer
from cluster.kmedoids import Kmedoids
from cluster.kmeans import Kmeans
clustering_methods = {
"kmeans-clustering": Kmeans,
"kmedoids-clustering": Kmedoids,
}