__init__.py 868 Bytes
Newer Older
dingchang's avatar
dingchang committed
1
# Copyright (c) OpenMMLab. All rights reserved.
wuyuefeng's avatar
wuyuefeng committed
2
from mmdet.models.losses import FocalLoss, SmoothL1Loss, binary_cross_entropy
3

4
from .axis_aligned_iou_loss import AxisAlignedIoULoss, axis_aligned_iou_loss
wuyuefeng's avatar
Votenet  
wuyuefeng committed
5
from .chamfer_distance import ChamferDistance, chamfer_distance
6
from .lovasz_loss import LovaszLoss
ChaimZhu's avatar
ChaimZhu committed
7
from .multibin_loss import MultiBinLoss
8
from .paconv_regularization_loss import PAConvRegularizationLoss
9
from .rotated_iou_loss import RotatedIoU3DLoss, rotated_iou_3d_loss
10
from .uncertain_smooth_l1_loss import UncertainL1Loss, UncertainSmoothL1Loss
zhangwenwei's avatar
zhangwenwei committed
11

wuyuefeng's avatar
Votenet  
wuyuefeng committed
12
13
__all__ = [
    'FocalLoss', 'SmoothL1Loss', 'binary_cross_entropy', 'ChamferDistance',
14
    'chamfer_distance', 'axis_aligned_iou_loss', 'AxisAlignedIoULoss',
ChaimZhu's avatar
ChaimZhu committed
15
    'PAConvRegularizationLoss', 'UncertainL1Loss', 'UncertainSmoothL1Loss',
16
    'MultiBinLoss', 'RotatedIoU3DLoss', 'rotated_iou_3d_loss', 'LovaszLoss'
wuyuefeng's avatar
Votenet  
wuyuefeng committed
17
]