12 lines
319 B
Python
12 lines
319 B
Python
"""
|
|
Fuzzy clustering subpackage, containing fuzzy c-means clustering algorithm.
|
|
This can be either supervised or unsupervised, depending if U_init kwarg is
|
|
used (if guesses are provided, it is supervised).
|
|
|
|
"""
|
|
__all__ = ['cmeans',
|
|
'cmeans_predict',
|
|
]
|
|
|
|
from ._cmeans import cmeans, cmeans_predict
|