Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
33dca040
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
33dca040
编写于
5月 13, 2021
作者:
Z
zhiboniu
提交者:
GitHub
5月 13, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix batchsize=1 backward error (#2973)
上级
cb972a2b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
7 deletion
+9
-7
configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml
configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml
+2
-2
ppdet/modeling/heads/keypoint_hrhrnet_head.py
ppdet/modeling/heads/keypoint_hrhrnet_head.py
+3
-4
ppdet/modeling/losses/keypoint_loss.py
ppdet/modeling/losses/keypoint_loss.py
+4
-1
未找到文件。
configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml
浏览文件 @
33dca040
use_gpu
:
true
log_iter
:
1
log_iter
:
1
0
save_dir
:
output
snapshot_epoch
:
10
weights
:
output/higherhrnet_hrnet_
v1_512/290
weights
:
output/higherhrnet_hrnet_
w32_512/model_final
epoch
:
300
num_joints
:
&num_joints
17
flip_perm
:
&flip_perm
[
0
,
2
,
1
,
4
,
3
,
6
,
5
,
8
,
7
,
10
,
9
,
12
,
11
,
14
,
13
,
16
,
15
]
...
...
ppdet/modeling/heads/keypoint_hrhrnet_head.py
浏览文件 @
33dca040
...
...
@@ -92,15 +92,14 @@ class HrHRNetHead(nn.Layer):
xo2
=
self
.
conv2
(
x2
)
num_joints
=
self
.
num_joints
if
self
.
training
:
heatmap1
,
tagmap
=
paddle
.
split
(
xo1
,
2
,
axis
=
1
)
if
self
.
swahr
:
so1
=
self
.
scalelayer0
(
x1
)
so2
=
self
.
scalelayer1
(
x2
)
hrhrnet_outputs
=
([
xo1
[:,
:
num_joints
],
so1
],
[
xo2
,
so2
],
xo1
[:,
num_joints
:])
hrhrnet_outputs
=
([
heatmap1
,
so1
],
[
xo2
,
so2
],
tagmap
)
return
self
.
loss
(
hrhrnet_outputs
,
targets
)
else
:
hrhrnet_outputs
=
(
xo1
[:,
:
num_joints
],
xo2
,
xo1
[:,
num_joints
:])
hrhrnet_outputs
=
(
heatmap1
,
xo2
,
tagmap
)
return
self
.
loss
(
hrhrnet_outputs
,
targets
)
# averaged heatmap, upsampled tagmap
...
...
ppdet/modeling/losses/keypoint_loss.py
浏览文件 @
33dca040
...
...
@@ -194,7 +194,10 @@ class AELoss(object):
def
__call__
(
self
,
preds
,
tagmaps
):
bs
=
preds
.
shape
[
0
]
losses
=
[
self
.
apply_single
(
preds
[
i
],
tagmaps
[
i
])
for
i
in
range
(
bs
)]
losses
=
[
self
.
apply_single
(
preds
[
i
:
i
+
1
].
squeeze
(),
tagmaps
[
i
:
i
+
1
].
squeeze
())
for
i
in
range
(
bs
)
]
pull
=
self
.
pull_factor
*
sum
(
loss
[
0
]
for
loss
in
losses
)
/
len
(
losses
)
push
=
self
.
push_factor
*
sum
(
loss
[
1
]
for
loss
in
losses
)
/
len
(
losses
)
return
pull
,
push
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录