__init__.py 1.17 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
from ._register_onnx_ops import _register_custom_op
from .boxes import (
    nms,
    batched_nms,
    remove_small_boxes,
    clip_boxes_to_image,
    box_area,
    box_iou,
    generalized_box_iou,
    masks_to_boxes,
)
12
from .boxes import box_convert
13
from .deform_conv import deform_conv2d, DeformConv2d
14
from .feature_pyramid_network import FeaturePyramidNetwork
15
from .focal_loss import sigmoid_focal_loss
16
17
18
19
20
from .poolers import MultiScaleRoIAlign
from .ps_roi_align import ps_roi_align, PSRoIAlign
from .ps_roi_pool import ps_roi_pool, PSRoIPool
from .roi_align import roi_align, RoIAlign
from .roi_pool import roi_pool, RoIPool
21
from .stochastic_depth import stochastic_depth, StochasticDepth
22

23
24
_register_custom_op()

25
26

__all__ = [
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
    "deform_conv2d",
    "DeformConv2d",
    "nms",
    "batched_nms",
    "remove_small_boxes",
    "clip_boxes_to_image",
    "box_convert",
    "box_area",
    "box_iou",
    "generalized_box_iou",
    "roi_align",
    "RoIAlign",
    "roi_pool",
    "RoIPool",
    "ps_roi_align",
    "PSRoIAlign",
    "ps_roi_pool",
    "PSRoIPool",
    "MultiScaleRoIAlign",
    "FeaturePyramidNetwork",
    "sigmoid_focal_loss",
    "stochastic_depth",
    "StochasticDepth",
50
]