Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
mmdetection3d
Commits
573395b0
"vscode:/vscode.git/clone" did not exist on "ec1b3e36c5b606c91afc280d319f1fa5d46f4c7b"
Commit
573395b0
authored
May 06, 2020
by
zhangwenwei
Browse files
Change head files' structure
parent
8433780e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
13 deletions
+1
-13
mmdet3d/models/__init__.py
mmdet3d/models/__init__.py
+1
-2
mmdet3d/models/bbox_heads/__init__.py
mmdet3d/models/bbox_heads/__init__.py
+0
-8
mmdet3d/models/roi_extractors/__init__.py
mmdet3d/models/roi_extractors/__init__.py
+0
-3
No files found.
mmdet3d/models/__init__.py
View file @
573395b0
from
.anchor_heads
import
*
# noqa: F401,F403
from
.backbones
import
*
# noqa: F401,F403
from
.bbox_heads
import
*
# noqa: F401,F403
from
.builder
import
(
build_backbone
,
build_detector
,
build_fusion_layer
,
build_head
,
build_loss
,
build_middle_encoder
,
build_neck
,
build_roi_extractor
,
build_shared_head
,
...
...
@@ -11,7 +10,7 @@ from .losses import * # noqa: F401,F403
from
.middle_encoders
import
*
# noqa: F401,F403
from
.necks
import
*
# noqa: F401,F403
from
.registry
import
FUSION_LAYERS
,
MIDDLE_ENCODERS
,
VOXEL_ENCODERS
from
.roi_
extractor
s
import
*
# noqa: F401,F403
from
.roi_
head
s
import
*
# noqa: F401,F403
from
.voxel_encoders
import
*
# noqa: F401,F403
__all__
=
[
...
...
mmdet3d/models/bbox_heads/__init__.py
deleted
100644 → 0
View file @
8433780e
from
mmdet.models.bbox_heads
import
(
BBoxHead
,
ConvFCBBoxHead
,
DoubleConvFCBBoxHead
,
Shared2FCBBoxHead
,
Shared4Conv1FCBBoxHead
)
__all__
=
[
'BBoxHead'
,
'ConvFCBBoxHead'
,
'Shared2FCBBoxHead'
,
'Shared4Conv1FCBBoxHead'
,
'DoubleConvFCBBoxHead'
]
mmdet3d/models/roi_extractors/__init__.py
deleted
100644 → 0
View file @
8433780e
from
mmdet.models.roi_extractors.single_level
import
SingleRoIExtractor
__all__
=
[
'SingleRoIExtractor'
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment