13 lines
475 B
Python
13 lines
475 B
Python
"""
|
|
The :mod:`sklearn.cluster` module gathers popular unsupervised clustering
|
|
algorithms.
|
|
"""
|
|
|
|
from .spectral import spectral_clustering, SpectralClustering
|
|
from .mean_shift_ import mean_shift, MeanShift, estimate_bandwidth, \
|
|
get_bin_seeds
|
|
from .affinity_propagation_ import affinity_propagation, AffinityPropagation
|
|
from .hierarchical import ward_tree, Ward, WardAgglomeration
|
|
from .k_means_ import k_means, KMeans, MiniBatchKMeans
|
|
from .dbscan_ import dbscan, DBSCAN
|