diff --git a/mindinsight/ui/src/views/debugger/debugger.vue b/mindinsight/ui/src/views/debugger/debugger.vue
index aedc6545..5a8825e2 100644
--- a/mindinsight/ui/src/views/debugger/debugger.vue
+++ b/mindinsight/ui/src/views/debugger/debugger.vue
@@ -587,11 +587,9 @@ export default {
tabChange(gridType) {
this.gridType = gridType;
if (this.gridType === 'compare') {
- this.tensorComparisons(this.curRowObj);
+ this.tensorComparisons(this.curRowObj, this.dims);
} else {
- this.dims = null;
- this.tolerance = 0;
- this.viewValueDetail(this.curRowObj);
+ this.viewValueDetail(this.curRowObj, this.dims);
}
},
/**
@@ -601,7 +599,6 @@ export default {
*/
tensorComparisons(row, dims) {
this.curRowObj = row;
- this.gridType = 'compare';
const shape = dims
? dims
: JSON.stringify(
@@ -615,7 +612,6 @@ export default {
})
.reverse(),
).replace(/"/g, '');
- this.dims = shape;
const params = {
name: row.name,
detail: 'data',
@@ -628,6 +624,7 @@ export default {
loadingInstance.close();
if (res && res.data && res.data.tensor_value) {
this.tensorCompareFlag = true;
+ this.gridType = 'compare';
const tensorValue = res.data.tensor_value;
if (tensorValue.diff === 'Too large to show.') {
this.tensorValue = [];
@@ -1000,11 +997,11 @@ export default {
* @param {Object} data tensor value data
*/
tensorFilterChange(data) {
+ this.dims = `[${data.toString()}]`;
if (this.gridType === 'value') {
- this.viewValueDetail(this.curRowObj, `[${data.toString()}]`);
+ this.viewValueDetail(this.curRowObj, this.dims);
} else {
- this.dims = `[${data.toString()}]`;
- this.tensorComparisons(this.curRowObj, `[${data.toString()}]`);
+ this.tensorComparisons(this.curRowObj, this.dims);
}
},
/**
diff --git a/mindinsight/ui/src/views/train-manage/graph.vue b/mindinsight/ui/src/views/train-manage/graph.vue
index d52572c1..472b2e31 100644
--- a/mindinsight/ui/src/views/train-manage/graph.vue
+++ b/mindinsight/ui/src/views/train-manage/graph.vue
@@ -2984,15 +2984,14 @@ export default {
`width="${bbox.width}" height="${bbox.height}" ` +
`viewBox="${viewBoxSize}">${CommonProperty.graphDownloadStyle}${svgXml}`;
- // Write the svg stream encoded by base64 to the image object.
- const src = `data:image/svg+xml;base64,
- ${window.btoa(unescape(encodeURIComponent(encodeStr)))}`;
- const a = document.createElement('a');
- a.href = src; // Export the information in the canvas as image data.
- a.download = 'graph.svg'; // Set the download name.
- const evt = document.createEvent('MouseEvents');
- evt.initEvent('click', true, true);
- a.dispatchEvent(evt);
+ const downloadLink = document.createElement('a');
+ downloadLink.download = 'graph.svg';
+ downloadLink.style.display = 'none';
+ const blob = new Blob([encodeStr], {type: 'text/html'});
+ downloadLink.href = URL.createObjectURL(blob);
+ document.body.appendChild(downloadLink);
+ downloadLink.click();
+ document.body.removeChild(downloadLink);
},
/**
* Fold the legend area.
diff --git a/mindinsight/ui/src/views/train-manage/summary-manage.vue b/mindinsight/ui/src/views/train-manage/summary-manage.vue
index 4f0e90cd..40711b67 100644
--- a/mindinsight/ui/src/views/train-manage/summary-manage.vue
+++ b/mindinsight/ui/src/views/train-manage/summary-manage.vue
@@ -74,12 +74,12 @@ limitations under the License.
class-name="operate-container"
:width="operateWidth">
-
-