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
bf02d499
Commit
bf02d499
authored
Nov 15, 2022
by
Jingwei Zhang
Committed by
ZwwWayne
Dec 03, 2022
Browse files
[Fix] update the key name of modules from mmdet in cfgs (#2011)
parent
8eeb8136
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
6 deletions
+8
-6
configs/_base_/models/cascade-mask-rcnn_r50_fpn.py
configs/_base_/models/cascade-mask-rcnn_r50_fpn.py
+1
-0
configs/_base_/models/imvotenet.py
configs/_base_/models/imvotenet.py
+3
-4
configs/_base_/models/mask-rcnn_r50_fpn.py
configs/_base_/models/mask-rcnn_r50_fpn.py
+1
-0
configs/nuimages/htc_r50_fpn_head-without-semantic_1x_nuim.py
...igs/nuimages/htc_r50_fpn_head-without-semantic_1x_nuim.py
+1
-0
configs/second/second_hv_secfpn_8xb6-80e_kitti-3d-car.py
configs/second/second_hv_secfpn_8xb6-80e_kitti-3d-car.py
+1
-1
configs/ssn/ssn_hv_secfpn_sbn-all_16xb2-2x_lyft-3d.py
configs/ssn/ssn_hv_secfpn_sbn-all_16xb2-2x_lyft-3d.py
+1
-1
No files found.
configs/_base_/models/cascade-mask-rcnn_r50_fpn.py
View file @
bf02d499
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
model
=
dict
(
model
=
dict
(
type
=
'CascadeRCNN'
,
type
=
'CascadeRCNN'
,
pretrained
=
'torchvision://resnet50'
,
pretrained
=
'torchvision://resnet50'
,
_scope_
=
'mmdet'
,
backbone
=
dict
(
backbone
=
dict
(
type
=
'ResNet'
,
type
=
'ResNet'
,
depth
=
50
,
depth
=
50
,
...
...
configs/_base_/models/imvotenet.py
View file @
bf02d499
...
@@ -63,9 +63,9 @@ model = dict(
...
@@ -63,9 +63,9 @@ model = dict(
# model training and testing settings
# model training and testing settings
train_cfg
=
dict
(
train_cfg
=
dict
(
_scope_
=
'mmdet'
,
img_rpn
=
dict
(
img_rpn
=
dict
(
assigner
=
dict
(
assigner
=
dict
(
_scope_
=
'mmdet'
,
type
=
'MaxIoUAssigner'
,
type
=
'MaxIoUAssigner'
,
pos_iou_thr
=
0.7
,
pos_iou_thr
=
0.7
,
neg_iou_thr
=
0.3
,
neg_iou_thr
=
0.3
,
...
@@ -73,7 +73,7 @@ model = dict(
...
@@ -73,7 +73,7 @@ model = dict(
match_low_quality
=
True
,
match_low_quality
=
True
,
ignore_iof_thr
=-
1
),
ignore_iof_thr
=-
1
),
sampler
=
dict
(
sampler
=
dict
(
type
=
'
mmdet.
RandomSampler'
,
type
=
'RandomSampler'
,
num
=
256
,
num
=
256
,
pos_fraction
=
0.5
,
pos_fraction
=
0.5
,
neg_pos_ub
=-
1
,
neg_pos_ub
=-
1
,
...
@@ -90,7 +90,6 @@ model = dict(
...
@@ -90,7 +90,6 @@ model = dict(
min_bbox_size
=
0
),
min_bbox_size
=
0
),
img_rcnn
=
dict
(
img_rcnn
=
dict
(
assigner
=
dict
(
assigner
=
dict
(
_scope_
=
'mmdet'
,
type
=
'MaxIoUAssigner'
,
type
=
'MaxIoUAssigner'
,
pos_iou_thr
=
0.5
,
pos_iou_thr
=
0.5
,
neg_iou_thr
=
0.5
,
neg_iou_thr
=
0.5
,
...
@@ -98,7 +97,7 @@ model = dict(
...
@@ -98,7 +97,7 @@ model = dict(
match_low_quality
=
False
,
match_low_quality
=
False
,
ignore_iof_thr
=-
1
),
ignore_iof_thr
=-
1
),
sampler
=
dict
(
sampler
=
dict
(
type
=
'
mmdet.
RandomSampler'
,
type
=
'RandomSampler'
,
num
=
512
,
num
=
512
,
pos_fraction
=
0.25
,
pos_fraction
=
0.25
,
neg_pos_ub
=-
1
,
neg_pos_ub
=-
1
,
...
...
configs/_base_/models/mask-rcnn_r50_fpn.py
View file @
bf02d499
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
model
=
dict
(
model
=
dict
(
type
=
'MaskRCNN'
,
type
=
'MaskRCNN'
,
pretrained
=
'torchvision://resnet50'
,
pretrained
=
'torchvision://resnet50'
,
_scope_
=
'mmdet'
,
backbone
=
dict
(
backbone
=
dict
(
type
=
'ResNet'
,
type
=
'ResNet'
,
depth
=
50
,
depth
=
50
,
...
...
configs/nuimages/htc_r50_fpn_head-without-semantic_1x_nuim.py
View file @
bf02d499
...
@@ -6,6 +6,7 @@ _base_ = [
...
@@ -6,6 +6,7 @@ _base_ = [
model
=
dict
(
model
=
dict
(
type
=
'HybridTaskCascade'
,
type
=
'HybridTaskCascade'
,
pretrained
=
'torchvision://resnet50'
,
pretrained
=
'torchvision://resnet50'
,
_scope_
=
'mmdet'
,
backbone
=
dict
(
backbone
=
dict
(
type
=
'ResNet'
,
type
=
'ResNet'
,
depth
=
50
,
depth
=
50
,
...
...
configs/second/second_hv_secfpn_8xb6-80e_kitti-3d-car.py
View file @
bf02d499
...
@@ -19,7 +19,7 @@ model = dict(
...
@@ -19,7 +19,7 @@ model = dict(
train_cfg
=
dict
(
train_cfg
=
dict
(
_delete_
=
True
,
_delete_
=
True
,
assigner
=
dict
(
assigner
=
dict
(
type
=
'MaxIoUAssigner'
,
type
=
'Max
3D
IoUAssigner'
,
iou_calculator
=
dict
(
type
=
'BboxOverlapsNearest3D'
),
iou_calculator
=
dict
(
type
=
'BboxOverlapsNearest3D'
),
pos_iou_thr
=
0.6
,
pos_iou_thr
=
0.6
,
neg_iou_thr
=
0.45
,
neg_iou_thr
=
0.45
,
...
...
configs/ssn/ssn_hv_secfpn_sbn-all_16xb2-2x_lyft-3d.py
View file @
bf02d499
...
@@ -174,7 +174,7 @@ model = dict(
...
@@ -174,7 +174,7 @@ model = dict(
min_pos_iou
=
0.4
,
min_pos_iou
=
0.4
,
ignore_iof_thr
=-
1
),
ignore_iof_thr
=-
1
),
dict
(
# animal
dict
(
# animal
type
=
'MaxIoUAssigner'
,
type
=
'Max
3D
IoUAssigner'
,
iou_calculator
=
dict
(
type
=
'BboxOverlapsNearest3D'
),
iou_calculator
=
dict
(
type
=
'BboxOverlapsNearest3D'
),
pos_iou_thr
=
0.55
,
pos_iou_thr
=
0.55
,
neg_iou_thr
=
0.4
,
neg_iou_thr
=
0.4
,
...
...
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