Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
47066a34
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看板
提交
47066a34
编写于
7月 22, 2022
作者:
W
wjj19950828
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fixed for ci
上级
dbcc4203
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
4 deletion
+8
-4
x2paddle/op_mapper/onnx2paddle/onnx_op_mapper.py
x2paddle/op_mapper/onnx2paddle/onnx_op_mapper.py
+1
-1
x2paddle/op_mapper/onnx2paddle/opset/opset.py
x2paddle/op_mapper/onnx2paddle/opset/opset.py
+7
-3
未找到文件。
x2paddle/op_mapper/onnx2paddle/onnx_op_mapper.py
浏览文件 @
47066a34
...
...
@@ -84,7 +84,7 @@ class ONNXOpMapper():
else
:
break
opset
=
'OpSet'
+
str
(
run_op_set
)
print
(
'Now, onnx2paddle support convert onnx model opset_verison {},'
print
(
'Now, onnx2paddle support convert onnx model opset_verison {},
'
'opset_verison of your onnx model is {}.'
.
format
(
self
.
support_op_sets
,
decoder
.
op_set
))
return
eval
(
opset
)(
decoder
,
self
.
paddle_graph
)
x2paddle/op_mapper/onnx2paddle/opset/opset.py
浏览文件 @
47066a34
...
...
@@ -28,7 +28,7 @@ import copy
import
sys
import
shutil
_logger
=
_logging
.
getLogger
(
__name__
)
_logger
=
_logging
.
getLogger
()
def
_const_weight_or_none
(
node
,
necessary
=
False
):
...
...
@@ -2203,8 +2203,12 @@ class OpSet():
paddings
=
np
.
array
(
pads
).
reshape
((
2
,
-
1
)).
transpose
().
astype
(
"int32"
)
paddings
=
paddings
.
flatten
().
tolist
()
if
auto_pad
==
"SAME_UPPER"
or
auto_pad
==
"SAME_LOWER"
:
assert
-
1
not
in
input_shape
,
'SAME_UPPER and SAME_LOWER does not yet support dynamic shapes'
if
auto_pad
in
[
"SAME_UPPER"
,
"SAME_LOWER"
]:
# Warning: SAME_UPPER and SAME_LOWER does not yet support dynamic shapes
if
input_shape
[
2
]
==
-
1
or
input_shape
[
3
]
==
-
1
:
_logger
.
warning
(
'SAME_UPPER and SAME_LOWER does not yet support dynamic shapes, the conversion result may have a diff!!!'
)
pad_h
=
_get_same_padding
(
input_shape
[
2
],
kernel_shape
[
0
],
strides
[
0
],
auto_pad
)
pad_w
=
_get_same_padding
(
input_shape
[
3
],
kernel_shape
[
1
],
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录