diff --git a/react-ui/src/pages/ActiveLearn/components/CreateForm/ExecuteConfig.tsx b/react-ui/src/pages/ActiveLearn/components/CreateForm/ExecuteConfig.tsx index bedbe0f2..addb402c 100644 --- a/react-ui/src/pages/ActiveLearn/components/CreateForm/ExecuteConfig.tsx +++ b/react-ui/src/pages/ActiveLearn/components/CreateForm/ExecuteConfig.tsx @@ -251,11 +251,11 @@ function ExecuteConfig() { rules={[ { required: true, - message: '请输入epochs', + message: '请输入 epochs', }, ]} > - + diff --git a/react-ui/src/pages/AutoML/Create/index.tsx b/react-ui/src/pages/AutoML/Create/index.tsx index 1489d999..53cdf8bb 100644 --- a/react-ui/src/pages/AutoML/Create/index.tsx +++ b/react-ui/src/pages/AutoML/Create/index.tsx @@ -18,6 +18,7 @@ import DatasetConfig from '../components/CreateForm/DatasetConfig'; import ExecuteConfig from '../components/CreateForm/ExecuteConfig'; import TextExecuteConfig from '../components/CreateForm/TextExecuteConfig'; import TrialConfig from '../components/CreateForm/TrialConfig'; +import VideoExecuteConfig from '../components/CreateForm/VideoExecuteConfig'; import { AutoMLData, FormData } from '../types'; import styles from './index.less'; @@ -200,6 +201,8 @@ function CreateAutoML() { test_size: 0.25, train_size: 0.67, seed: 1, + is_validate: false, + is_test: false, }} > @@ -212,7 +215,9 @@ function CreateAutoML() { ) : type === AutoMLType.Text ? ( - ) : null} + ) : ( + + )}