diff --git a/mindinsight/ui/src/locales/en-us.json b/mindinsight/ui/src/locales/en-us.json index b4698053..6743f632 100644 --- a/mindinsight/ui/src/locales/en-us.json +++ b/mindinsight/ui/src/locales/en-us.json @@ -849,10 +849,9 @@ "typeTip": "Query image data that contains any prediction type", "confidence": "Probability", "forecastTagTip": "When the inference image has the correct tag, the following three flags are displayed in the tag row", - "TP": "TP, indicates true positive. The tag is a positive sample, and the classification is a positive sample;", - "FN": "FN, indicates false negative. The tag is a positive sample, and the classification is a negative sample;", - "FP": "FP, indicates false positive. The tag is a negative sample, and the classification is a positive sample;", - "TN": "TN, Indicates true negative. The tag is a negative sample, and the classification is a negative sample;", + "TP": "TP, indicates true positive. For this tag (label), the sample is predicted to be positive, and is indeed positive;", + "FN": "FN, indicates false negative. For this tag (label), the sample is predicted to be negative, but is positive in fact;", + "FP": "FP, indicates false positive. For this tag (label), the sample is predicted to be positive, but is negative in fact;", "coverfactualInterpretation": "Mask-based Counterfactual Explanation", "viewExplanation": "View Explanation", "maskingProcess": "Layer-by-layer Masking Process", diff --git a/mindinsight/ui/src/locales/zh-cn.json b/mindinsight/ui/src/locales/zh-cn.json index 25faacfc..6566528f 100644 --- a/mindinsight/ui/src/locales/zh-cn.json +++ b/mindinsight/ui/src/locales/zh-cn.json @@ -845,10 +845,9 @@ "typeTip": "查询包含任一预测类型的图片数据", "confidence": "概率", "forecastTagTip": "当推理图片带有正确标签时,标签行会显示下列三种旗标", - "TP": "TP,代表True Positive,标签为正样本,分类为正样本;", - "FN": "FN,代表False Negative,标签为正样本,分类为负样本;", - "FP": "FP,代表False Positive,标签为负样本,分类为正样本;", - "TN": "TN,代表True Negative,标签为负样本,分类为负样本;", + "TP": "TP,代表True Positive,被判定为正样本,事实上也是正样本;", + "FN": "FN,代表False Negative,被判定为负样本,但事实上是正样本;", + "FP": "FP,代表False Positive,被判定为正样本,但事实上是负样本;", "coverfactualInterpretation": "遮掩反事实解释", "viewExplanation": "查看解释", "maskingProcess": "逐层遮掩过程", diff --git a/mindinsight/ui/src/mixins/cpu-utilization.vue b/mindinsight/ui/src/mixins/cpu-utilization.vue index 254677f6..6aa3ee74 100644 --- a/mindinsight/ui/src/mixins/cpu-utilization.vue +++ b/mindinsight/ui/src/mixins/cpu-utilization.vue @@ -484,7 +484,6 @@ export default { '#2f4554', '#61a0a8', '#d48265', - '#d48265', ]; const index = data[0].dataIndex; str += `step: ${stepArray[index]}`; diff --git a/mindinsight/ui/src/views/profiling/data-process.vue b/mindinsight/ui/src/views/profiling/data-process.vue index 99fc5481..c16e9c50 100644 --- a/mindinsight/ui/src/views/profiling/data-process.vue +++ b/mindinsight/ui/src/views/profiling/data-process.vue @@ -629,9 +629,7 @@ export default { ]; chartArr.forEach((val) => { if (this[val].chartDom) { - setTimeout(() => { - this[val].chartDom.resize(); - }, 300); + this[val].chartDom.resize(); } }); },