Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Tau-J committed Oct 30, 2023
1 parent 6813ca1 commit db020d2
Show file tree
Hide file tree
Showing 7 changed files with 2,934 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# optimizer
optim_wrapper = dict(
type=OptimWrapper,
optimizer=dict(type=AdamW, lr=base_lr, weight_decay=0.05),
optimizer=dict(type=AdamW, lr=base_lr, weight_decay=0.1),
clip_grad=dict(max_norm=35, norm_type=2),
paramwise_cfg=dict(
norm_decay_mult=0, bias_decay_mult=0, bypass_duplicate=True))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# optimizer
optim_wrapper = dict(
type=OptimWrapper,
optimizer=dict(type=AdamW, lr=base_lr, weight_decay=0.05),
optimizer=dict(type=AdamW, lr=base_lr, weight_decay=0.1),
clip_grad=dict(max_norm=35, norm_type=2),
paramwise_cfg=dict(
norm_decay_mult=0, bias_decay_mult=0, bypass_duplicate=True))
Expand Down Expand Up @@ -134,7 +134,9 @@
loss=dict(
type=KLDiscretLoss,
use_target_weight=True,
beta=10.,
beta=1.,
mask=list(range(23, 91)),
mask_weight=0.5,
label_softmax=True),
decoder=codec),
test_cfg=dict(flip_test=True))
Expand Down
Loading

0 comments on commit db020d2

Please sign in to comment.