diff --git a/mindinsight/ui/src/locales/zh-cn.json b/mindinsight/ui/src/locales/zh-cn.json
index 77b2a3f9..7746331e 100644
--- a/mindinsight/ui/src/locales/zh-cn.json
+++ b/mindinsight/ui/src/locales/zh-cn.json
@@ -519,9 +519,6 @@
"tensorTip": "张量",
"recheck": "重新检查",
"clearWatchpoint": "清空监测点",
- "addWatchpoint": "新增监测点",
- "chooseTemp": "请选择模板",
- "chooseParam": "请选择参数",
"nodeType": {
"all": "全部节点",
"weight": "权重节点",
@@ -531,10 +528,48 @@
"recheckSuccess": "重新检查成功",
"curStatisticsLabel": "当前step:",
"preStatisticsLabel": "上一个step:",
- "diffStatisticsLabel": "diff:",
+ "diffStatisticsLabel": "对比结果:",
"graphFile": "图文件",
- "selectAll": "全选",
- "selectNone": "取消全选"
+ "tensorDiagram": "张量关系图",
+ "selectDetail": "单击张量选中,双击张量查看详情",
+ "operator": "算子",
+ "jumpFailInformation": "跳转失败,张量信息为空",
+ "tensorMax": "最大值",
+ "tensorMin": "最小值",
+ "optimizationOrientation": "调优向导",
+ "tuningAdvice": "调优建议",
+ "tensorTuningRule": {
+ "operator_real_data_validation": "真实数据单算子验证",
+ "loss_overflow": "检查loss值溢出(NAN,INF)",
+ "weight_condition_collection": "检查权重",
+ "weight_initialization": "检查权重初始值",
+ "weight_overflow": "检查权重溢出",
+ "weight_too_large": "检查过大权重",
+ "weight_too_small": "检查过小权重",
+ "weight_not_changed": "检查未变化权重",
+ "weight_change_too_large": "检查权重变化过大",
+ "weight_change_too_small": "检查权重变化过小",
+ "gradient_condition_collection": "检查梯度",
+ "gradient_vanishing": "检查梯度消失",
+ "gradient_too_large": "检查梯度过大",
+ "gradient_exploding": "检查梯度爆炸",
+ "activation_condition_collection": "检查激活值",
+ "activation_range": "检查激活值范围",
+ "tensor_condition_collection": "检查张量",
+ "tensor_overflow": "检查张量溢出",
+ "operator_overflow": "检查计算过程溢出",
+ "tensor_initialization": "检查张量初始值",
+ "tensor_too_large": "检查过大张量",
+ "tensor_too_small": "检查过小张量",
+ "tensor_range": "检查张量值范围",
+ "tensor_all_zero": "检查张量是否全为0",
+ "tensor_change_too_large": "检查张量变化过大",
+ "tensor_change_too_small": "检查张量变化过小",
+ "tensor_not_changed": "检查未变化张量"
+ },
+ "curStep": "显示当前step",
+ "preStep": "显示上一step",
+ "compareResult": "显示对比结果"
},
"explain": {
"explain": "模型解释",
diff --git a/mindinsight/ui/src/mixins/commonGraph.vue b/mindinsight/ui/src/mixins/commonGraph.vue
index e92b9eef..522c0ded 100644
--- a/mindinsight/ui/src/mixins/commonGraph.vue
+++ b/mindinsight/ui/src/mixins/commonGraph.vue
@@ -129,9 +129,11 @@ export default {
*/
nodeCollapseLinkage(name) {
const node = this.$refs.tree.getNode(name.replace('_unfold', ''));
- node.expanded = false;
- node.loaded = false;
- node.childNodes = [];
+ if (node) {
+ node.expanded = false;
+ node.loaded = false;
+ node.childNodes = [];
+ }
},
/**
* Initializing the graph
diff --git a/mindinsight/ui/src/mixins/debuggerMixin.vue b/mindinsight/ui/src/mixins/debuggerMixin.vue
index 3d74dd64..ff083710 100644
--- a/mindinsight/ui/src/mixins/debuggerMixin.vue
+++ b/mindinsight/ui/src/mixins/debuggerMixin.vue
@@ -4,6 +4,11 @@ import {select, selectAll, zoom, dispatch} from 'd3';
import 'd3-graphviz';
const d3 = {select, selectAll, zoom, dispatch};
export default {
+ data() {
+ return {
+ conditionRulesMap: this.$t('debugger.tensorTuningRule'),
+ };
+ },
methods: {
toleranceInputChange() {
this.toleranceInput = this.tolerance;
@@ -150,7 +155,9 @@ export default {
return '';
}
let temp;
- if (str.endsWith('_lt')) {
+ if (this.conditionRulesMap[str]) {
+ temp = this.conditionRulesMap[str];
+ } else if (str.endsWith('_lt')) {
temp = str.replace(/_lt$/, ' <');
} else if (str.endsWith('_gt')) {
temp = str.replace(/_gt$/, ' >');
@@ -159,6 +166,10 @@ export default {
} else {
temp = str;
}
+
+ if (temp.includes('max_min')) {
+ temp = temp.replace('max_min', 'max-min');
+ }
return temp;
},
/**
@@ -646,7 +657,14 @@ export default {
this.metadata.graph_name = metadata.graph_name
? metadata.graph_name
: this.metadata.graph_name;
- this.queryAllTreeData(this.nodeName, true, metadata.graph_name);
+ let graphName = this.graphFiles.value;
+ if (this.graphFiles.value === this.$t('debugger.all')) {
+ graphName = this.selectedNode.name.split('/')[0];
+ }
+ if (metadata.graph_name) {
+ graphName = metadata.graph_name;
+ }
+ this.queryAllTreeData(this.nodeName, true, graphName);
}
}
if (metadata.step && metadata.step > this.metadata.step) {
@@ -1345,8 +1363,12 @@ export default {
node_type: node.data.type,
watch_point_id: this.curWatchPointId ? this.curWatchPointId : 0,
name: node.data.name,
+ graph_name: this.graphFiles.value,
},
};
+ if (this.graphFiles.value === this.$t('debugger.all')) {
+ delete params.params.graph_name;
+ }
RequestService.retrieve(params).then((res) => {
if (res.data && res.data.metadata) {
this.dealMetadata(res.data.metadata);
diff --git a/mindinsight/ui/src/views/debugger/debugger.vue b/mindinsight/ui/src/views/debugger/debugger.vue
index 22034001..efc781cc 100644
--- a/mindinsight/ui/src/views/debugger/debugger.vue
+++ b/mindinsight/ui/src/views/debugger/debugger.vue
@@ -53,7 +53,8 @@ limitations under the License.