Skip to content

Commit

Permalink
update lr param
Browse files Browse the repository at this point in the history
  • Loading branch information
BY571 committed Jul 8, 2024
1 parent f94165e commit 02c94ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sota-implementations/crossq/batchrenorm.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class BatchRenorm(nn.Module):
def __init__(
self,
num_features,
momentum=0.99,
momentum=0.01,
eps=1e-5,
max_r=3.0,
max_d=5.0,
Expand Down
2 changes: 1 addition & 1 deletion sota-implementations/crossq/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def make_crossQ_optimizer(cfg, loss_module):
)
optimizer_alpha = optim.Adam(
[loss_module.log_alpha],
lr=3.0e-4,
lr=cfg.optim.lr,
)
return optimizer_actor, optimizer_critic, optimizer_alpha

Expand Down

0 comments on commit 02c94ff

Please sign in to comment.