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
6fd688a8
Commit
6fd688a8
authored
Sep 18, 2020
by
zhangwenwei
Browse files
fix docs' version issue
parent
cac7cecd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
25 deletions
+16
-25
docs/conf.py
docs/conf.py
+12
-21
mmdet3d/models/backbones/multi_backbone.py
mmdet3d/models/backbones/multi_backbone.py
+4
-4
No files found.
docs/conf.py
View file @
6fd688a8
...
@@ -23,9 +23,17 @@ project = 'MMDetection3D'
...
@@ -23,9 +23,17 @@ project = 'MMDetection3D'
copyright
=
'2020-2023, OpenMMLab'
copyright
=
'2020-2023, OpenMMLab'
author
=
'MMDetection3D Authors'
author
=
'MMDetection3D Authors'
version_file
=
'../mmdet3d/version.py'
def
get_version
():
with
open
(
version_file
,
'r'
)
as
f
:
exec
(
compile
(
f
.
read
(),
version_file
,
'exec'
))
return
locals
()[
'__version__'
]
# The full version, including alpha/beta/rc tags
# The full version, including alpha/beta/rc tags
with
open
(
'../mmdet3d/VERSION'
,
'r'
)
as
f
:
release
=
get_version
()
release
=
f
.
read
().
strip
()
# -- General configuration ---------------------------------------------------
# -- General configuration ---------------------------------------------------
...
@@ -42,25 +50,8 @@ extensions = [
...
@@ -42,25 +50,8 @@ extensions = [
]
]
autodoc_mock_imports
=
[
autodoc_mock_imports
=
[
'cv2'
,
'cv2'
,
'matplotlib'
,
'nuscenes'
,
'PIL'
,
'pycocotools'
,
'pyquaternion'
,
'matplotlib'
,
'terminaltables'
,
'mmcv'
,
'mmdet'
,
'mmdet3d.version'
,
'mmdet3d.ops'
'nuscenes'
,
'PIL'
,
'pycocotools'
,
'pyquaternion'
,
'terminaltables'
,
'mmcv'
,
'mmdet'
,
'mmdet3d.version'
,
'mmdet3d.ops.ball_query'
,
'mmdet3d.ops.furthest_point_sample'
,
'mmdet3d.ops.gather_points'
,
'mmdet3d.ops.group_points'
,
'mmdet3d.ops.interpolate'
,
'mmdet3d.ops.roiaware_pool3d'
,
'mmdet3d.ops.spconv'
,
'mmdet3d.ops.voxel.voxel_layer'
,
'mmdet3d.ops.iou3d'
,
]
]
autosectionlabel_prefix_document
=
True
autosectionlabel_prefix_document
=
True
...
...
mmdet3d/models/backbones/multi_backbone.py
View file @
6fd688a8
...
@@ -97,13 +97,13 @@ class MultiBackbone(nn.Module):
...
@@ -97,13 +97,13 @@ class MultiBackbone(nn.Module):
dict[str, list[torch.Tensor]]: Outputs from multiple backbones.
dict[str, list[torch.Tensor]]: Outputs from multiple backbones.
- fp_xyz[suffix] (list[torch.Tensor]): The coordinates of
- fp_xyz[suffix] (list[torch.Tensor]): The coordinates of
each fp features.
each fp features.
- fp_features[suffix] (list[torch.Tensor]): The features
- fp_features[suffix] (list[torch.Tensor]): The features
from each Feature Propagate Layers.
from each Feature Propagate Layers.
- fp_indices[suffix] (list[torch.Tensor]): Indices of the
- fp_indices[suffix] (list[torch.Tensor]): Indices of the
input points.
input points.
- hd_feature (torch.Tensor): The aggregation feature
- hd_feature (torch.Tensor): The aggregation feature
from multiple backbones.
from multiple backbones.
"""
"""
ret
=
{}
ret
=
{}
fp_features
=
[]
fp_features
=
[]
...
...
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