diff --git a/src/mlpro_int_sklearn/wrappers/anomalydetectors/basics.py b/src/mlpro_int_sklearn/wrappers/anomalydetectors/basics.py index 496ba48..a4bcfcd 100644 --- a/src/mlpro_int_sklearn/wrappers/anomalydetectors/basics.py +++ b/src/mlpro_int_sklearn/wrappers/anomalydetectors/basics.py @@ -15,10 +15,11 @@ ## -- 2024-05-24 1.3.0 DA Refactoring ## -- 2024-11-27 1.4.0 DA Alignment with MLPro 1.9.2 ## -- 2025-03-05 2.0.0 DA Alignment with MLPro 1.9.5 and generalization +## -- 2025-05-07 2.0.1 DA Alignment with MLPro 2.2.0 ## ------------------------------------------------------------------------------------------------- """ -Ver. 2.0.0 (2025-03-05) +Ver. 2.0.1 (2025-05-07) This module provides wrapper root classes from Scikit-learn to MLPro, specifically for anomaly detectors. @@ -121,7 +122,7 @@ def _run(self, p_inst: InstDict ): p_raising_object = self, p_tstamp = inst.tstamp ) - self._raise_anomaly_event( p_anomaly = anomaly ) + self._raise_anomaly_event( p_anomaly = anomaly, p_inst = inst ) ## -------------------------------------------------------------------------------------------------