|
@@ -127,6 +127,9 @@
|
|
|
<span style="font-size: 16px; font-weight: bold; color: darkorange"> 训练超参 </span>
|
|
|
<el-container v-for="(item, index) in superParameterFormData.trainParams" :key="index">
|
|
|
<span class="span_class"> {{ item.name }}</span>
|
|
|
+ <el-tooltip effect="dark" :content="item?.prompt" placement="top">
|
|
|
+ <i :class="'iconfont icon-yiwen'"></i>
|
|
|
+ </el-tooltip>
|
|
|
<el-input style="width: 300px" type="text" :placeholder="'请输入' + item.name" v-model="item.defaultValue"> </el-input>
|
|
|
</el-container>
|
|
|
<el-container style="height: 10px"></el-container>
|
|
@@ -134,6 +137,9 @@
|
|
|
<span style="font-size: 16px; font-weight: bold; color: darkorange"> 验证超参 </span>
|
|
|
<el-container v-for="(item, index) in superParameterFormData.verifyParams" :key="index">
|
|
|
<span class="span_class"> {{ item.name }}</span>
|
|
|
+ <el-tooltip effect="dark" :content="item?.prompt" placement="top">
|
|
|
+ <i :class="'iconfont icon-yiwen'"></i>
|
|
|
+ </el-tooltip>
|
|
|
<el-input style="width: 300px" type="text" :placeholder="'请输入' + item.name" v-model="item.defaultValue"> </el-input>
|
|
|
</el-container>
|
|
|
<el-container style="height: 10px"></el-container>
|
|
@@ -141,6 +147,9 @@
|
|
|
<span style="font-size: 16px; font-weight: bold; color: darkorange"> 测试超参 </span>
|
|
|
<el-container v-for="(item, index) in superParameterFormData.testParams" :key="index">
|
|
|
<span class="span_class"> {{ item.name }}</span>
|
|
|
+ <el-tooltip effect="dark" :content="item?.prompt" placement="top">
|
|
|
+ <i :class="'iconfont icon-yiwen'"></i>
|
|
|
+ </el-tooltip>
|
|
|
<el-input style="width: 300px" type="text" :placeholder="'请输入' + item.name" v-model="item.defaultValue"> </el-input>
|
|
|
</el-container>
|
|
|
<el-container style="height: 10px"></el-container>
|
|
@@ -189,7 +198,7 @@ import FormDialog from '@/components/FormDialog/index.vue'
|
|
|
import { useRouter } from 'vue-router'
|
|
|
import { listTaskConfigurationApi } from '@/api/modules/task/taskConfiguration'
|
|
|
import { amplifyApi, batchListDataApi } from '@/api/modules/demo/data'
|
|
|
-import {getDictsApi, listDataApi} from '@/api/modules/system/dictData'
|
|
|
+import { getDictsApi, listDataApi } from '@/api/modules/system/dictData'
|
|
|
import { ElMessage } from 'element-plus'
|
|
|
import AmplifyForm from '@/views/demo/data/AmplifyForm.vue'
|
|
|
|