-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Support DSVT training (#2738)
Co-authored-by: JingweiZhang12 <[email protected]> Co-authored-by: sjh <sunjiahao1999>
- Loading branch information
1 parent
5b88c7b
commit 762e3b5
Showing
14 changed files
with
875 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
from .disable_aug_hook import DisableAugHook | ||
from .dsvt import DSVT | ||
from .dsvt_head import DSVTCenterHead | ||
from .dsvt_transformer import DSVTMiddleEncoder | ||
from .dynamic_pillar_vfe import DynamicPillarVFE3D | ||
from .map2bev import PointPillarsScatter3D | ||
from .res_second import ResSECOND | ||
from .transforms_3d import ObjectRangeFilter3D, PointsRangeFilter3D | ||
from .utils import DSVTBBoxCoder | ||
|
||
__all__ = [ | ||
'DSVTCenterHead', 'DSVT', 'DSVTMiddleEncoder', 'DynamicPillarVFE3D', | ||
'PointPillarsScatter3D', 'ResSECOND', 'DSVTBBoxCoder' | ||
'PointPillarsScatter3D', 'ResSECOND', 'DSVTBBoxCoder', | ||
'ObjectRangeFilter3D', 'PointsRangeFilter3D', 'DisableAugHook' | ||
] |
Oops, something went wrong.