You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
764 B
16 lines
764 B
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .classfication_loss import BCELoss
|
|
from .heatmap_loss import AdaptiveWingLoss
|
|
from .mesh_loss import GANLoss, MeshLoss
|
|
from .mse_loss import JointsMSELoss, JointsOHKMMSELoss
|
|
from .multi_loss_factory import AELoss, HeatmapLoss, MultiLossFactory
|
|
from .regression_loss import (BoneLoss, L1Loss, MPJPELoss, MSELoss,
|
|
SemiSupervisionLoss, SmoothL1Loss, SoftWingLoss,
|
|
WingLoss)
|
|
|
|
__all__ = [
|
|
'JointsMSELoss', 'JointsOHKMMSELoss', 'HeatmapLoss', 'AELoss',
|
|
'MultiLossFactory', 'MeshLoss', 'GANLoss', 'SmoothL1Loss', 'WingLoss',
|
|
'MPJPELoss', 'MSELoss', 'L1Loss', 'BCELoss', 'BoneLoss',
|
|
'SemiSupervisionLoss', 'SoftWingLoss', 'AdaptiveWingLoss'
|
|
]
|
|
|