Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
0f4d67a5
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
0f4d67a5
编写于
2月 13, 2023
作者:
S
shangliang Xu
提交者:
GitHub
2月 13, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix dn_match_indices bug in detr_loss.py (#7725)
上级
dd2d5795
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
11 deletion
+13
-11
ppdet/modeling/losses/detr_loss.py
ppdet/modeling/losses/detr_loss.py
+13
-11
未找到文件。
ppdet/modeling/losses/detr_loss.py
浏览文件 @
0f4d67a5
...
...
@@ -163,9 +163,9 @@ class DETRLoss(nn.Layer):
gt_class
,
bg_index
,
num_gts
,
match_indices
=
None
,
dn_
match_indices
=
None
,
postfix
=
""
):
if
boxes
is
None
and
logits
is
None
:
if
boxes
is
None
or
logits
is
None
:
return
{
"loss_class_aux"
+
postfix
:
paddle
.
paddle
.
zeros
([
1
]),
"loss_bbox_aux"
+
postfix
:
paddle
.
paddle
.
zeros
([
1
]),
...
...
@@ -175,9 +175,11 @@ class DETRLoss(nn.Layer):
loss_bbox
=
[]
loss_giou
=
[]
for
aux_boxes
,
aux_logits
in
zip
(
boxes
,
logits
):
if
match_indices
is
None
:
if
dn_
match_indices
is
None
:
match_indices
=
self
.
matcher
(
aux_boxes
,
aux_logits
,
gt_bbox
,
gt_class
)
else
:
match_indices
=
dn_match_indices
loss_class
.
append
(
self
.
_get_loss_class
(
aux_logits
,
gt_class
,
match_indices
,
bg_index
,
num_gts
,
postfix
)[
'loss_class'
+
...
...
@@ -237,11 +239,13 @@ class DETRLoss(nn.Layer):
gt_mask (List(Tensor), optional): list[[n, H, W]]
postfix (str): postfix of loss name
"""
if
"match_indices"
in
kwargs
:
match_indices
=
kwargs
[
"match_indices"
]
else
:
dn_match_indices
=
kwargs
.
get
(
"dn_match_indices"
,
None
)
if
dn_match_indices
is
None
and
(
boxes
is
not
None
and
logits
is
not
None
)
:
match_indices
=
self
.
matcher
(
boxes
[
-
1
].
detach
(),
logits
[
-
1
].
detach
(),
gt_bbox
,
gt_class
)
else
:
match_indices
=
dn_match_indices
num_gts
=
sum
(
len
(
a
)
for
a
in
gt_bbox
)
num_gts
=
paddle
.
to_tensor
([
num_gts
],
dtype
=
"float32"
)
...
...
@@ -264,13 +268,11 @@ class DETRLoss(nn.Layer):
gt_mask
,
match_indices
,
num_gts
,
postfix
))
if
self
.
aux_loss
:
if
"match_indices"
not
in
kwargs
:
match_indices
=
None
total_loss
.
update
(
self
.
_get_loss_aux
(
boxes
[:
-
1
]
if
boxes
is
not
None
else
None
,
logits
[:
-
1
]
if
logits
is
not
None
else
None
,
gt_bbox
,
gt_class
,
self
.
num_classes
,
num_gts
,
match_indices
,
postfix
))
self
.
num_classes
,
num_gts
,
dn_
match_indices
,
postfix
))
return
total_loss
...
...
@@ -292,7 +294,6 @@ class DINOLoss(DETRLoss):
total_loss
=
super
(
DINOLoss
,
self
).
forward
(
boxes
,
logits
,
gt_bbox
,
gt_class
)
# denoising training loss
if
dn_meta
is
not
None
:
dn_positive_idx
,
dn_num_group
=
\
dn_meta
[
"dn_positive_idx"
],
dn_meta
[
"dn_num_group"
]
...
...
@@ -315,13 +316,14 @@ class DINOLoss(DETRLoss):
else
:
dn_match_indices
,
dn_num_group
=
None
,
1.
# compute denoising training loss
dn_loss
=
super
(
DINOLoss
,
self
).
forward
(
dn_out_bboxes
,
dn_out_logits
,
gt_bbox
,
gt_class
,
postfix
=
"_dn"
,
match_indices
=
dn_match_indices
,
dn_
match_indices
=
dn_match_indices
,
dn_num_group
=
dn_num_group
)
total_loss
.
update
(
dn_loss
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录