Detector
ClusterSegmenter
Cluster-based Time Series Segmentation.
time series segmentation using clustering is simple task. This detector segments time series data into distinct segments based on similarity, identified using the chosen clustering algorithm.
Schnellstart
python
from sktime.detection.clust import ClusterSegmenter
estimator = ClusterSegmenter(clusterer=None)Parameter(1)
- clusterersklearn.cluster
- The instance of clustering algorithm used for segmentation.