From fd461e9133f1d191e3db194745f2306cde1772b6 Mon Sep 17 00:00:00 2001 From: Hoang-Anh Ngo Date: Tue, 31 Oct 2023 16:22:32 +0700 Subject: [PATCH] Add SAD to the list of ignored estimators upon testing. --- river/test_estimators.py | 1 + 1 file changed, 1 insertion(+) diff --git a/river/test_estimators.py b/river/test_estimators.py index 18aacf32f2..5cc1ab499b 100644 --- a/river/test_estimators.py +++ b/river/test_estimators.py @@ -54,6 +54,7 @@ def iter_estimators_which_can_be_tested(): River2SKLBase, SKL2RiverBase, anomaly.LocalOutlierFactor, # needs warm-start to work correctly + anomaly.StandardAbsoluteDeviation, # SAD only works with data points as dictionaries with length 1. compose.FuncTransformer, compose.Grouper, compose.Pipeline,