Browse Source

!1088 UI encode dimms of tensor

From: @xia_yi_fan1
Reviewed-by: @wangyue01,@wenkai_dist
Signed-off-by: @wenkai_dist
pull/1088/MERGE
mindspore-ci-bot Gitee 5 years ago
parent
commit
a82646f68b
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      mindinsight/ui/src/views/train-manage/tensor.vue
  2. +1
    -1
      mindinsight/ui/src/views/train-manage/training-dashboard.vue

+ 1
- 1
mindinsight/ui/src/views/train-manage/tensor.vue View File

@@ -593,7 +593,7 @@ export default {
tag: sampleItem.tagName,
detail: 'data',
step: sampleItem.curStep,
dims: sampleItem.filterStr,
dims: encodeURIComponent(sampleItem.filterStr),
};
sampleItem.curMartixShowSliderValue = sampleItem.sliderValue;
RequestService.getTensorsSample(params).then(


+ 1
- 1
mindinsight/ui/src/views/train-manage/training-dashboard.vue View File

@@ -1075,7 +1075,7 @@ export default {
tag: this.tensorTag,
detail: 'data',
step: step,
dims: filterStr,
dims: encodeURIComponent(filterStr),
};
RequestService.getTensorsSample(params).then(
(res) => {


Loading…
Cancel
Save