diff --git a/react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx b/react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx index a1a34c21..65ad4c8b 100644 --- a/react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx +++ b/react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx @@ -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 = [ @@ -280,9 +286,9 @@ function ExecuteConfig() { - +