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
945edf21
Commit
945edf21
authored
May 12, 2020
by
zhangwenwei
Browse files
Fix config bug
parent
6d903adc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
configs/nus/hv_pointpillars_secfpn_sbn-all_4x8_2x_nus-3d.py
configs/nus/hv_pointpillars_secfpn_sbn-all_4x8_2x_nus-3d.py
+1
-1
mmdet3d/models/backbones/second.py
mmdet3d/models/backbones/second.py
+1
-1
No files found.
configs/nus/hv_pointpillars_secfpn_sbn-all_4x8_2x_nus-3d.py
View file @
945edf21
...
@@ -41,7 +41,7 @@ model = dict(
...
@@ -41,7 +41,7 @@ model = dict(
norm_cfg
=
dict
(
type
=
'naiveSyncBN2d'
,
eps
=
1e-3
,
momentum
=
0.01
),
norm_cfg
=
dict
(
type
=
'naiveSyncBN2d'
,
eps
=
1e-3
,
momentum
=
0.01
),
in_channels
=
[
64
,
128
,
256
],
in_channels
=
[
64
,
128
,
256
],
upsample_strides
=
[
1
,
2
,
4
],
upsample_strides
=
[
1
,
2
,
4
],
out_channel
s
=
[
128
,
128
,
128
],
num_upsample_filter
s
=
[
128
,
128
,
128
],
),
),
pts_bbox_head
=
dict
(
pts_bbox_head
=
dict
(
type
=
'Anchor3DVeloHead'
,
type
=
'Anchor3DVeloHead'
,
...
...
mmdet3d/models/backbones/second.py
View file @
945edf21
...
@@ -7,7 +7,7 @@ from mmdet.models import BACKBONES
...
@@ -7,7 +7,7 @@ from mmdet.models import BACKBONES
@
BACKBONES
.
register_module
()
@
BACKBONES
.
register_module
()
class
SECOND
(
nn
.
Module
):
class
SECOND
(
nn
.
Module
):
"""Backbone network for SECOND/PointPillars/MVXNet
"""Backbone network for SECOND/PointPillars/
PartA2/
MVXNet
Args:
Args:
in_channels (int): Input channels
in_channels (int): Input channels
...
...
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