Skip to content

Commit

Permalink
amend
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoens committed Apr 8, 2024
1 parent d02d1e3 commit 9a1f5ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sota-implementations/dreamer/dreamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ def main(cfg: "DictConfig"): # noqa: F821
)
value_loss = DreamerValueLoss(value_model, discount_loss=True)

world_model_loss = torch.compile(world_model_loss)
actor_loss = torch.compile(actor_loss)
value_loss = torch.compile(value_loss)
# world_model_loss = torch.compile(world_model_loss)
# actor_loss = torch.compile(actor_loss)
# value_loss = torch.compile(value_loss)

# Make collector
collector = make_collector(cfg, train_env, policy)
Expand Down

0 comments on commit 9a1f5ef

Please sign in to comment.