Browse Source

UI saliency-map / Update description of prediction tag type

tags/v1.2.0-rc1
weiyanxi 4 years ago
parent
commit
043fbe5201
4 changed files with 7 additions and 12 deletions
  1. +3
    -4
      mindinsight/ui/src/locales/en-us.json
  2. +3
    -4
      mindinsight/ui/src/locales/zh-cn.json
  3. +0
    -1
      mindinsight/ui/src/mixins/cpu-utilization.vue
  4. +1
    -3
      mindinsight/ui/src/views/profiling/data-process.vue

+ 3
- 4
mindinsight/ui/src/locales/en-us.json View File

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


+ 3
- 4
mindinsight/ui/src/locales/zh-cn.json View File

@@ -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": "逐层遮掩过程",


+ 0
- 1
mindinsight/ui/src/mixins/cpu-utilization.vue View File

@@ -484,7 +484,6 @@ export default {
'#2f4554',
'#61a0a8',
'#d48265',
'#d48265',
];
const index = data[0].dataIndex;
str += `step: ${stepArray[index]}`;


+ 1
- 3
mindinsight/ui/src/views/profiling/data-process.vue View File

@@ -629,9 +629,7 @@ export default {
];
chartArr.forEach((val) => {
if (this[val].chartDom) {
setTimeout(() => {
this[val].chartDom.resize();
}, 300);
this[val].chartDom.resize();
}
});
},


Loading…
Cancel
Save