Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
34edfa05
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
接近 2 年 前同步成功
通知
116
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
34edfa05
编写于
6月 25, 2020
作者:
littletomatodonkey
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add dpn, densenet and hrnet dygraph model
上级
3b93ffa0
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
883 addition
and
528 deletion
+883
-528
ppcls/modeling/architectures/dpn.py
ppcls/modeling/architectures/dpn.py
+275
-195
ppcls/modeling/architectures/hrnet.py
ppcls/modeling/architectures/hrnet.py
+608
-333
未找到文件。
ppcls/modeling/architectures/dpn.py
浏览文件 @
34edfa05
#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.
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
import
os
import
numpy
as
np
import
numpy
as
np
import
time
import
argparse
import
sys
import
ast
import
math
import
paddle
import
paddle.fluid
as
fluid
import
paddle.fluid
as
fluid
from
paddle.fluid.param_attr
import
ParamAttr
from
paddle.fluid.param_attr
import
ParamAttr
from
paddle.fluid.layer_helper
import
LayerHelper
from
paddle.fluid.dygraph.nn
import
Conv2D
,
Pool2D
,
BatchNorm
,
Linear
from
paddle.fluid.dygraph.base
import
to_variable
from
paddle.fluid
import
framework
import
math
import
sys
import
time
__all__
=
[
"DPN"
,
"DPN68"
,
"DPN92"
,
"DPN98"
,
"DPN107"
,
"DPN131"
,
]
class
ConvBNLayer
(
fluid
.
dygraph
.
Layer
):
def
__init__
(
self
,
num_channels
,
num_filters
,
filter_size
,
stride
=
1
,
pad
=
0
,
groups
=
1
,
act
=
"relu"
,
name
=
None
):
super
(
ConvBNLayer
,
self
).
__init__
()
self
.
_conv
=
Conv2D
(
num_channels
=
num_channels
,
num_filters
=
num_filters
,
filter_size
=
filter_size
,
stride
=
stride
,
padding
=
pad
,
groups
=
groups
,
act
=
None
,
param_attr
=
ParamAttr
(
name
=
name
+
"_weights"
),
bias_attr
=
False
)
self
.
_batch_norm
=
BatchNorm
(
num_filters
,
act
=
act
,
param_attr
=
ParamAttr
(
name
=
name
+
'_bn_scale'
),
bias_attr
=
ParamAttr
(
name
+
'_bn_offset'
),
moving_mean_name
=
name
+
'_bn_mean'
,
moving_variance_name
=
name
+
'_bn_variance'
)
def
forward
(
self
,
input
):
y
=
self
.
_conv
(
input
)
y
=
self
.
_batch_norm
(
y
)
return
y
class
BNACConvLayer
(
fluid
.
dygraph
.
Layer
):
def
__init__
(
self
,
num_channels
,
num_filters
,
filter_size
,
stride
=
1
,
pad
=
0
,
groups
=
1
,
act
=
"relu"
,
name
=
None
):
super
(
BNACConvLayer
,
self
).
__init__
()
self
.
num_channels
=
num_channels
self
.
name
=
name
self
.
_batch_norm
=
BatchNorm
(
num_channels
,
act
=
act
,
param_attr
=
ParamAttr
(
name
=
name
+
'_bn_scale'
),
bias_attr
=
ParamAttr
(
name
+
'_bn_offset'
),
moving_mean_name
=
name
+
'_bn_mean'
,
moving_variance_name
=
name
+
'_bn_variance'
)
self
.
_conv
=
Conv2D
(
num_channels
=
num_channels
,
num_filters
=
num_filters
,
filter_size
=
filter_size
,
stride
=
stride
,
padding
=
pad
,
groups
=
groups
,
act
=
None
,
param_attr
=
ParamAttr
(
name
=
name
+
"_weights"
),
bias_attr
=
False
)
def
forward
(
self
,
input
):
y
=
self
.
_batch_norm
(
input
)
y
=
self
.
_conv
(
y
)
return
y
class
DualPathFactory
(
fluid
.
dygraph
.
Layer
):
def
__init__
(
self
,
num_channels
,
num_1x1_a
,
num_3x3_b
,
num_1x1_c
,
inc
,
G
,
_type
=
'normal'
,
name
=
None
):
super
(
DualPathFactory
,
self
).
__init__
()
self
.
num_1x1_c
=
num_1x1_c
self
.
inc
=
inc
self
.
name
=
name
kw
=
3
kh
=
3
pw
=
(
kw
-
1
)
//
2
ph
=
(
kh
-
1
)
//
2
# type
if
_type
==
'proj'
:
key_stride
=
1
self
.
has_proj
=
True
elif
_type
==
'down'
:
key_stride
=
2
self
.
has_proj
=
True
elif
_type
==
'normal'
:
key_stride
=
1
self
.
has_proj
=
False
else
:
print
(
"not implemented now!!!"
)
sys
.
exit
(
1
)
__all__
=
[
"DPN"
,
"DPN68"
,
"DPN92"
,
"DPN98"
,
"DPN107"
,
"DPN131"
]
data_in_ch
=
sum
(
num_channels
)
if
isinstance
(
num_channels
,
list
)
else
num_channels
if
self
.
has_proj
:
self
.
c1x1_w_func
=
BNACConvLayer
(
num_channels
=
data_in_ch
,
num_filters
=
num_1x1_c
+
2
*
inc
,
filter_size
=
(
1
,
1
),
pad
=
(
0
,
0
),
stride
=
(
key_stride
,
key_stride
),
name
=
name
+
"_match"
)
self
.
c1x1_a_func
=
BNACConvLayer
(
num_channels
=
data_in_ch
,
num_filters
=
num_1x1_a
,
filter_size
=
(
1
,
1
),
pad
=
(
0
,
0
),
name
=
name
+
"_conv1"
)
self
.
c3x3_b_func
=
BNACConvLayer
(
num_channels
=
num_1x1_a
,
num_filters
=
num_3x3_b
,
filter_size
=
(
kw
,
kh
),
pad
=
(
pw
,
ph
),
stride
=
(
key_stride
,
key_stride
),
groups
=
G
,
name
=
name
+
"_conv2"
)
class
DPN
(
object
):
self
.
c1x1_c_func
=
BNACConvLayer
(
def
__init__
(
self
,
layers
=
68
):
num_channels
=
num_3x3_b
,
self
.
layers
=
layers
num_filters
=
num_1x1_c
+
inc
,
filter_size
=
(
1
,
1
),
pad
=
(
0
,
0
),
name
=
name
+
"_conv3"
)
def
forward
(
self
,
input
):
# PROJ
if
isinstance
(
input
,
list
):
data_in
=
fluid
.
layers
.
concat
([
input
[
0
],
input
[
1
]],
axis
=
1
)
else
:
data_in
=
input
if
self
.
has_proj
:
c1x1_w
=
self
.
c1x1_w_func
(
data_in
)
data_o1
,
data_o2
=
fluid
.
layers
.
split
(
c1x1_w
,
num_or_sections
=
[
self
.
num_1x1_c
,
2
*
self
.
inc
],
dim
=
1
)
else
:
data_o1
=
input
[
0
]
data_o2
=
input
[
1
]
c1x1_a
=
self
.
c1x1_a_func
(
data_in
)
c3x3_b
=
self
.
c3x3_b_func
(
c1x1_a
)
c1x1_c
=
self
.
c1x1_c_func
(
c3x3_b
)
c1x1_c1
,
c1x1_c2
=
fluid
.
layers
.
split
(
c1x1_c
,
num_or_sections
=
[
self
.
num_1x1_c
,
self
.
inc
],
dim
=
1
)
# OUTPUTS
summ
=
fluid
.
layers
.
elementwise_add
(
x
=
data_o1
,
y
=
c1x1_c1
)
dense
=
fluid
.
layers
.
concat
([
data_o2
,
c1x1_c2
],
axis
=
1
)
# tensor, channels
return
[
summ
,
dense
]
def
net
(
self
,
input
,
class_dim
=
1000
):
# get network args
class
DPN
(
fluid
.
dygraph
.
Layer
):
args
=
self
.
get_net_args
(
self
.
layers
)
def
__init__
(
self
,
layers
=
60
,
class_dim
=
1000
):
super
(
DPN
,
self
).
__init__
()
self
.
_class_dim
=
class_dim
args
=
self
.
get_net_args
(
layers
)
bws
=
args
[
'bw'
]
bws
=
args
[
'bw'
]
inc_sec
=
args
[
'inc_sec'
]
inc_sec
=
args
[
'inc_sec'
]
rs
=
args
[
'r'
]
rs
=
args
[
'r'
]
...
@@ -45,39 +215,23 @@ class DPN(object):
...
@@ -45,39 +215,23 @@ class DPN(object):
init_filter_size
=
args
[
'init_filter_size'
]
init_filter_size
=
args
[
'init_filter_size'
]
init_padding
=
args
[
'init_padding'
]
init_padding
=
args
[
'init_padding'
]
## define Dual Path Network
self
.
k_sec
=
k_sec
# conv1
self
.
conv1_x_1_func
=
ConvBNLayer
(
conv1_x_1
=
fluid
.
layers
.
conv2d
(
num_channels
=
3
,
input
=
input
,
num_filters
=
init_num_filter
,
num_filters
=
init_num_filter
,
filter_size
=
init_filter_size
,
filter_size
=
3
,
stride
=
2
,
stride
=
2
,
padding
=
init_padding
,
pad
=
1
,
groups
=
1
,
act
=
None
,
bias_attr
=
False
,
name
=
"conv1"
,
param_attr
=
ParamAttr
(
name
=
"conv1_weights"
),
)
conv1_x_1
=
fluid
.
layers
.
batch_norm
(
input
=
conv1_x_1
,
act
=
'relu'
,
act
=
'relu'
,
is_test
=
False
,
name
=
"conv1"
)
name
=
"conv1_bn"
,
param_attr
=
ParamAttr
(
name
=
'conv1_bn_scale'
),
self
.
pool2d_max
=
Pool2D
(
bias_attr
=
ParamAttr
(
'conv1_bn_offset'
),
pool_size
=
3
,
pool_stride
=
2
,
pool_padding
=
1
,
pool_type
=
'max'
)
moving_mean_name
=
'conv1_bn_mean'
,
moving_variance_name
=
'conv1_bn_variance'
,
)
convX_x_x
=
fluid
.
layers
.
pool2d
(
input
=
conv1_x_1
,
pool_size
=
3
,
pool_stride
=
2
,
pool_padding
=
1
,
pool_type
=
'max'
,
name
=
"pool1"
)
num_channel_dpn
=
init_num_filter
self
.
dpn_func_list
=
[]
#conv2 - conv5
#conv2 - conv5
match_list
,
num
=
[],
0
match_list
,
num
=
[],
0
for
gc
in
range
(
4
):
for
gc
in
range
(
4
):
...
@@ -93,43 +247,82 @@ class DPN(object):
...
@@ -93,43 +247,82 @@ class DPN(object):
_type2
=
'normal'
_type2
=
'normal'
match
=
match
+
k_sec
[
gc
-
1
]
match
=
match
+
k_sec
[
gc
-
1
]
match_list
.
append
(
match
)
match_list
.
append
(
match
)
self
.
dpn_func_list
.
append
(
self
.
add_sublayer
(
"dpn{}"
.
format
(
match
),
DualPathFactory
(
num_channels
=
num_channel_dpn
,
num_1x1_a
=
R
,
num_3x3_b
=
R
,
num_1x1_c
=
bw
,
inc
=
inc
,
G
=
G
,
_type
=
_type1
,
name
=
"dpn"
+
str
(
match
))))
num_channel_dpn
=
[
bw
,
3
*
inc
]
convX_x_x
=
self
.
dual_path_factory
(
convX_x_x
,
R
,
R
,
bw
,
inc
,
G
,
_type1
,
name
=
"dpn"
+
str
(
match
))
for
i_ly
in
range
(
2
,
k_sec
[
gc
]
+
1
):
for
i_ly
in
range
(
2
,
k_sec
[
gc
]
+
1
):
num
+=
1
num
+=
1
if
num
in
match_list
:
if
num
in
match_list
:
num
+=
1
num
+=
1
convX_x_x
=
self
.
dual_path_factory
(
self
.
dpn_func_list
.
append
(
convX_x_x
,
R
,
R
,
bw
,
inc
,
G
,
_type2
,
name
=
"dpn"
+
str
(
num
))
self
.
add_sublayer
(
"dpn{}"
.
format
(
num
),
conv5_x_x
=
fluid
.
layers
.
concat
(
convX_x_x
,
axis
=
1
)
DualPathFactory
(
conv5_x_x
=
fluid
.
layers
.
batch_norm
(
num_channels
=
num_channel_dpn
,
input
=
conv5_x_x
,
num_1x1_a
=
R
,
act
=
'relu'
,
num_3x3_b
=
R
,
is_test
=
False
,
num_1x1_c
=
bw
,
name
=
"final_concat_bn"
,
inc
=
inc
,
G
=
G
,
_type
=
_type2
,
name
=
"dpn"
+
str
(
num
))))
num_channel_dpn
=
[
num_channel_dpn
[
0
],
num_channel_dpn
[
1
]
+
inc
]
out_channel
=
sum
(
num_channel_dpn
)
self
.
conv5_x_x_bn
=
BatchNorm
(
num_channels
=
sum
(
num_channel_dpn
),
act
=
"relu"
,
param_attr
=
ParamAttr
(
name
=
'final_concat_bn_scale'
),
param_attr
=
ParamAttr
(
name
=
'final_concat_bn_scale'
),
bias_attr
=
ParamAttr
(
'final_concat_bn_offset'
),
bias_attr
=
ParamAttr
(
'final_concat_bn_offset'
),
moving_mean_name
=
'final_concat_bn_mean'
,
moving_mean_name
=
'final_concat_bn_mean'
,
moving_variance_name
=
'final_concat_bn_variance'
,
)
moving_variance_name
=
'final_concat_bn_variance'
)
pool5
=
fluid
.
layers
.
pool2d
(
input
=
conv5_x_x
,
self
.
pool2d_avg
=
Pool2D
(
pool_type
=
'avg'
,
global_pooling
=
True
)
pool_size
=
7
,
pool_stride
=
1
,
pool_padding
=
0
,
pool_type
=
'avg'
,
)
stdv
=
0.01
stdv
=
0.01
fc6
=
fluid
.
layers
.
fc
(
input
=
pool5
,
self
.
out
=
Linear
(
size
=
class_dim
,
out_channel
,
class_dim
,
param_attr
=
ParamAttr
(
param_attr
=
ParamAttr
(
initializer
=
fluid
.
initializer
.
Uniform
(
-
stdv
,
stdv
),
initializer
=
fluid
.
initializer
.
Uniform
(
-
stdv
,
stdv
),
name
=
'fc_weights'
),
name
=
"fc_weights"
),
bias_attr
=
ParamAttr
(
name
=
'fc_offset'
))
bias_attr
=
ParamAttr
(
name
=
"fc_offset"
))
return
fc6
def
forward
(
self
,
input
):
conv1_x_1
=
self
.
conv1_x_1_func
(
input
)
convX_x_x
=
self
.
pool2d_max
(
conv1_x_1
)
dpn_idx
=
0
for
gc
in
range
(
4
):
convX_x_x
=
self
.
dpn_func_list
[
dpn_idx
](
convX_x_x
)
dpn_idx
+=
1
for
i_ly
in
range
(
2
,
self
.
k_sec
[
gc
]
+
1
):
convX_x_x
=
self
.
dpn_func_list
[
dpn_idx
](
convX_x_x
)
dpn_idx
+=
1
conv5_x_x
=
fluid
.
layers
.
concat
(
convX_x_x
,
axis
=
1
)
conv5_x_x
=
self
.
conv5_x_x_bn
(
conv5_x_x
)
y
=
self
.
pool2d_avg
(
conv5_x_x
)
y
=
fluid
.
layers
.
reshape
(
y
,
shape
=
[
0
,
-
1
])
y
=
self
.
out
(
y
)
return
y
def
get_net_args
(
self
,
layers
):
def
get_net_args
(
self
,
layers
):
if
layers
==
68
:
if
layers
==
68
:
...
@@ -198,119 +391,6 @@ class DPN(object):
...
@@ -198,119 +391,6 @@ class DPN(object):
return
net_arg
return
net_arg
def
dual_path_factory
(
self
,
data
,
num_1x1_a
,
num_3x3_b
,
num_1x1_c
,
inc
,
G
,
_type
=
'normal'
,
name
=
None
):
kw
=
3
kh
=
3
pw
=
(
kw
-
1
)
//
2
ph
=
(
kh
-
1
)
//
2
# type
if
_type
is
'proj'
:
key_stride
=
1
has_proj
=
True
if
_type
is
'down'
:
key_stride
=
2
has_proj
=
True
if
_type
is
'normal'
:
key_stride
=
1
has_proj
=
False
# PROJ
if
type
(
data
)
is
list
:
data_in
=
fluid
.
layers
.
concat
([
data
[
0
],
data
[
1
]],
axis
=
1
)
else
:
data_in
=
data
if
has_proj
:
c1x1_w
=
self
.
bn_ac_conv
(
data
=
data_in
,
num_filter
=
(
num_1x1_c
+
2
*
inc
),
kernel
=
(
1
,
1
),
pad
=
(
0
,
0
),
stride
=
(
key_stride
,
key_stride
),
name
=
name
+
"_match"
)
data_o1
,
data_o2
=
fluid
.
layers
.
split
(
c1x1_w
,
num_or_sections
=
[
num_1x1_c
,
2
*
inc
],
dim
=
1
,
name
=
name
+
"_match_conv_Slice"
)
else
:
data_o1
=
data
[
0
]
data_o2
=
data
[
1
]
# MAIN
c1x1_a
=
self
.
bn_ac_conv
(
data
=
data_in
,
num_filter
=
num_1x1_a
,
kernel
=
(
1
,
1
),
pad
=
(
0
,
0
),
name
=
name
+
"_conv1"
)
c3x3_b
=
self
.
bn_ac_conv
(
data
=
c1x1_a
,
num_filter
=
num_3x3_b
,
kernel
=
(
kw
,
kh
),
pad
=
(
pw
,
ph
),
stride
=
(
key_stride
,
key_stride
),
num_group
=
G
,
name
=
name
+
"_conv2"
)
c1x1_c
=
self
.
bn_ac_conv
(
data
=
c3x3_b
,
num_filter
=
(
num_1x1_c
+
inc
),
kernel
=
(
1
,
1
),
pad
=
(
0
,
0
),
name
=
name
+
"_conv3"
)
c1x1_c1
,
c1x1_c2
=
fluid
.
layers
.
split
(
c1x1_c
,
num_or_sections
=
[
num_1x1_c
,
inc
],
dim
=
1
,
name
=
name
+
"_conv3_Slice"
)
# OUTPUTS
summ
=
fluid
.
layers
.
elementwise_add
(
x
=
data_o1
,
y
=
c1x1_c1
,
name
=
name
+
"_elewise"
)
dense
=
fluid
.
layers
.
concat
(
[
data_o2
,
c1x1_c2
],
axis
=
1
,
name
=
name
+
"_concat"
)
return
[
summ
,
dense
]
def
bn_ac_conv
(
self
,
data
,
num_filter
,
kernel
,
pad
,
stride
=
(
1
,
1
),
num_group
=
1
,
name
=
None
):
bn_ac
=
fluid
.
layers
.
batch_norm
(
input
=
data
,
act
=
'relu'
,
is_test
=
False
,
name
=
name
+
'.output.1'
,
param_attr
=
ParamAttr
(
name
=
name
+
'_bn_scale'
),
bias_attr
=
ParamAttr
(
name
+
'_bn_offset'
),
moving_mean_name
=
name
+
'_bn_mean'
,
moving_variance_name
=
name
+
'_bn_variance'
,
)
bn_ac_conv
=
fluid
.
layers
.
conv2d
(
input
=
bn_ac
,
num_filters
=
num_filter
,
filter_size
=
kernel
,
stride
=
stride
,
padding
=
pad
,
groups
=
num_group
,
act
=
None
,
bias_attr
=
False
,
param_attr
=
ParamAttr
(
name
=
name
+
"_weights"
))
return
bn_ac_conv
def
DPN68
():
def
DPN68
():
model
=
DPN
(
layers
=
68
)
model
=
DPN
(
layers
=
68
)
...
...
ppcls/modeling/architectures/hrnet.py
浏览文件 @
34edfa05
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录