Browse Source

fix: mlp 显示成tablenet

pull/245/head
zhaowei 10 months ago
parent
commit
34e2b8bb05
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx

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

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

// 回归算法
const regressorAlgorithms = [


Loading…
Cancel
Save