From b50bbc30abc273519c93c4bec22b7a2243de9adc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20T=C3=A1rano?= Date: Wed, 29 Jan 2025 11:14:47 -0500 Subject: [PATCH] Update earth_volcanoes_pixels.yml Fixed bug: File "*/dora/.venv/lib/python3.8/site-packages/dora_exp_pipeline/outlier_detection.py", line 69, in run results = self._rank_internal(dtf, dts, dts_ids, top_n, seed, **kwargs) TypeError: _rank_internal() missing 1 required positional argument: 'fit_single_trees' --- .../earth_volcanoes/exp/pixels/earth_volcanoes_pixels.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sample_data/earth_volcanoes/exp/pixels/earth_volcanoes_pixels.yml b/sample_data/earth_volcanoes/exp/pixels/earth_volcanoes_pixels.yml index e8d17ce..bfa7f62 100644 --- a/sample_data/earth_volcanoes/exp/pixels/earth_volcanoes_pixels.yml +++ b/sample_data/earth_volcanoes/exp/pixels/earth_volcanoes_pixels.yml @@ -19,7 +19,8 @@ features: { top_n: 'None' outlier_detection: { iforest: { - n_trees: 100 + n_trees: 100, + fit_single_trees: False }, demud: { k: 1 @@ -37,4 +38,4 @@ outlier_detection: { # Results organization module results: { save_scores: {}, -} \ No newline at end of file +}