| @@ -95,8 +95,8 @@ export enum AutoMLType { | |||||
| export const autoMLTypeOptions = [ | export const autoMLTypeOptions = [ | ||||
| { label: '表格', value: AutoMLType.Table }, | { label: '表格', value: AutoMLType.Table }, | ||||
| { label: '文本分类', value: AutoMLType.Text }, | |||||
| { label: '视频分类', value: AutoMLType.Video }, | |||||
| { label: '文本', value: AutoMLType.Text }, | |||||
| { label: '视频', value: AutoMLType.Video }, | |||||
| ]; | ]; | ||||
| // 自动化任务类型 | // 自动化任务类型 | ||||
| @@ -179,7 +179,7 @@ function ActiveLearnInstance() { | |||||
| }, | }, | ||||
| { | { | ||||
| key: TabKeys.History, | key: TabKeys.History, | ||||
| label: '训练列表', | |||||
| label: '运行列表', | |||||
| icon: <KFIcon type="icon-Trialliebiao" />, | icon: <KFIcon type="icon-Trialliebiao" />, | ||||
| children: ( | children: ( | ||||
| <ExperimentHistory | <ExperimentHistory | ||||
| @@ -204,7 +204,7 @@ function AutoMLInstance() { | |||||
| } | } | ||||
| : { | : { | ||||
| key: TabKeys.History, | key: TabKeys.History, | ||||
| label: '试验列表', | |||||
| label: '运行列表', | |||||
| icon: <KFIcon type="icon-Trialliebiao" />, | icon: <KFIcon type="icon-Trialliebiao" />, | ||||
| children: ( | children: ( | ||||
| <ExperimentHistory | <ExperimentHistory | ||||
| @@ -1,7 +1,7 @@ | |||||
| /* | /* | ||||
| * @Author: 赵伟 | * @Author: 赵伟 | ||||
| * @Date: 2024-04-16 13:58:08 | * @Date: 2024-04-16 13:58:08 | ||||
| * @Description: 自主机器学习列表 | |||||
| * @Description: 自动机器学习列表 | |||||
| */ | */ | ||||
| import ExperimentList, { ExperimentListType } from '../components/ExperimentList'; | import ExperimentList, { ExperimentListType } from '../components/ExperimentList'; | ||||
| @@ -68,7 +68,7 @@ export const experimentListConfig: Record<ExperimentListType, ExperimentListInfo | |||||
| batchDeleteInsReq: batchDeleteExperimentInsReq, | batchDeleteInsReq: batchDeleteExperimentInsReq, | ||||
| stopInsReq: stopExperimentInsReq, | stopInsReq: stopExperimentInsReq, | ||||
| editInsReq: editExperimentInsReq, | editInsReq: editExperimentInsReq, | ||||
| title: '自主机器学习', | |||||
| title: '自动机器学习', | |||||
| pathPrefix: 'automl', | pathPrefix: 'automl', | ||||
| nameProperty: 'name', | nameProperty: 'name', | ||||
| descProperty: 'description', | descProperty: 'description', | ||||
| @@ -1,7 +1,7 @@ | |||||
| /* | /* | ||||
| * @Author: 赵伟 | * @Author: 赵伟 | ||||
| * @Date: 2024-04-16 13:58:08 | * @Date: 2024-04-16 13:58:08 | ||||
| * @Description: 自主机器学习详情 | |||||
| * @Description: 自动机器学习详情 | |||||
| */ | */ | ||||
| import PageTitle from '@/components/PageTitle'; | import PageTitle from '@/components/PageTitle'; | ||||
| import { getRayInfoReq } from '@/services/hyperParameter'; | import { getRayInfoReq } from '@/services/hyperParameter'; | ||||