File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1717
1818from ..base import BaseEstimator
1919from .base import MultiSequenceClusterMixin
20- from .base import MultiSequenceClusterMixin_update
20+ # from .base import MultiSequenceClusterMixin_update
2121from .kcenters import KCenters
2222from .ndgrid import NDGrid
2323from .agglomerative import LandmarkAgglomerative
@@ -61,11 +61,11 @@ def _replace_labels(doc):
6161 return doc [:labelstart ] + replace + doc [labelend :]
6262
6363
64- class KMeans (MultiSequenceClusterMixin_update , cluster .KMeans , BaseEstimator ):
64+ class KMeans (MultiSequenceClusterMixin , cluster .KMeans , BaseEstimator ):
6565 __doc__ = _replace_labels (cluster .KMeans .__doc__ )
6666
6767
68- class MiniBatchKMeans (MultiSequenceClusterMixin_update , cluster .MiniBatchKMeans ,
68+ class MiniBatchKMeans (MultiSequenceClusterMixin , cluster .MiniBatchKMeans ,
6969 BaseEstimator ):
7070 __doc__ = _replace_labels (cluster .MiniBatchKMeans .__doc__ )
7171
You can’t perform that action at this time.
0 commit comments