iou_aware_loss.py 1.8 KB
Newer Older
Q
qingqing01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# 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

W
wangxinxin08 已提交
19
import paddle
Q
qingqing01 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
import paddle.nn.functional as F
from ppdet.core.workspace import register, serializable
from .iou_loss import IouLoss
from ..utils import xywh2xyxy, bbox_iou, decode_yolo


@register
@serializable
class IouAwareLoss(IouLoss):
    """
    iou aware loss, see https://arxiv.org/abs/1912.05992
    Args:
        loss_weight (float): iou aware loss weight, default is 1.0
        max_height (int): max height of input to support random shape input
        max_width (int): max width of input to support random shape input
    """

W
wangxinxin08 已提交
37
    def __init__(self, loss_weight=1.0, giou=False, diou=False, ciou=False):
Q
qingqing01 已提交
38 39 40
        super(IouAwareLoss, self).__init__(
            loss_weight=loss_weight, giou=giou, diou=diou, ciou=ciou)

W
wangxinxin08 已提交
41
    def __call__(self, ioup, pbox, gbox):
Q
qingqing01 已提交
42 43 44
        iou = bbox_iou(
            pbox, gbox, giou=self.giou, diou=self.diou, ciou=self.ciou)
        iou.stop_gradient = True
W
wangxinxin08 已提交
45 46
        ioup = F.sigmoid(ioup)
        loss_iou_aware = (-iou * paddle.log(ioup)).sum(-2, keepdim=True)
Q
qingqing01 已提交
47 48
        loss_iou_aware = loss_iou_aware * self.loss_weight
        return loss_iou_aware