__init__.py 1.1 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
K
Kaipeng Deng 已提交
26

L
lxastro 已提交
27
from .iou_aware_loss import *
K
Kaipeng Deng 已提交
28
from .yolo_loss import *
littletomatodonkey's avatar
littletomatodonkey 已提交
29 30 31
from .smooth_l1_loss import *
from .giou_loss import *
from .diou_loss import *
C
CodesFarmer 已提交
32
from .iou_loss import *
littletomatodonkey's avatar
littletomatodonkey 已提交
33
from .balanced_l1_loss import *
34
from .fcos_loss import *
35
from .diou_loss_yolo import *