Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
3fa3e577
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 1 年 前同步成功
通知
115
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看板
提交
3fa3e577
编写于
5月 26, 2021
作者:
W
weishengyu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
remove names
上级
ad9caea2
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
31 deletion
+13
-31
ppcls/arch/backbone/legendary_models/hrnet.py
ppcls/arch/backbone/legendary_models/hrnet.py
+13
-31
未找到文件。
ppcls/arch/backbone/legendary_models/hrnet.py
浏览文件 @
3fa3e577
...
...
@@ -214,8 +214,7 @@ class Stage(TheseusLayer):
def
__init__
(
self
,
num_modules
,
num_filters
,
has_se
=
False
,
name
=
None
):
has_se
=
False
):
super
(
Stage
,
self
).
__init__
()
self
.
_num_modules
=
num_modules
...
...
@@ -225,8 +224,7 @@ class Stage(TheseusLayer):
self
.
stage_func_list
.
append
(
HighResolutionModule
(
num_filters
=
num_filters
,
has_se
=
has_se
,
name
=
name
+
'_'
+
str
(
i
+
1
)))
has_se
=
has_se
))
def
forward
(
self
,
input
,
res_dict
=
None
):
out
=
input
...
...
@@ -238,8 +236,7 @@ class Stage(TheseusLayer):
class
HighResolutionModule
(
TheseusLayer
):
def
__init__
(
self
,
num_filters
,
has_se
=
False
,
name
=
None
):
has_se
=
False
):
super
(
HighResolutionModule
,
self
).
__init__
()
self
.
basic_block_list
=
nn
.
LayerList
()
...
...
@@ -254,8 +251,7 @@ class HighResolutionModule(TheseusLayer):
self
.
fuse_func
=
FuseLayers
(
in_channels
=
num_filters
,
out_channels
=
num_filters
,
name
=
name
)
out_channels
=
num_filters
)
def
forward
(
self
,
input
,
res_dict
=
None
):
outs
=
[]
...
...
@@ -272,8 +268,7 @@ class HighResolutionModule(TheseusLayer):
class
FuseLayers
(
TheseusLayer
):
def
__init__
(
self
,
in_channels
,
out_channels
,
name
=
None
):
out_channels
):
super
(
FuseLayers
,
self
).
__init__
()
self
.
_actual_ch
=
len
(
in_channels
)
...
...
@@ -342,8 +337,7 @@ class LastClsOut(TheseusLayer):
def
__init__
(
self
,
num_channel_list
,
has_se
,
num_filters_list
=
[
32
,
64
,
128
,
256
],
name
=
None
):
num_filters_list
=
[
32
,
64
,
128
,
256
]):
super
(
LastClsOut
,
self
).
__init__
()
self
.
func_list
=
nn
.
LayerList
()
...
...
@@ -369,19 +363,11 @@ class HRNet(TheseusLayer):
self
.
width
=
width
self
.
has_se
=
has_se
self
.
channels
=
{
18
:
[[
18
,
36
],
[
18
,
36
,
72
],
[
18
,
36
,
72
,
144
]],
30
:
[[
30
,
60
],
[
30
,
60
,
120
],
[
30
,
60
,
120
,
240
]],
32
:
[[
32
,
64
],
[
32
,
64
,
128
],
[
32
,
64
,
128
,
256
]],
40
:
[[
40
,
80
],
[
40
,
80
,
160
],
[
40
,
80
,
160
,
320
]],
44
:
[[
44
,
88
],
[
44
,
88
,
176
],
[
44
,
88
,
176
,
352
]],
48
:
[[
48
,
96
],
[
48
,
96
,
192
],
[
48
,
96
,
192
,
384
]],
60
:
[[
60
,
120
],
[
60
,
120
,
240
],
[
60
,
120
,
240
,
480
]],
64
:
[[
64
,
128
],
[
64
,
128
,
256
],
[
64
,
128
,
256
,
512
]]
}
self
.
_class_dim
=
class_dim
channels_2
,
channels_3
,
channels_4
=
self
.
channels
[
width
]
channels_2
=
[
self
.
width
,
self
.
width
*
2
]
channels_3
=
[
self
.
width
,
self
.
width
*
2
,
self
.
width
*
4
]
channels_4
=
[
self
.
width
,
self
.
width
*
2
,
self
.
width
*
4
,
self
.
width
*
8
]
self
.
conv_layer1_1
=
ConvBNLayer
(
num_channels
=
3
,
...
...
@@ -421,8 +407,7 @@ class HRNet(TheseusLayer):
self
.
st2
=
Stage
(
num_modules
=
1
,
num_filters
=
channels_2
,
has_se
=
self
.
has_se
,
name
=
"st2"
)
has_se
=
self
.
has_se
)
self
.
tr2
=
ConvBNLayer
(
num_channels
=
width
*
2
,
...
...
@@ -433,8 +418,7 @@ class HRNet(TheseusLayer):
self
.
st3
=
Stage
(
num_modules
=
4
,
num_filters
=
channels_3
,
has_se
=
self
.
has_se
,
name
=
"st3"
)
has_se
=
self
.
has_se
)
self
.
tr3
=
ConvBNLayer
(
num_channels
=
width
*
4
,
...
...
@@ -446,16 +430,14 @@ class HRNet(TheseusLayer):
self
.
st4
=
Stage
(
num_modules
=
3
,
num_filters
=
channels_4
,
has_se
=
self
.
has_se
,
name
=
"st4"
)
has_se
=
self
.
has_se
)
# classification
num_filters_list
=
[
32
,
64
,
128
,
256
]
self
.
last_cls
=
LastClsOut
(
num_channel_list
=
channels_4
,
has_se
=
self
.
has_se
,
num_filters_list
=
num_filters_list
,
name
=
"cls_head"
,
)
num_filters_list
=
num_filters_list
)
last_num_filters
=
[
256
,
512
,
1024
]
self
.
cls_head_conv_list
=
nn
.
LayerList
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录