From 34e2b8bb05c5b8e4e85ac1d6c1811e3214df0099 Mon Sep 17 00:00:00 2001 From: zhaowei Date: Fri, 23 May 2025 08:43:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20mlp=20=E6=98=BE=E7=A4=BA=E6=88=90tablene?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/AutoML/components/CreateForm/ExecuteConfig.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx b/react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx index a1a34c21..61df6099 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 = [