Browse Source

fix: 自主机器学习改为自动机器学习

pull/254/head
zhaowei 8 months ago
parent
commit
458621fe91
6 changed files with 7 additions and 7 deletions
  1. +2
    -2
      react-ui/src/enums/index.ts
  2. +1
    -1
      react-ui/src/pages/ActiveLearn/Instance/index.tsx
  3. +1
    -1
      react-ui/src/pages/AutoML/Instance/index.tsx
  4. +1
    -1
      react-ui/src/pages/AutoML/List/index.tsx
  5. +1
    -1
      react-ui/src/pages/AutoML/components/ExperimentList/config.ts
  6. +1
    -1
      react-ui/src/pages/HyperParameter/Info/index.tsx

+ 2
- 2
react-ui/src/enums/index.ts View File

@@ -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 },
]; ];


// 自动化任务类型 // 自动化任务类型


+ 1
- 1
react-ui/src/pages/ActiveLearn/Instance/index.tsx View File

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


+ 1
- 1
react-ui/src/pages/AutoML/Instance/index.tsx View File

@@ -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
- 1
react-ui/src/pages/AutoML/List/index.tsx View File

@@ -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';


+ 1
- 1
react-ui/src/pages/AutoML/components/ExperimentList/config.ts View File

@@ -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
- 1
react-ui/src/pages/HyperParameter/Info/index.tsx View File

@@ -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';


Loading…
Cancel
Save