diff --git a/mindinsight/ui/src/locales/en-us.json b/mindinsight/ui/src/locales/en-us.json index ae4af968cd0a6b8c7beee8137c73fa00129405c4..e5d20dc0ccf10d8c7b740b9d2f6bcf8921b87843 100644 --- a/mindinsight/ui/src/locales/en-us.json +++ b/mindinsight/ui/src/locales/en-us.json @@ -436,7 +436,7 @@ "health": "Health", "ipAddress": "IP Address", "aiCore": "AI Core(%)", - "hbmUsage": "HBM Usage(MB)", + "hbmUsage": "HBM-Usage(MB)", "power": "Power(W)", "temp": "Temp(℃)" }, diff --git a/mindinsight/ui/src/services/fetcher.js b/mindinsight/ui/src/services/fetcher.js index 9d105284184b96d5a7b76b68841caedf35a0b6f4..a96378a93f592dfbbd6a10a6a3cf59677ea6009c 100644 --- a/mindinsight/ui/src/services/fetcher.js +++ b/mindinsight/ui/src/services/fetcher.js @@ -59,6 +59,9 @@ axios.interceptors.response.use( router.currentRoute.path === '/train-manage/training-dashboard') { return Promise.reject(error); } else if (router.currentRoute.path === '/profiling/profiling-dashboard' && + error.config.headers.ignoreError) { + return Promise.reject(error); + } else if (router.currentRoute.path === '/profiling-gpu/profiling-dashboard' && error.config.headers.ignoreError) { return Promise.reject(error); } else if (error.response.data.error_code.toString() === '50545013' || diff --git a/mindinsight/ui/src/views/train-manage/graph.vue b/mindinsight/ui/src/views/train-manage/graph.vue index 984bf29a7e79a780c92544cc38ab69fe804b666a..a929f2ba340dc5c24036e377f5ea1c18b214e421 100644 --- a/mindinsight/ui/src/views/train-manage/graph.vue +++ b/mindinsight/ui/src/views/train-manage/graph.vue @@ -1539,6 +1539,8 @@ export default { } else { label = `${edge.data_type} ${edge.shape.join('×')}`; } + } else if (edge.data_type) { + label = `${edge.data_type} Scalar`; } } else { label = `${edge.count}tensors`;