|
|
|
@@ -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 = [ |
|
|
|
|