Browse Source

feat: 添加缺失值填充

pull/270/head
zhaowei 9 months ago
parent
commit
8f015d4d3f
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      react-ui/src/pages/AutoML/components/CreateForm/utils.ts

+ 2
- 1
react-ui/src/pages/AutoML/components/CreateForm/utils.ts View File

@@ -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' },


Loading…
Cancel
Save