|
1 | 1 | from .context_block import ContextBlock
|
2 |
| -from .conv_ws import ConvWS2d, conv_ws_2d |
3 | 2 | from .corner_pool import CornerPool
|
4 |
| -from .dcn import (DeformConv, DeformConvPack, DeformRoIPooling, |
5 |
| - DeformRoIPoolingPack, ModulatedDeformConv, |
6 |
| - ModulatedDeformConvPack, ModulatedDeformRoIPoolingPack, |
7 |
| - deform_conv, deform_roi_pooling, modulated_deform_conv) |
8 | 3 | from .generalized_attention import GeneralizedAttention
|
9 | 4 | from .masked_conv import MaskedConv2d
|
10 | 5 | from .nms import batched_nms, nms, nms_match, soft_nms
|
|
14 | 9 | rel_roi_point_to_rel_img_point)
|
15 | 10 | from .roi_align import RoIAlign, roi_align
|
16 | 11 | from .roi_pool import RoIPool, roi_pool
|
17 |
| -from .saconv import SAConv2d |
18 | 12 | from .sigmoid_focal_loss import SigmoidFocalLoss, sigmoid_focal_loss
|
19 | 13 | from .utils import get_compiler_version, get_compiling_cuda_version
|
20 | 14 | from .wrappers import Conv2d, ConvTranspose2d, Linear, MaxPool2d
|
|
26 | 20 |
|
27 | 21 | __all__ = [
|
28 | 22 | 'nms', 'soft_nms', 'RoIAlign', 'roi_align', 'RoIPool', 'roi_pool',
|
29 |
| - 'DeformConv', 'DeformConvPack', 'DeformRoIPooling', 'DeformRoIPoolingPack', |
30 |
| - 'ModulatedDeformRoIPoolingPack', 'ModulatedDeformConv', |
31 |
| - 'ModulatedDeformConvPack', 'deform_conv', 'modulated_deform_conv', |
32 |
| - 'deform_roi_pooling', 'SigmoidFocalLoss', 'sigmoid_focal_loss', |
33 |
| - 'MaskedConv2d', 'ContextBlock', 'GeneralizedAttention', 'NonLocal2D', |
34 |
| - 'get_compiler_version', 'get_compiling_cuda_version', 'ConvWS2d', |
35 |
| - 'conv_ws_2d', 'build_plugin_layer', 'batched_nms', 'Conv2d', |
| 23 | + 'SigmoidFocalLoss', 'sigmoid_focal_loss', 'MaskedConv2d', 'ContextBlock', |
| 24 | + 'GeneralizedAttention', 'NonLocal2D', 'get_compiler_version', |
| 25 | + 'get_compiling_cuda_version', 'build_plugin_layer', 'batched_nms', 'Conv2d', |
36 | 26 | 'ConvTranspose2d', 'MaxPool2d', 'Linear', 'nms_match', 'CornerPool',
|
37 | 27 | 'point_sample', 'rel_roi_point_to_rel_img_point', 'SimpleRoIAlign',
|
38 |
| - 'SAConv2d', |
39 | 28 |
|
40 | 29 | 'roi_align_rotated', 'RoIAlignRotated', 'obb_nms', 'BT_nms',
|
41 | 30 | 'arb_batched_nms', 'obb_overlaps', 'convex_sort'
|
|
0 commit comments