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
7e221c14
Unverified
Commit
7e221c14
authored
Sep 06, 2022
by
VVsssssk
Committed by
GitHub
Sep 06, 2022
Browse files
[Refactor] Add auto lr in cfg (#1807)
* add deploy.yaml * add auto_scale_lr in cfg * fix cfg
parent
9611c2d0
Changes
27
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
35 additions
and
0 deletions
+35
-0
configs/pointpillars/pointpillars_hv_secfpn_sbn-all_8xb2-2x_lyft-3d.py
...pillars/pointpillars_hv_secfpn_sbn-all_8xb2-2x_lyft-3d.py
+5
-0
configs/regnet/pointpillars_hv_regnet-400mf_fpn_sbn-all_8xb2-2x_lyft-3d.py
...intpillars_hv_regnet-400mf_fpn_sbn-all_8xb2-2x_lyft-3d.py
+5
-0
configs/regnet/pointpillars_hv_regnet-400mf_fpn_sbn-all_range100_8xb2-2x_lyft-3d.py
...s_hv_regnet-400mf_fpn_sbn-all_range100_8xb2-2x_lyft-3d.py
+5
-0
configs/second/second_hv_secfpn_sbn-all_16xb2-2x_waymoD5-3d-3class.py
...nd/second_hv_secfpn_sbn-all_16xb2-2x_waymoD5-3d-3class.py
+5
-0
configs/ssn/ssn_hv_secfpn_sbn-all_16xb2-2x_lyft-3d.py
configs/ssn/ssn_hv_secfpn_sbn-all_16xb2-2x_lyft-3d.py
+5
-0
configs/votenet/votenet_8xb16_sunrgbd-3d.py
configs/votenet/votenet_8xb16_sunrgbd-3d.py
+5
-0
configs/votenet/votenet_8xb8_scannet-3d.py
configs/votenet/votenet_8xb8_scannet-3d.py
+5
-0
No files found.
configs/pointpillars/pointpillars_hv_secfpn_sbn-all_8xb2-2x_lyft-3d.py
View file @
7e221c14
...
@@ -41,3 +41,8 @@ model = dict(
...
@@ -41,3 +41,8 @@ model = dict(
],
],
rotations
=
[
0
,
1.57
],
rotations
=
[
0
,
1.57
],
reshape_out
=
True
)))
reshape_out
=
True
)))
# Default setting for scaling LR automatically
# - `enable` means enable scaling LR automatically
# or not by default.
# - `base_batch_size` = (8 GPUs) x (2 samples per GPU).
auto_scale_lr
=
dict
(
enable
=
False
,
base_batch_size
=
16
)
configs/regnet/pointpillars_hv_regnet-400mf_fpn_sbn-all_8xb2-2x_lyft-3d.py
View file @
7e221c14
...
@@ -22,3 +22,8 @@ model = dict(
...
@@ -22,3 +22,8 @@ model = dict(
norm_eval
=
False
,
norm_eval
=
False
,
style
=
'pytorch'
),
style
=
'pytorch'
),
pts_neck
=
dict
(
in_channels
=
[
64
,
160
,
384
]))
pts_neck
=
dict
(
in_channels
=
[
64
,
160
,
384
]))
# Default setting for scaling LR automatically
# - `enable` means enable scaling LR automatically
# or not by default.
# - `base_batch_size` = (8 GPUs) x (2 samples per GPU).
auto_scale_lr
=
dict
(
enable
=
False
,
base_batch_size
=
16
)
configs/regnet/pointpillars_hv_regnet-400mf_fpn_sbn-all_range100_8xb2-2x_lyft-3d.py
View file @
7e221c14
...
@@ -22,3 +22,8 @@ model = dict(
...
@@ -22,3 +22,8 @@ model = dict(
norm_eval
=
False
,
norm_eval
=
False
,
style
=
'pytorch'
),
style
=
'pytorch'
),
pts_neck
=
dict
(
in_channels
=
[
64
,
160
,
384
]))
pts_neck
=
dict
(
in_channels
=
[
64
,
160
,
384
]))
# Default setting for scaling LR automatically
# - `enable` means enable scaling LR automatically
# or not by default.
# - `base_batch_size` = (8 GPUs) x (2 samples per GPU).
auto_scale_lr
=
dict
(
enable
=
False
,
base_batch_size
=
16
)
configs/second/second_hv_secfpn_sbn-all_16xb2-2x_waymoD5-3d-3class.py
View file @
7e221c14
...
@@ -140,3 +140,8 @@ test_dataloader = dict(
...
@@ -140,3 +140,8 @@ test_dataloader = dict(
test_mode
=
True
,
test_mode
=
True
,
metainfo
=
metainfo
,
metainfo
=
metainfo
,
box_type_3d
=
'LiDAR'
))
box_type_3d
=
'LiDAR'
))
# Default setting for scaling LR automatically
# - `enable` means enable scaling LR automatically
# or not by default.
# - `base_batch_size` = (16 GPUs) x (2 samples per GPU).
auto_scale_lr
=
dict
(
enable
=
False
,
base_batch_size
=
32
)
configs/ssn/ssn_hv_secfpn_sbn-all_16xb2-2x_lyft-3d.py
View file @
7e221c14
...
@@ -220,3 +220,8 @@ model = dict(
...
@@ -220,3 +220,8 @@ model = dict(
code_weight
=
[
1.0
,
1.0
,
1.0
,
1.0
,
1.0
,
1.0
,
1.0
],
code_weight
=
[
1.0
,
1.0
,
1.0
,
1.0
,
1.0
,
1.0
,
1.0
],
pos_weight
=-
1
,
pos_weight
=-
1
,
debug
=
False
)))
debug
=
False
)))
# Default setting for scaling LR automatically
# - `enable` means enable scaling LR automatically
# or not by default.
# - `base_batch_size` = (16 GPUs) x (2 samples per GPU).
auto_scale_lr
=
dict
(
enable
=
False
,
base_batch_size
=
32
)
configs/votenet/votenet_8xb16_sunrgbd-3d.py
View file @
7e221c14
...
@@ -20,3 +20,8 @@ model = dict(
...
@@ -20,3 +20,8 @@ model = dict(
[
0.404671
,
1.071108
,
1.688889
],
[
0.76584
,
1.398258
,
0.472728
]
[
0.404671
,
1.071108
,
1.688889
],
[
0.76584
,
1.398258
,
0.472728
]
]),
]),
))
))
# Default setting for scaling LR automatically
# - `enable` means enable scaling LR automatically
# or not by default.
# - `base_batch_size` = (8 GPUs) x (16 samples per GPU).
auto_scale_lr
=
dict
(
enable
=
False
,
base_batch_size
=
128
)
configs/votenet/votenet_8xb8_scannet-3d.py
View file @
7e221c14
...
@@ -32,3 +32,8 @@ model = dict(
...
@@ -32,3 +32,8 @@ model = dict(
[
0.47535285
,
0.49249494
,
0.5802117
]])))
[
0.47535285
,
0.49249494
,
0.5802117
]])))
default_hooks
=
dict
(
logger
=
dict
(
type
=
'LoggerHook'
,
interval
=
30
))
default_hooks
=
dict
(
logger
=
dict
(
type
=
'LoggerHook'
,
interval
=
30
))
# Default setting for scaling LR automatically
# - `enable` means enable scaling LR automatically
# or not by default.
# - `base_batch_size` = (8 GPUs) x (8 samples per GPU).
auto_scale_lr
=
dict
(
enable
=
False
,
base_batch_size
=
64
)
Prev
1
2
Next
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