Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
aa4cd525
X
X2Paddle
项目概览
PaddlePaddle
/
X2Paddle
大约 1 年 前同步成功
通知
328
Star
698
Fork
167
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
26
列表
看板
标记
里程碑
合并请求
4
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
X2Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
26
Issue
26
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
aa4cd525
编写于
12月 29, 2020
作者:
S
SunAhong1993
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix
上级
842ea89f
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
21 addition
and
6 deletion
+21
-6
x2paddle/decoder/onnx_decoder.py
x2paddle/decoder/onnx_decoder.py
+21
-6
未找到文件。
x2paddle/decoder/onnx_decoder.py
浏览文件 @
aa4cd525
...
...
@@ -205,7 +205,7 @@ class ONNXGraph(Graph):
shape
=
raw_input
(
"Shape of Input(e.g. -1,3,224,224), enter 'N' to skip: "
)
except
:
except
NameError
:
shape
=
input
(
"Shape of Input(e.g. -1,3,224,224), enter 'N' to skip: "
)
...
...
@@ -302,6 +302,17 @@ class ONNXGraph(Graph):
if
opt
==
in_node
:
self
.
connect
(
nd
.
name
,
layer_name
)
flag
=
1
if
nd
.
name
in
node
.
which_child
:
for
n_i
,
n_ipt
in
enumerate
(
node
.
inputs
):
if
first_i
==
n_i
:
continue
if
n_ipt
==
nd
.
name
:
new_nd_name
=
"{}/{}"
.
format
(
nd
.
name
,
n_i
)
if
new_nd_name
not
in
node
.
which_child
:
node
.
which_child
[
new_nd_name
]
=
idx
break
else
:
first_i
=
node
.
inputs
.
index
(
nd
.
name
)
node
.
which_child
[
nd
.
name
]
=
idx
self
.
node_map
[
nd
.
name
].
index
=
0
break
...
...
@@ -318,11 +329,15 @@ class ONNXGraph(Graph):
if
len
(
node
.
which_child
)
==
0
:
ipt_node
=
super
(
ONNXGraph
,
self
).
get_node
(
node
.
inputs
[
idx
],
copy
)
return
ipt_node
else
:
ipt_node
=
super
(
ONNXGraph
,
self
).
get_node
(
node
.
inputs
[
idx
],
copy
)
new_ipt_name
=
"{}/{}"
.
format
(
ipt_node
.
layer_name
,
idx
)
if
new_ipt_name
in
node
.
which_child
:
ipt_node
.
index
=
node
.
which_child
[
new_ipt_name
]
else
:
if
ipt_node
.
layer_name
in
node
.
which_child
:
ipt_node
.
index
=
node
.
which_child
[
ipt_node
.
layer_name
]
return
ipt_node
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录