Browse Source

!1052 UI fix bug that compact dialog prompt information of recommended watch points

From: @huang_wei_feng4
Reviewed-by: @feng_xue_feng,@wangyue01,@lilongfei15
Signed-off-by: @lilongfei15
tags/v1.1.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
173bfbac9a
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      mindinsight/ui/src/locales/zh-cn.json
  2. +1
    -1
      mindinsight/ui/src/views/debugger/debugger.vue

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

@@ -727,8 +727,8 @@
"curStep": "显示当前step",
"preStep": "显示上一step",
"compareResult": "显示对比结果",
"recommendTip": "是否使用推荐监测点?",
"recommendDetail": "推荐监测点包括针对张量全为零、梯度消失、权重更新过大等现象的监测点,有助于您更快发现训练中存在的问题。",
"recommendTip": "使用推荐监测点?",
"recommendDetail": "对张量全为零、梯度消失、权重更新过大等现象使用推荐监测点。",
"use": "使用",
"notUse": "不使用",
"outdateTip": "监测点列表发生修改,结果可能过时,请重新检查或执行后续step训练。",


+ 1
- 1
mindinsight/ui/src/views/debugger/debugger.vue View File

@@ -21,7 +21,7 @@ limitations under the License.
v-show="!leftShow">
<div class="header">
{{radio1==='tree' ? $t('debugger.nodeList') :
($t('debugger.curHitNode') + '(' + watchPointHits.length + ')')}}
($t('debugger.curHitNode') + '(' + pagination.total + ')')}}
<div class="outdate-tip"
v-if="hitsOutdated && radio1==='hit'">
<el-tooltip class="item"


Loading…
Cancel
Save