__init__.py 1.2 KB
Newer Older
K
Kaipeng Deng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright (c) 2019 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 . import yolo_loss
littletomatodonkey's avatar
littletomatodonkey 已提交
18 19 20
from . import smooth_l1_loss
from . import giou_loss
from . import diou_loss
C
CodesFarmer 已提交
21
from . import iou_loss
littletomatodonkey's avatar
littletomatodonkey 已提交
22
from . import balanced_l1_loss
23
from . import fcos_loss
24
from . import diou_loss_yolo
L
lxastro 已提交
25
from . import iou_aware_loss
26
from . import ssd_with_lmk_loss
G
Guanghua Yu 已提交
27
from . import solov2_loss
K
Kaipeng Deng 已提交
28

L
lxastro 已提交
29
from .iou_aware_loss import *
K
Kaipeng Deng 已提交
30
from .yolo_loss import *
littletomatodonkey's avatar
littletomatodonkey 已提交
31 32 33
from .smooth_l1_loss import *
from .giou_loss import *
from .diou_loss import *
C
CodesFarmer 已提交
34
from .iou_loss import *
littletomatodonkey's avatar
littletomatodonkey 已提交
35
from .balanced_l1_loss import *
36
from .fcos_loss import *
37
from .diou_loss_yolo import *
G
Guanghua Yu 已提交
38 39
from .ssd_with_lmk_loss import *
from .solov2_loss import *