From 7d1dbbb54a099b8f49711c06abed0e5a8b092bd4 Mon Sep 17 00:00:00 2001 From: sanyhe Date: Sat, 20 Jul 2024 22:00:49 +0800 Subject: [PATCH] fix: fix the path of manual hyperparameter of lof algorithm. --- geochemistrypi/data_mining/model/detection.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/geochemistrypi/data_mining/model/detection.py b/geochemistrypi/data_mining/model/detection.py index e73b818..e380b04 100644 --- a/geochemistrypi/data_mining/model/detection.py +++ b/geochemistrypi/data_mining/model/detection.py @@ -10,7 +10,8 @@ from ..utils.base import clear_output from ._base import WorkflowBase -from .func.algo_anomalydetection._iforest import isolation_forest_manual_hyper_parameters, local_outlier_factor_manual_hyper_parameters +from .func.algo_anomalydetection._iforest import isolation_forest_manual_hyper_parameters +from .func.algo_anomalydetection._local_outlier_factor import local_outlier_factor_manual_hyper_parameters class AnomalyDetectionWorkflowBase(WorkflowBase):