__init__.py 572 Bytes
Newer Older
1
2
3
4
from .anchor_head_template import AnchorHeadTemplate
from .anchor_head_single import AnchorHeadSingle
from .point_intra_part_head import PointIntraPartOffsetHead
from .point_head_simple import PointHeadSimple
5
from .point_head_box import PointHeadBox
Gus-Guo's avatar
Gus-Guo committed
6
from .anchor_head_multi import AnchorHeadMulti
7
8
9
10
11

__all__ = {
    'AnchorHeadTemplate': AnchorHeadTemplate,
    'AnchorHeadSingle': AnchorHeadSingle,
    'PointIntraPartOffsetHead': PointIntraPartOffsetHead,
Gus-Guo's avatar
Gus-Guo committed
12
    'PointHeadSimple': PointHeadSimple,
13
    'PointHeadBox': PointHeadBox,
Gus-Guo's avatar
Gus-Guo committed
14
    'AnchorHeadMulti': AnchorHeadMulti,
15
}