+
{{i18n.dataset_ok}}{{ i18n.dataset_ok }}
@@ -732,7 +740,6 @@ export default {
.then((res) => {
this.loadingCurrent = false;
let data = JSON.parse(res.data.data);
- console.log(data);
this.currentDatasetList = this.transformeTreeData(
data,
"currentTree",
@@ -978,7 +985,10 @@ export default {
let hasSelectDatasetName = $(".cloudbrain-type")
.data("dataset-name")
.split(";");
- if (this.hasSelectDatasetList.length !== 0) {
+ if (
+ this.hasSelectDatasetList.length !== 0 &&
+ hasSelectDatasetName[0] !== ""
+ ) {
this.saveStatusList = this.hasSelectDatasetList;
this.checkList = hasSelectDatasetName;
this.hasSelectDatasetList.forEach((item, index) => {
@@ -996,7 +1006,6 @@ export default {
location.href.indexOf("train-job") !== -1 ||
location.href.indexOf("inference") !== -1
) {
- console.log("this.benchmarkNew");
this.benchmarkNew = true;
}
if (
diff --git a/web_src/js/features/i18nVue.js b/web_src/js/features/i18nVue.js
index 4740f01cb..88afaf8ff 100644
--- a/web_src/js/features/i18nVue.js
+++ b/web_src/js/features/i18nVue.js
@@ -95,6 +95,8 @@ export const i18nVue = {
model_create_new_ver: "创建新版本",
model_download: "下载",
model_delete: "删除",
+ model_create_title: "导入新模型",
+ model_create_version_title: "创建模型新版本",
},
US: {
computer_vision: "computer vision",
@@ -148,11 +150,11 @@ export const i18nVue = {
downloads: "Downloads",
not_link_dataset: "No datasets have been linked yet",
no_link_dataset_tips1:
- "You can display public datasets on the platform here by clicking the New Linked Dataset button.",
+ "You can display public datasets on the platform here by clicking the Linked Datasets button.",
dataset_instructions_for_use:
- "Instructions for use: You can refer to Openi AI Collaboration Platform ",
- dataset_camp_course: " Newcomer Training Camp Course",
+ "Instructions for use: You can refer to OpenI AI Collaboration Platform ",
+ dataset_camp_course: " OpenI_Learning",
dataset_link_success: "Linked dataset succeeded!",
dataset_link_failed: "Linked dataset Failed!",
dataset_over_nums: "Linked over ? datasets!",
@@ -196,5 +198,7 @@ export const i18nVue = {
model_create_new_ver: "New Version",
model_download: "Download",
model_delete: "Delete",
+ model_create_title: "Import new model",
+ model_create_version_title: "Create a new version of the model",
},
};