Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
mindinsight
提交
52646a67
M
mindinsight
项目概览
MindSpore
/
mindinsight
通知
7
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindinsight
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
52646a67
编写于
5月 23, 2020
作者:
P
ph
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix graph issue
上级
169c580a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
15 addition
and
3 deletion
+15
-3
mindinsight/ui/src/locales/zh-cn.json
mindinsight/ui/src/locales/zh-cn.json
+2
-1
mindinsight/ui/src/views/train-manage/graph.vue
mindinsight/ui/src/views/train-manage/graph.vue
+13
-2
未找到文件。
mindinsight/ui/src/locales/zh-cn.json
浏览文件 @
52646a67
...
...
@@ -183,7 +183,8 @@
"guideContent2"
:
"计算图中有命名空间节点,算子节点,虚拟节点,聚合节点,常量节点等几种类型节点。其中
\"
Default
\"
表示正向传播,
\"
Gradients
\"
表示反向传播。"
,
"guideContent3"
:
"计算图中存在数据边和控制边。其中数据边表示数据的输入,控制边表示节点之间执行依赖关系。"
,
"next"
:
"下一步"
,
"finish"
:
"完成"
"finish"
:
"完成"
,
"dataTooLarge"
:
"节点和边的数量过多,导致打开失败"
},
"profiler"
:
{
"titleText"
:
"性能分析"
,
...
...
mindinsight/ui/src/views/train-manage/graph.vue
浏览文件 @
52646a67
...
...
@@ -846,6 +846,7 @@ export default {
title
.
textContent
=
title
.
textContent
.
split
(
'
^
'
)[
0
];
}
});
d3
.
selectAll
(
'
g.edge>title
'
).
remove
();
// The graph generated by the plug-in has a useless title and needs to be deleted.
document
.
querySelector
(
'
#graph g#graph0 title
'
).
remove
();
this
.
initGraphRectData
();
...
...
@@ -969,10 +970,20 @@ export default {
this
.
loading
.
show
=
false
;
},
)
.
catch
(()
=>
{
.
catch
((
error
)
=>
{
// A non-Google Chrome browser may not work properly.
this
.
loading
.
show
=
false
;
this
.
$bus
.
$emit
(
'
showWarmText
'
,
true
);
if
(
error
.
includes
(
'
larger than maximum 65535 allowed
'
))
{
this
.
$message
.
error
(
this
.
$t
(
'
graph.dataTooLarge
'
));
}
else
{
this
.
$bus
.
$emit
(
'
showWarmText
'
,
true
);
}
if
(
name
&&
this
.
allGraphData
[
name
])
{
this
.
allGraphData
[
name
].
isUnfold
=
false
;
this
.
allGraphData
[
name
].
children
=
[];
this
.
allGraphData
[
name
].
size
=
[];
this
.
allGraphData
[
name
].
html
=
''
;
}
});
},
50
);
},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录