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
I am trying to test the Isolation Forest algorithm for anomaly detection, but I keep encountering an error. Despite setting the 'warm_start' parameter to 'False' in the dashboard (and also attempting with 'True'), the error persists.
The text was updated successfully, but these errors were encountered:
There is is a small bug in the isolation_forest.py file line no 65 I think.
self.model = IsolationForest(
n_estimators=params.n_estimators,
max_samples=params.max_samples,
contamination=params.contamination,
max_features=params.max_features,
bootstrap=params.bootstrap,
n_jobs=params.n_jobs,
random_state=params.random_state,
verbose=params.verbose, warm_start=params.verbose,
)
the corrected code should be warm_start=params.warm_start
file path : **logai\algorithms\anomaly_detection_algo\isolation_forest.py**
I am trying to test the Isolation Forest algorithm for anomaly detection, but I keep encountering an error. Despite setting the 'warm_start' parameter to 'False' in the dashboard (and also attempting with 'True'), the error persists.
The text was updated successfully, but these errors were encountered: