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
v<0.2.0> <06/10/2023> -- Upgraded some libraries like numpy,pandas and small refactorings.
3
3
v<0.3.0>, <05/23/2025> -- Updated dependencies to latest versions, improved documentation, added quick start example in README. Added Inqmad model. Special thanks to @TechyNilesh @Joaggi @onixlas.
4
4
v<0.3.1>, <06/04/2025> -- Enhanced README with comprehensive community engagement section, educational content, third-party integrations, and developer community highlights. Fixed sublist formatting in reStructuredText. Improved error handling for Inqmad model imports.
5
-
v<0.3.2>, <06/14/2025> -- Updated PyOD version and added Python 3.13 support. Fixed Flaticon link in documentation. Enhanced error handling for optional JAX dependencies. Updated rrcf version to 0.4.4 and improved quantization in RelativeEntropy model. Improved test coverage and configuration. Added deprecation warning tests and enhanced model methods array handling. Special thanks to @onixlas for multiple contributions.
5
+
v<0.3.2>, <06/14/2025> -- Updated PyOD version and added Python 3.13 support. Fixed Flaticon link in documentation. Enhanced error handling for optional JAX dependencies. Updated rrcf version to 0.4.4 and improved quantization in RelativeEntropy model. Improved test coverage and configuration. Added deprecation warning tests and enhanced model methods array handling. Special thanks to @onixlas for multiple contributions.
6
+
v<0.3.3>, <06/19/2025> -- Fixed critical bugs in ReferenceWindowModel: resolved data mutation issues by ensuring reference window data is properly copied, fixed window_length parameter naming to window_size, and improved reference window label management. Enhanced test coverage and fixed minor typo in bibtex reference. Special thanks to @onixlas for bug reports and fixes.
Copy file name to clipboardExpand all lines: pysad/models/integrations/reference_window_model.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
5
5
classReferenceWindowModel(PYODModel):
6
-
"""This PyOD model wrapper wraps the batch anomaly detectors. This wrapper keeps track of the reference window of size `window_length`. For every `sliding_size` instnaces, it resets the model by training new `model_cls` instance with the reference window. This implementation is based on the reference windowing described in :cite:`xstream`.
6
+
"""This PyOD model wrapper wraps the batch anomaly detectors. This wrapper keeps track of the reference window of size `window_size`. For every `sliding_size` instances, it resets the model by training new `model_cls` instance with the reference window. This implementation is based on the reference windowing described in :cite:`xstream`.
7
7
8
8
Args:
9
9
model_cls (class): The model class to be instantiated.
0 commit comments