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
RODNet
Commits
62e303cc
Commit
62e303cc
authored
Mar 13, 2022
by
Yizhou Wang
Browse files
update config files
parent
d87ae3ba
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
237 additions
and
7 deletions
+237
-7
configs/config_rodnet_cdc_win16.py
configs/config_rodnet_cdc_win16.py
+1
-1
configs/config_rodnet_cdc_win16_mini.py
configs/config_rodnet_cdc_win16_mini.py
+1
-1
configs/config_rodnet_cdc_win16_mnet.py
configs/config_rodnet_cdc_win16_mnet.py
+76
-0
configs/config_rodnet_cdcv2_win16_mnet_dcn.py
configs/config_rodnet_cdcv2_win16_mnet_dcn.py
+1
-1
configs/config_rodnet_hg1_win16.py
configs/config_rodnet_hg1_win16.py
+1
-1
configs/config_rodnet_hg1_win16_mnet.py
configs/config_rodnet_hg1_win16_mnet.py
+77
-0
configs/config_rodnet_hg1v2_win16_mnet_dcn.py
configs/config_rodnet_hg1v2_win16_mnet_dcn.py
+1
-1
configs/config_rodnet_hg1wi_win16.py
configs/config_rodnet_hg1wi_win16.py
+1
-1
configs/config_rodnet_hg1wi_win16_mnet.py
configs/config_rodnet_hg1wi_win16_mnet.py
+77
-0
configs/config_rodnet_hg1wiv2_win16_mnet_dcn.py
configs/config_rodnet_hg1wiv2_win16_mnet_dcn.py
+1
-1
No files found.
configs/config_rodnet_cdc_win16.py
View file @
62e303cc
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
model_cfg
=
dict
(
model_cfg
=
dict
(
type
=
'CDC'
,
type
=
'CDC'
,
name
=
'rodnet-cdc-win16
-wobg
'
,
name
=
'rodnet-cdc-win16'
,
max_dets
=
20
,
max_dets
=
20
,
peak_thres
=
0.3
,
peak_thres
=
0.3
,
ols_thres
=
0.3
,
ols_thres
=
0.3
,
...
...
configs/config_rodnet_cdc_win16_mini.py
View file @
62e303cc
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
model_cfg
=
dict
(
model_cfg
=
dict
(
type
=
'CDC'
,
type
=
'CDC'
,
name
=
'rodnet-cdc-win16
-wobg
'
,
name
=
'rodnet-cdc-win16'
,
max_dets
=
20
,
max_dets
=
20
,
peak_thres
=
0.3
,
peak_thres
=
0.3
,
ols_thres
=
0.3
,
ols_thres
=
0.3
,
...
...
configs/config_rodnet_cdc_win16_mnet.py
0 → 100644
View file @
62e303cc
dataset_cfg
=
dict
(
dataset_name
=
'ROD2021'
,
base_root
=
"/mnt/disk1/CRUW/ROD2021"
,
data_root
=
"/mnt/disk1/CRUW/ROD2021/sequences"
,
anno_root
=
"/mnt/disk1/CRUW/ROD2021/annotations"
,
anno_ext
=
'.txt'
,
train
=
dict
(
subdir
=
'train'
,
# seqs=[], # can choose from the subdir folder
),
valid
=
dict
(
subdir
=
'valid'
,
seqs
=
[],
),
test
=
dict
(
subdir
=
'test'
,
# seqs=[], # can choose from the subdir folder
),
demo
=
dict
(
subdir
=
'demo'
,
seqs
=
[],
),
)
model_cfg
=
dict
(
type
=
'CDC'
,
name
=
'rodnet-cdc-win16-mnet'
,
max_dets
=
20
,
peak_thres
=
0.3
,
ols_thres
=
0.3
,
mnet_cfg
=
(
4
,
32
),
)
confmap_cfg
=
dict
(
confmap_sigmas
=
{
'pedestrian'
:
15
,
'cyclist'
:
20
,
'car'
:
30
,
# 'van': 40,
# 'truck': 50,
},
confmap_sigmas_interval
=
{
'pedestrian'
:
[
5
,
15
],
'cyclist'
:
[
8
,
20
],
'car'
:
[
10
,
30
],
# 'van': [15, 40],
# 'truck': [20, 50],
},
confmap_length
=
{
'pedestrian'
:
1
,
'cyclist'
:
2
,
'car'
:
3
,
# 'van': 4,
# 'truck': 5,
}
)
train_cfg
=
dict
(
n_epoch
=
100
,
batch_size
=
4
,
lr
=
0.00001
,
lr_step
=
5
,
# lr will decrease 10 times after lr_step epoches
win_size
=
16
,
train_step
=
1
,
train_stride
=
4
,
log_step
=
100
,
save_step
=
10000
,
)
test_cfg
=
dict
(
test_step
=
1
,
test_stride
=
8
,
rr_min
=
1.0
,
# min radar range
rr_max
=
20.0
,
# max radar range
ra_min
=-
60.0
,
# min radar angle
ra_max
=
60.0
,
# max radar angle
)
configs/config_rodnet_
v2_
cdc_win16.py
→
configs/config_rodnet_cdc
v2
_win16
_mnet_dcn
.py
View file @
62e303cc
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
model_cfg
=
dict
(
model_cfg
=
dict
(
type
=
'CDCv2'
,
type
=
'CDCv2'
,
name
=
'rodnet-cdc
-
v2-win16-
wobg
'
,
name
=
'rodnet-cdcv2-win16-
mnet-dcn
'
,
max_dets
=
20
,
max_dets
=
20
,
peak_thres
=
0.3
,
peak_thres
=
0.3
,
ols_thres
=
0.3
,
ols_thres
=
0.3
,
...
...
configs/config_rodnet_hg1_win16.py
View file @
62e303cc
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
model_cfg
=
dict
(
model_cfg
=
dict
(
type
=
'HG'
,
type
=
'HG'
,
name
=
'rodnet-hg1-win16
-wobg
'
,
name
=
'rodnet-hg1-win16'
,
max_dets
=
20
,
max_dets
=
20
,
peak_thres
=
0.4
,
peak_thres
=
0.4
,
ols_thres
=
0.3
,
ols_thres
=
0.3
,
...
...
configs/config_rodnet_hg1_win16_mnet.py
0 → 100644
View file @
62e303cc
dataset_cfg
=
dict
(
dataset_name
=
'ROD2021'
,
base_root
=
"/mnt/disk2/CRUW/ROD2021"
,
data_root
=
"/mnt/disk2/CRUW/ROD2021/sequences"
,
anno_root
=
"/mnt/disk2/CRUW/ROD2021/annotations"
,
anno_ext
=
'.txt'
,
train
=
dict
(
subdir
=
'train'
,
# seqs=[], # can choose from the subdir folder
),
valid
=
dict
(
subdir
=
'valid'
,
seqs
=
[],
),
test
=
dict
(
subdir
=
'test'
,
# seqs=[], # can choose from the subdir folder
),
demo
=
dict
(
subdir
=
'demo'
,
seqs
=
[],
),
)
model_cfg
=
dict
(
type
=
'HG'
,
name
=
'rodnet-hg1-win16-mnet'
,
max_dets
=
20
,
peak_thres
=
0.4
,
ols_thres
=
0.3
,
stacked_num
=
1
,
mnet_cfg
=
(
4
,
32
),
)
confmap_cfg
=
dict
(
confmap_sigmas
=
{
'pedestrian'
:
15
,
'cyclist'
:
20
,
'car'
:
30
,
# 'van': 40,
# 'truck': 50,
},
confmap_sigmas_interval
=
{
'pedestrian'
:
[
5
,
15
],
'cyclist'
:
[
8
,
20
],
'car'
:
[
10
,
30
],
# 'van': [15, 40],
# 'truck': [20, 50],
},
confmap_length
=
{
'pedestrian'
:
1
,
'cyclist'
:
2
,
'car'
:
3
,
# 'van': 4,
# 'truck': 5,
}
)
train_cfg
=
dict
(
n_epoch
=
50
,
batch_size
=
4
,
lr
=
0.00001
,
lr_step
=
5
,
# lr will decrease 10 times after lr_step epoches
win_size
=
16
,
train_step
=
1
,
train_stride
=
4
,
log_step
=
100
,
save_step
=
10000
,
)
test_cfg
=
dict
(
test_step
=
1
,
test_stride
=
8
,
rr_min
=
1.0
,
# min radar range
rr_max
=
20.0
,
# max radar range
ra_min
=-
60.0
,
# min radar angle
ra_max
=
60.0
,
# max radar angle
)
configs/config_rodnet_
v2_
hg1_win16.py
→
configs/config_rodnet_hg1
v2
_win16
_mnet_dcn
.py
View file @
62e303cc
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
model_cfg
=
dict
(
model_cfg
=
dict
(
type
=
'HGv2'
,
type
=
'HGv2'
,
name
=
'rodnet-hg1
-
v2-win16-
wobg
'
,
name
=
'rodnet-hg1v2-win16-
mnet-dcn
'
,
max_dets
=
20
,
max_dets
=
20
,
peak_thres
=
0.4
,
peak_thres
=
0.4
,
ols_thres
=
0.3
,
ols_thres
=
0.3
,
...
...
configs/config_rodnet_hg1wi_win16.py
View file @
62e303cc
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
model_cfg
=
dict
(
model_cfg
=
dict
(
type
=
'HGwI'
,
type
=
'HGwI'
,
name
=
'rodnet-hg1wi-win16
-wobg
'
,
name
=
'rodnet-hg1wi-win16'
,
max_dets
=
20
,
max_dets
=
20
,
peak_thres
=
0.3
,
peak_thres
=
0.3
,
ols_thres
=
0.3
,
ols_thres
=
0.3
,
...
...
configs/config_rodnet_hg1wi_win16_mnet.py
0 → 100644
View file @
62e303cc
dataset_cfg
=
dict
(
dataset_name
=
'ROD2021'
,
base_root
=
"/mnt/disk1/CRUW/ROD2021"
,
data_root
=
"/mnt/disk1/CRUW/ROD2021/sequences"
,
anno_root
=
"/mnt/disk1/CRUW/ROD2021/annotations"
,
anno_ext
=
'.txt'
,
train
=
dict
(
subdir
=
'train'
,
# seqs=[], # can choose from the subdir folder
),
valid
=
dict
(
subdir
=
'valid'
,
# seqs=[],
),
test
=
dict
(
subdir
=
'test'
,
# seqs=[], # can choose from the subdir folder
),
demo
=
dict
(
subdir
=
'demo'
,
seqs
=
[],
),
)
model_cfg
=
dict
(
type
=
'HGwI'
,
name
=
'rodnet-hg1wi-win16-mnet'
,
max_dets
=
20
,
peak_thres
=
0.3
,
ols_thres
=
0.3
,
stacked_num
=
1
,
mnet_cfg
=
(
4
,
32
),
)
confmap_cfg
=
dict
(
confmap_sigmas
=
{
'pedestrian'
:
15
,
'cyclist'
:
20
,
'car'
:
30
,
# 'van': 40,
# 'truck': 50,
},
confmap_sigmas_interval
=
{
'pedestrian'
:
[
5
,
15
],
'cyclist'
:
[
8
,
20
],
'car'
:
[
10
,
30
],
# 'van': [15, 40],
# 'truck': [20, 50],
},
confmap_length
=
{
'pedestrian'
:
1
,
'cyclist'
:
2
,
'car'
:
3
,
# 'van': 4,
# 'truck': 5,
}
)
train_cfg
=
dict
(
n_epoch
=
100
,
batch_size
=
2
,
lr
=
0.00001
,
lr_step
=
5
,
# lr will decrease 10 times after lr_step epoches
win_size
=
16
,
train_step
=
1
,
train_stride
=
4
,
log_step
=
100
,
save_step
=
10000
,
)
test_cfg
=
dict
(
test_step
=
1
,
test_stride
=
8
,
rr_min
=
1.0
,
# min radar range
rr_max
=
20.0
,
# max radar range
ra_min
=-
60.0
,
# min radar angle
ra_max
=
60.0
,
# max radar angle
)
configs/config_rodnet_
v2_
hg1wi_win16.py
→
configs/config_rodnet_hg1wi
v2
_win16
_mnet_dcn
.py
View file @
62e303cc
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
...
@@ -24,7 +24,7 @@ dataset_cfg = dict(
model_cfg
=
dict
(
model_cfg
=
dict
(
type
=
'HGwIv2'
,
type
=
'HGwIv2'
,
name
=
'rodnet-hg1wi
-
v2-win16-
wobg
'
,
name
=
'rodnet-hg1wiv2-win16-
mnet-dcn
'
,
max_dets
=
20
,
max_dets
=
20
,
peak_thres
=
0.3
,
peak_thres
=
0.3
,
ols_thres
=
0.3
,
ols_thres
=
0.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