Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
8aff6654
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看板
提交
8aff6654
编写于
1月 14, 2021
作者:
C
Channingss
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
conv2dtanspose out_size to out_padding
上级
6cf21662
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
5 addition
and
2 deletion
+5
-2
x2paddle/op_mapper/dygraph/onnx2paddle/opset9/opset.py
x2paddle/op_mapper/dygraph/onnx2paddle/opset9/opset.py
+5
-2
未找到文件。
x2paddle/op_mapper/dygraph/onnx2paddle/opset9/opset.py
浏览文件 @
8aff6654
...
@@ -1748,16 +1748,19 @@ class OpSet9():
...
@@ -1748,16 +1748,19 @@ class OpSet9():
output_size
[
1
]
=
(
val_x
.
out_shapes
[
0
][
3
]
-
1
output_size
[
1
]
=
(
val_x
.
out_shapes
[
0
][
3
]
-
1
)
*
strides
[
1
]
-
2
*
paddings
[
1
]
+
dilations
[
1
]
*
(
)
*
strides
[
1
]
-
2
*
paddings
[
1
]
+
dilations
[
1
]
*
(
kernel_shape
[
1
]
-
1
)
+
1
+
out_padding
[
1
]
kernel_shape
[
1
]
-
1
)
+
1
+
out_padding
[
1
]
output_padding
=
# Conv2DTranspose缺少output_size,只能在forward里头传进output_size
# Conv2DTranspose缺少output_size,只能在forward里头传进output_size
inputs_dict
=
{
'x'
:
val_x
if
isinstance
(
val_x
,
str
)
else
val_x
.
name
}
inputs_dict
=
{
'x'
:
val_x
if
isinstance
(
val_x
,
str
)
else
val_x
.
name
}
layer_attrs
=
{
layer_attrs
=
{
"in_channels"
:
num_in_channels
,
"in_channels"
:
num_in_channels
,
"out_channels"
:
num_out_channels
,
"out_channels"
:
num_out_channels
,
'kernel_size'
:
kernel_shape
,
"kernel_size"
:
kernel_shape
,
"stride"
:
strides
,
"stride"
:
strides
,
"dilation"
:
dilations
,
"dilation"
:
dilations
,
"padding"
:
paddings
,
"padding"
:
paddings
,
"groups"
:
num_groups
}
"groups"
:
num_groups
,
"output_padding"
:
out_padding
}
self
.
weights
[
op_name
+
'.weight'
]
=
self
.
weights
[
val_w
.
name
]
self
.
weights
[
op_name
+
'.weight'
]
=
self
.
weights
[
val_w
.
name
]
if
val_b
is
not
None
:
if
val_b
is
not
None
:
self
.
weights
[
op_name
+
'.bias'
]
=
self
.
weights
[
val_b
.
name
]
self
.
weights
[
op_name
+
'.bias'
]
=
self
.
weights
[
val_b
.
name
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录