Reusing One Estimator Across Multiple k Values ============================================== The estimator workflow is designed around reuse: .. code-block:: python clusterer = CoreSGClusterer(k_max=30) for k in [25, 20, 15, 10]: clusterer.fit(X, k=k) labels = clusterer.labels_ .. raw:: html