Releases: NorskRegnesentral/skchange
Releases · NorskRegnesentral/skchange
v0.8.1
v0.8.0
What's Changed
- Feature: Score for change in the mean and/or covariance matrix by @johannvk, @Tveten inv #16
- API: Unify naming of scores and costs. Always underscores between separate words. For example: "mean_var" rather than "meanvar", "mean_cov" rather than "meancov" etc.
- Documentation: Improve documentation of score arguments across the library.
New Contributors
Full Changelog: v0.7.0...v0.8.0
v0.7.0
Release v0.6.0
Changes
-
Update dependencies:
- sktime >= 0.30. The sktime update is an API break to BaseSeriesAnnotator, which among other things removes the fmt and labels arguments. Since BaseSeriesAnnotator is still experimental, this PR refactors a lot of basic functionality.
- No upper restriction on numpy and pandas.
-
Introduce BaseDetector, which inherits from BaseTransformer in sktime. See here #8 for reasoning. This class is an alternative to BaseSeriesAnnotator as long as it is experimental, but aims to not stray too far away. It also removes the fmt and labels arguments.
-
Add base classes per detection type:
- ChangeDetector
- PointAnomalyDetector
- CollectiveAnomalyDetector
- SubsetCollectiveAnomalyDetector
-
Refactor all change and anomaly detectors to depend on a suitable subclass of BaseDetector.
-
Convert from black to ruff for formatting.