From 67900c7aa6ddab531031d7985a5288aa5753928c Mon Sep 17 00:00:00 2001 From: duxin Date: Wed, 29 Jul 2026 15:46:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A1=A5=E5=85=85=20StandardScaler=20?= =?UTF-8?q?=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/modeling/modeling_batch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/modeling/modeling_batch.py b/src/core/modeling/modeling_batch.py index 8f7f79a..17378fd 100644 --- a/src/core/modeling/modeling_batch.py +++ b/src/core/modeling/modeling_batch.py @@ -10,6 +10,7 @@ warnings.filterwarnings('ignore') # 机器学习模型导入 - 改为回归模型 from sklearn.base import BaseEstimator, TransformerMixin +from sklearn.preprocessing import StandardScaler from sklearn.svm import SVR from sklearn.ensemble import RandomForestRegressor from sklearn.neighbors import KNeighborsRegressor