You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rework cdist_dtw and underlying Numba jited DTW computation to speed things up for numpy Backends.
Masks as returned by compute_mask, sakoe_chiba_mask and itakura_mask now have boolean values.
Backend attributes are now dynamic.
Ensure dtype is preserved in to_time_series_dataset
Fixed centroids computations in K-shape for multivariate timeseries (https://github.com/tslearn-team/tslearn/issues/288)
Fixed json and pickle serialization for LearningShapelet (https://github.com/tslearn-team/tslearn/issues/387)(https://github.com/tslearn-team/tslearn/issues/403)
Added
DBSCAN estimator for timeseries (https://github.com/tslearn-team/tslearn/issues/598)
Fixed LearningShapelets with variable length timeseries (#352)
The shapelets module now depends on Keras3+ and the underlying backend can be selected through the KERAS_BACKEND environment variable. Defaults to the first found installed backend among torch, tensorflow and jax (in that order).
Removed
Support for Python versions 3.8 and 3.9 is dropped
Added
per_timeseries and per_feature options for min-max and mean-variance scalers (#536)
TimeSeriesImputerclass: missing value imputer for time series (#564)