Jensen-holm's picture
reverting more code back to python 3 syntax
ecb0c79
raw
history blame
169 Bytes
from cluster.kmedoids import Kmedoids
from cluster.kmeans import Kmeans
clustering_methods = {
"kmeans-clustering": Kmeans,
"kmedoids-clustering": Kmedoids,
}