From f9cf029879e46be388d1fc722bda52802976d88c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Rola=20Reis?= <76044191+joaorr13@users.noreply.github.com> Date: Mon, 17 Mar 2025 16:00:45 +0000 Subject: [PATCH] Corrected a typo in the Creation of the Isolation Forest algorithm --- logai/algorithms/anomaly_detection_algo/isolation_forest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logai/algorithms/anomaly_detection_algo/isolation_forest.py b/logai/algorithms/anomaly_detection_algo/isolation_forest.py index 4ace261..967acc1 100755 --- a/logai/algorithms/anomaly_detection_algo/isolation_forest.py +++ b/logai/algorithms/anomaly_detection_algo/isolation_forest.py @@ -62,7 +62,7 @@ def __init__(self, params: IsolationForestParams): n_jobs=params.n_jobs, random_state=params.random_state, verbose=params.verbose, - warm_start=params.verbose, + warm_start=params.warm_start, ) def fit(self, log_features: pd.DataFrame):