Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleGAN
提交
42f390d7
P
PaddleGAN
项目概览
PaddlePaddle
/
PaddleGAN
大约 1 年 前同步成功
通知
97
Star
7254
Fork
1210
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleGAN
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
42f390d7
编写于
10月 19, 2021
作者:
W
wangna11BD
提交者:
GitHub
10月 19, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix edvr (#446)
上级
a95ce33b
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
13 addition
and
216 deletion
+13
-216
ppgan/models/generators/edvr.py
ppgan/models/generators/edvr.py
+10
-13
ppgan/models/generators/mpr.py
ppgan/models/generators/mpr.py
+3
-9
ppgan/modules/dcn.py
ppgan/modules/dcn.py
+0
-194
未找到文件。
ppgan/models/generators/edvr.py
浏览文件 @
42f390d7
...
...
@@ -12,15 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
paddle
import
numpy
as
np
import
paddle
import
paddle.nn
as
nn
from
...modules.init
import
kaiming_normal_
,
constant_
,
constant_init
from
paddle.vision.ops
import
DeformConv2D
from
...modules.dcn
import
DeformableConv_dygraph
# from paddle.vision.ops import DeformConv2D #to be compiled
from
...modules.init
import
kaiming_normal_
,
constant_
,
constant_init
from
.builder
import
GENERATORS
...
...
@@ -373,14 +371,13 @@ class DCNPack(nn.Layer):
self
.
total_channels
=
self
.
deformable_groups
*
3
*
self
.
kernel_size
[
0
]
*
self
.
kernel_size
[
1
]
self
.
split_channels
=
self
.
total_channels
//
3
self
.
dcn
=
DeformableConv_dygraph
(
num_filters
=
self
.
num_filters
,
filter_size
=
self
.
kernel_size
,
dilation
=
dilation
,
self
.
dcn
=
DeformConv2D
(
in_channels
=
self
.
num_filters
,
out_channels
=
self
.
num_filters
,
kernel_size
=
self
.
kernel_size
,
stride
=
stride
,
padding
=
padding
,
dilation
=
dilation
,
deformable_groups
=
self
.
deformable_groups
)
# self.dcn = DeformConv2D(in_channels=self.num_filters,out_channels=self.num_filters,kernel_size=self.kernel_size,stride=stride,padding=padding,dilation=dilation,deformable_groups=self.deformable_groups,groups=1) # to be compiled
self
.
sigmoid
=
nn
.
Sigmoid
()
# init conv offset
constant_init
(
self
.
conv_offset_mask
,
0.
,
0.
)
...
...
ppgan/models/generators/mpr.py
浏览文件 @
42f390d7
...
...
@@ -12,22 +12,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
paddle
import
numpy
as
np
import
paddle
import
paddle.nn
as
nn
from
...modules.init
import
kaiming_normal_
,
constant_
import
paddle.nn.functional
as
F
from
...modules.dcn
import
DeformableConv_dygraph
# from paddle.vision.ops import DeformConv2D #to be compiled
from
...modules.init
import
kaiming_normal_
,
constant_
from
.builder
import
GENERATORS
import
paddle
from
paddle
import
nn
import
paddle.nn.functional
as
F
##########################################################################
def
conv
(
in_channels
,
out_channels
,
kernel_size
,
bias_attr
=
False
,
stride
=
1
):
...
...
ppgan/modules/dcn.py
已删除
100644 → 0
浏览文件 @
a95ce33b
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
math
import
numpy
as
np
import
paddle
from
paddle.fluid.layer_helper
import
LayerHelper
from
paddle.fluid.data_feeder
import
check_variable_and_dtype
,
check_type
,
check_dtype
from
paddle.fluid.layers
import
deformable_conv
from
paddle.fluid
import
core
,
layers
from
paddle.fluid.layers
import
nn
,
utils
from
paddle.nn
import
Layer
from
paddle.fluid.initializer
import
Normal
from
paddle.common_ops_import
import
*
from
.init
import
uniform_
,
constant_
class
DeformConv2D
(
Layer
):
def
__init__
(
self
,
in_channels
,
out_channels
,
kernel_size
,
stride
=
1
,
padding
=
0
,
dilation
=
1
,
deformable_groups
=
1
,
groups
=
1
,
weight_attr
=
None
,
bias_attr
=
None
):
super
(
DeformConv2D
,
self
).
__init__
()
assert
weight_attr
is
not
False
,
"weight_attr should not be False in Conv."
self
.
_weight_attr
=
weight_attr
self
.
_bias_attr
=
bias_attr
self
.
_deformable_groups
=
deformable_groups
self
.
_groups
=
groups
self
.
_in_channels
=
in_channels
self
.
_out_channels
=
out_channels
self
.
padding
=
padding
self
.
stride
=
stride
self
.
_channel_dim
=
1
self
.
_stride
=
utils
.
convert_to_list
(
stride
,
2
,
'stride'
)
self
.
_dilation
=
utils
.
convert_to_list
(
dilation
,
2
,
'dilation'
)
self
.
_kernel_size
=
utils
.
convert_to_list
(
kernel_size
,
2
,
'kernel_size'
)
if
in_channels
%
groups
!=
0
:
raise
ValueError
(
"in_channels must be divisible by groups."
)
self
.
_padding
=
utils
.
convert_to_list
(
padding
,
2
,
'padding'
)
filter_shape
=
[
out_channels
,
in_channels
//
groups
]
+
self
.
_kernel_size
def
_get_default_param_initializer
():
filter_elem_num
=
np
.
prod
(
self
.
_kernel_size
)
*
self
.
_in_channels
std
=
(
2.0
/
filter_elem_num
)
**
0.5
return
Normal
(
0.0
,
std
,
0
)
self
.
weight
=
self
.
create_parameter
(
shape
=
filter_shape
,
attr
=
self
.
_weight_attr
,
default_initializer
=
_get_default_param_initializer
())
self
.
bias
=
self
.
create_parameter
(
attr
=
self
.
_bias_attr
,
shape
=
[
self
.
_out_channels
],
is_bias
=
True
)
self
.
init_weight
()
def
init_weight
(
self
):
n
=
self
.
_in_channels
for
k
in
self
.
_kernel_size
:
n
*=
k
stdv
=
1.
/
math
.
sqrt
(
n
)
uniform_
(
self
.
weight
,
-
stdv
,
stdv
)
if
hasattr
(
self
,
'bias'
)
and
self
.
bias
is
not
None
:
constant_
(
self
.
bias
,
0.
)
def
forward
(
self
,
x
,
offset
,
mask
):
out
=
deform_conv2d
(
x
=
x
,
offset
=
offset
,
mask
=
mask
,
weight
=
self
.
weight
,
bias
=
self
.
bias
,
stride
=
self
.
_stride
,
padding
=
self
.
_padding
,
dilation
=
self
.
_dilation
,
deformable_groups
=
self
.
_deformable_groups
,
groups
=
self
.
_groups
,
)
return
out
def
deform_conv2d
(
x
,
offset
,
weight
,
mask
,
bias
=
None
,
stride
=
1
,
padding
=
0
,
dilation
=
1
,
deformable_groups
=
1
,
groups
=
1
,
name
=
None
):
stride
=
utils
.
convert_to_list
(
stride
,
2
,
'stride'
)
padding
=
utils
.
convert_to_list
(
padding
,
2
,
'padding'
)
dilation
=
utils
.
convert_to_list
(
dilation
,
2
,
'dilation'
)
use_deform_conv2d_v1
=
True
if
mask
is
None
else
False
if
in_dygraph_mode
():
attrs
=
(
'strides'
,
stride
,
'paddings'
,
padding
,
'dilations'
,
dilation
,
'deformable_groups'
,
deformable_groups
,
'groups'
,
groups
,
'im2col_step'
,
1
)
if
use_deform_conv2d_v1
:
op_type
=
'deformable_conv_v1'
pre_bias
=
getattr
(
core
.
ops
,
op_type
)(
x
,
offset
,
weight
,
*
attrs
)
else
:
op_type
=
'deformable_conv'
pre_bias
=
getattr
(
core
.
ops
,
op_type
)(
x
,
offset
,
mask
,
weight
,
*
attrs
)
if
bias
is
not
None
:
out
=
nn
.
elementwise_add
(
pre_bias
,
bias
,
axis
=
1
)
else
:
out
=
pre_bias
else
:
helper
=
LayerHelper
(
'deform_conv2d'
,
**
locals
())
attrs
=
{
'strides'
:
stride
,
'paddings'
:
padding
,
'dilations'
:
dilation
,
'deformable_groups'
:
deformable_groups
,
'groups'
:
groups
,
'im2col_step'
:
1
}
if
use_deform_conv2d_v1
:
op_type
=
'deformable_conv_v1'
inputs
=
{
'Input'
:
x
,
'Offset'
:
offset
,
'Filter'
:
weight
}
else
:
op_type
=
'deformable_conv'
inputs
=
{
'Input'
:
x
,
'Offset'
:
offset
,
'Mask'
:
mask
,
'Filter'
:
weight
}
pre_bias
=
helper
.
create_variable_for_type_inference
(
dtype
=
x
.
dtype
)
helper
.
append_op
(
type
=
op_type
,
inputs
=
inputs
,
outputs
=
{
'Output'
:
pre_bias
},
attrs
=
attrs
)
if
bias
is
not
None
:
out
=
nn
.
elementwise_add
(
pre_bias
,
bias
,
axis
=
1
)
else
:
out
=
pre_bias
return
out
class
DeformableConv_dygraph
(
Layer
):
def
__init__
(
self
,
num_filters
,
filter_size
,
dilation
,
stride
,
padding
,
deformable_groups
=
1
,
groups
=
1
):
super
(
DeformableConv_dygraph
,
self
).
__init__
()
self
.
num_filters
=
num_filters
self
.
filter_size
=
filter_size
self
.
dilation
=
dilation
self
.
stride
=
stride
self
.
padding
=
padding
self
.
deformable_groups
=
deformable_groups
self
.
groups
=
groups
self
.
defor_conv
=
DeformConv2D
(
in_channels
=
self
.
num_filters
,
out_channels
=
self
.
num_filters
,
kernel_size
=
self
.
filter_size
,
stride
=
self
.
stride
,
padding
=
self
.
padding
,
dilation
=
self
.
dilation
,
deformable_groups
=
self
.
deformable_groups
,
groups
=
self
.
groups
,
weight_attr
=
None
,
bias_attr
=
None
)
def
forward
(
self
,
*
input
):
x
=
input
[
0
]
offset
=
input
[
1
]
mask
=
input
[
2
]
out
=
self
.
defor_conv
(
x
,
offset
,
mask
)
return
out
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录