Skip to content

Commit d634cc8

Browse files
authored
Update vectormapnet.py
1 parent 97d7fc3 commit d634cc8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

configs/vectormapnet.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,13 +305,13 @@
305305

306306
optimizer = dict(
307307
type='AdamW',
308-
lr=2e-4,
308+
lr=1e-3,
309309
paramwise_cfg=dict(
310310
custom_keys={
311-
# 'img_backbone': dict(lr_mult=0.1),
311+
'backbone': dict(lr_mult=0.1),
312312
}),
313313
weight_decay=0.01)
314-
optimizer_config = dict(grad_clip=dict(max_norm=1., norm_type=2))
314+
optimizer_config = dict(grad_clip=dict(max_norm=.5, norm_type=2))
315315

316316

317317
# learning policy
@@ -338,4 +338,4 @@
338338
hooks=[
339339
dict(type='TextLoggerHook'),
340340
dict(type='TensorboardLoggerHook')
341-
])
341+
])

0 commit comments

Comments
 (0)