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
a225e961
Commit
a225e961
authored
May 12, 2020
by
zhangwenwei
Browse files
Fix tweaks
parent
0d385553
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
configs/kitti/dv_mvx-v2_second_secfpn_fpn-fusion_adamw_2x8_80e_kitti-3d-3class.py
...second_secfpn_fpn-fusion_adamw_2x8_80e_kitti-3d-3class.py
+1
-1
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
tests/test_fpn.py
tests/test_fpn.py
+1
-1
No files found.
configs/kitti/dv_mvx-v2_second_secfpn_fpn-fusion_adamw_2x8_80e_kitti-3d-3class.py
View file @
a225e961
...
@@ -63,7 +63,7 @@ model = dict(
...
@@ -63,7 +63,7 @@ model = dict(
type
=
'SECONDFPN'
,
type
=
'SECONDFPN'
,
in_channels
=
[
128
,
256
],
in_channels
=
[
128
,
256
],
upsample_strides
=
[
1
,
2
],
upsample_strides
=
[
1
,
2
],
num_upsample_filter
s
=
[
256
,
256
],
out_channel
s
=
[
256
,
256
],
),
),
pts_bbox_head
=
dict
(
pts_bbox_head
=
dict
(
type
=
'SECONDHead'
,
type
=
'SECONDHead'
,
...
...
configs/nus/hv_pointpillars_secfpn_sbn-all_4x8_2x_nus-3d.py
View file @
a225e961
...
@@ -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
],
num_upsample_filter
s
=
[
128
,
128
,
128
],
out_channel
s
=
[
128
,
128
,
128
],
),
),
pts_bbox_head
=
dict
(
pts_bbox_head
=
dict
(
type
=
'Anchor3DVeloHead'
,
type
=
'Anchor3DVeloHead'
,
...
...
tests/test_fpn.py
View file @
a225e961
...
@@ -8,7 +8,7 @@ def test_secfpn():
...
@@ -8,7 +8,7 @@ def test_secfpn():
upsample_strides
=
[
1
,
2
],
upsample_strides
=
[
1
,
2
],
out_channels
=
[
4
,
6
],
out_channels
=
[
4
,
6
],
)
)
from
mmdet.models.builder
s
import
build_neck
from
mmdet.models.builder
import
build_neck
neck
=
build_neck
(
neck_cfg
)
neck
=
build_neck
(
neck_cfg
)
assert
neck
.
deblocks
[
0
][
0
].
in_channels
==
2
assert
neck
.
deblocks
[
0
][
0
].
in_channels
==
2
assert
neck
.
deblocks
[
1
][
0
].
in_channels
==
3
assert
neck
.
deblocks
[
1
][
0
].
in_channels
==
3
...
...
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