Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
f8f633b9
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看板
提交
f8f633b9
编写于
8月 13, 2019
作者:
C
channingss
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support model Face_cyclegan
上级
35b0c3ed
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
24 addition
and
39 deletion
+24
-39
x2paddle/op_mapper/onnx_op_mapper.py
x2paddle/op_mapper/onnx_op_mapper.py
+24
-39
未找到文件。
x2paddle/op_mapper/onnx_op_mapper.py
浏览文件 @
f8f633b9
...
@@ -21,6 +21,7 @@ from x2paddle.decoder.onnx_decoder import ONNXGraph, ONNXGraphNode, ONNXGraphDat
...
@@ -21,6 +21,7 @@ from x2paddle.decoder.onnx_decoder import ONNXGraph, ONNXGraphNode, ONNXGraphDat
from
x2paddle.op_mapper.onnx_directly_map
import
default_op_mapping_field_values
from
x2paddle.op_mapper.onnx_directly_map
import
default_op_mapping_field_values
from
x2paddle.op_mapper.onnx_directly_map
import
default_op_mapping
from
x2paddle.op_mapper.onnx_directly_map
import
default_op_mapping
from
x2paddle.op_mapper.onnx_directly_map
import
default_ioa_constraint
from
x2paddle.op_mapper.onnx_directly_map
import
default_ioa_constraint
from
x2paddle.op_mapper.onnx_custom_layer
import
*
import
numpy
as
np
import
numpy
as
np
import
onnx.numpy_helper
as
numpy_helper
import
onnx.numpy_helper
as
numpy_helper
import
logging
as
_logging
import
logging
as
_logging
...
@@ -53,12 +54,12 @@ class ONNXOpMapper(OpMapper):
...
@@ -53,12 +54,12 @@ class ONNXOpMapper(OpMapper):
self
.
input_shapes
=
[]
self
.
input_shapes
=
[]
self
.
weights
=
dict
()
self
.
weights
=
dict
()
self
.
omit_nodes
=
list
()
self
.
omit_nodes
=
list
()
self
.
used_custom_layers
=
dict
()
if
not
self
.
op_checker
():
if
not
self
.
op_checker
():
raise
Exception
(
"Model are not supported yet."
)
raise
Exception
(
"Model are not supported yet."
)
#mapping op
#mapping op
print
(
"Total nodes: {}"
.
format
(
print
(
"Total nodes: {}"
.
format
(
sum
([
sum
([
isinstance
(
node
,
ONNXGraphNode
)
isinstance
(
node
,
ONNXGraphNode
)
...
@@ -67,19 +68,22 @@ class ONNXOpMapper(OpMapper):
...
@@ -67,19 +68,22 @@ class ONNXOpMapper(OpMapper):
for
node_name
in
self
.
graph
.
topo_sort
:
for
node_name
in
self
.
graph
.
topo_sort
:
node
=
self
.
graph
.
get_node
(
node_name
)
node
=
self
.
graph
.
get_node
(
node_name
)
op
=
node
.
layer_type
op
=
node
.
layer_type
# print('translate{} layer_type is {}'.format(node_name, op))
if
hasattr
(
self
,
op
):
if
hasattr
(
self
,
op
):
func
=
getattr
(
self
,
op
)
func
=
getattr
(
self
,
op
)
func
(
node
)
func
(
node
)
elif
op
in
default_op_mapping
:
elif
op
in
default_op_mapping
:
self
.
directly_map
(
node
)
self
.
directly_map
(
node
)
elif
op
in
custom_layers
:
self
.
deal_custom_layer
(
node
)
def
op_checker
(
self
):
def
op_checker
(
self
):
unsupported_ops
=
set
()
unsupported_ops
=
set
()
for
node_name
in
self
.
graph
.
topo_sort
:
for
node_name
in
self
.
graph
.
topo_sort
:
node
=
self
.
graph
.
get_node
(
node_name
)
node
=
self
.
graph
.
get_node
(
node_name
)
op
=
node
.
layer_type
op
=
node
.
layer_type
if
not
hasattr
(
self
,
op
)
and
op
not
in
default_op_mapping
:
if
not
hasattr
(
self
,
op
)
and
op
not
in
default_op_mapping
and
op
not
in
custom_layers
:
unsupported_ops
.
add
(
op
)
unsupported_ops
.
add
(
op
)
if
len
(
unsupported_ops
)
==
0
:
if
len
(
unsupported_ops
)
==
0
:
return
True
return
True
...
@@ -135,6 +139,23 @@ class ONNXOpMapper(OpMapper):
...
@@ -135,6 +139,23 @@ class ONNXOpMapper(OpMapper):
output
=
val_outs
[
0
],
output
=
val_outs
[
0
],
param_attr
=
attr
)
param_attr
=
attr
)
def
deal_custom_layer
(
self
,
node
):
op
=
node
.
layer_type
val_x
=
self
.
graph
.
get_node
(
node
.
layer
.
input
[
0
],
copy
=
True
)
custom_code
,
func
=
make_custom_layer
(
node
)
params
=
get_params
(
node
.
layer
,
node
.
layer_type
)
arg_names
,
kwargs
=
set_args
(
func
,
params
)
kwargs
[
'name'
]
=
string
(
node
.
layer_name
)
inputs_node
=
[]
inputs_node
.
append
(
node
.
inputs
[
0
])
node
.
fluid_code
.
add_layer
(
func
.
__code__
.
co_name
,
inputs
=
inputs_node
[
0
],
output
=
node
,
param_attr
=
kwargs
,
is_custom_layer
=
True
)
if
op
not
in
self
.
used_custom_layers
:
self
.
used_custom_layers
[
op
]
=
custom_code
def
place_holder
(
self
,
node
):
def
place_holder
(
self
,
node
):
self
.
input_shapes
.
append
(
node
.
out_shapes
[
0
])
self
.
input_shapes
.
append
(
node
.
out_shapes
[
0
])
attr
=
{
attr
=
{
...
@@ -576,42 +597,6 @@ class ONNXOpMapper(OpMapper):
...
@@ -576,42 +597,6 @@ class ONNXOpMapper(OpMapper):
output
=
node
,
output
=
node
,
param_attr
=
attr
)
param_attr
=
attr
)
def
InstanceNormalization
(
self
,
node
):
'''
y = scale * (x - mean) / sqrt(variance + epsilon) + B
'''
val_x
=
self
.
graph
.
get_node
(
node
.
layer
.
input
[
0
],
copy
=
True
)
val_scale
=
self
.
graph
.
get_node
(
node
.
layer
.
input
[
1
],
copy
=
True
)
val_b
=
self
.
graph
.
get_node
(
node
.
layer
.
input
[
2
],
copy
=
True
)
epsilon
=
node
.
get_attr
(
'epsilon'
,
1e-5
)
num_out_channels
=
val_scale
.
out_shapes
[
0
][
0
]
attr
=
{
"groups"
:
num_out_channels
,
"epsilon"
:
epsilon
,
"param_attr"
:
string
(
val_scale
.
layer_name
),
"bias_attr"
:
string
(
val_b
.
layer_name
),
"name"
:
string
(
node
.
layer_name
)
}
if
val_scale
.
layer_type
==
'Constant'
:
self
.
weights
[
val_scale
.
layer_name
]
=
val_scale
.
get_attr
(
'value'
)
if
val_b
.
layer_type
==
'Constant'
:
self
.
weights
[
val_b
.
layer_name
]
=
val_b
.
get_attr
(
'value'
)
# node_data_norm = node.layer_name +'data_norm'
node
.
fluid_code
.
add_layer
(
"group_norm"
,
inputs
=
val_x
,
output
=
node
,
param_attr
=
attr
)
# node.fluid_code.add_layer("elementwise_add",
# val_x.layer_name +','+ node_data_norm,
# output=node,
# param_attr=attr)
def
Softmax
(
self
,
node
):
def
Softmax
(
self
,
node
):
val_x
=
self
.
graph
.
get_node
(
node
.
layer
.
input
[
0
],
copy
=
True
)
val_x
=
self
.
graph
.
get_node
(
node
.
layer
.
input
[
0
],
copy
=
True
)
attr
=
{
"name"
:
string
(
node
.
layer_name
)}
attr
=
{
"name"
:
string
(
node
.
layer_name
)}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录