Browse Source

Merge pull request '合并' (#252) from dev-zw into dev-check

pull/268/head
cp3hnu 8 months ago
parent
commit
a46a948760
1 changed files with 2 additions and 7 deletions
  1. +2
    -7
      react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx

+ 2
- 7
react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx View File

@@ -21,6 +21,7 @@ const classificationAlgorithms = [
'lda', 'lda',
'liblinear_svc', 'liblinear_svc',
'libsvm_svc', 'libsvm_svc',
'tablenet',
'mlp', 'mlp',
'multinomial_nb', 'multinomial_nb',
'passive_aggressive', 'passive_aggressive',
@@ -30,13 +31,7 @@ const classificationAlgorithms = [
'LightGBMClassification', 'LightGBMClassification',
'XGBoostClassification', 'XGBoostClassification',
'StackingClassification', 'StackingClassification',
].map((name) => {
if (name === 'mlp') {
return { label: 'tablenet', value: name };
} else {
return { label: name, value: name };
}
});
].map((name) => ({ label: name, value: name }));


// 回归算法 // 回归算法
const regressorAlgorithms = [ const regressorAlgorithms = [


Loading…
Cancel
Save