From 8f015d4d3f6a9f6b40202403709578099374bd67 Mon Sep 17 00:00:00 2001 From: zhaowei Date: Mon, 23 Jun 2025 10:45:42 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E7=BC=BA=E5=A4=B1?= =?UTF-8?q?=E5=80=BC=E5=A1=AB=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- react-ui/src/pages/AutoML/components/CreateForm/utils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/react-ui/src/pages/AutoML/components/CreateForm/utils.ts b/react-ui/src/pages/AutoML/components/CreateForm/utils.ts index 51360529..fa556e2a 100644 --- a/react-ui/src/pages/AutoML/components/CreateForm/utils.ts +++ b/react-ui/src/pages/AutoML/components/CreateForm/utils.ts @@ -42,7 +42,7 @@ export const regressorAlgorithms = [ // 特征预处理算法 export const featureAlgorithms = [ - { label: 'densifier (缺失值填充)', value: 'densifier' }, + { label: 'densifier (特征变换-数据增稠)', value: 'densifier' }, { label: 'extra_trees_preproc_for_classification (特征选择-分类任务极端随机树)', value: 'extra_trees_preproc_for_classification', @@ -59,6 +59,7 @@ export const featureAlgorithms = [ label: 'liblinear_svc_preprocessor (特征选择-线性svc预处理器)', value: 'liblinear_svc_preprocessor', }, + { label: 'miss_value_impute (缺失值填充)', value: 'miss_value_impute' }, { label: 'no_preprocessing (无预处理)', value: 'no_preprocessing' }, { label: 'nystroem_sampler (特征变换-尼斯特罗姆采样器)', value: 'nystroem_sampler' }, { label: 'pca (特征选择-主成分分析)', value: 'pca' },