Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Versioning] v0.5 bump #2267

Merged
merged 29 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
amend
  • Loading branch information
vmoens committed Jul 9, 2024
commit bd67b9f7e92581362480f92bc7da091d69211a96
2 changes: 0 additions & 2 deletions sota-implementations/dreamer/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ collector:
init_random_frames: 3000
frames_per_batch: 1000
device:
_target_: dreamer_utils._default_device
device: null

optimization:
train_every: 1000
Expand Down
4 changes: 2 additions & 2 deletions sota-implementations/dreamer/dreamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
make_collector,
make_dreamer,
make_environments,
make_replay_buffer,
make_replay_buffer, _default_device,
)
from hydra.utils import instantiate

Expand All @@ -38,7 +38,7 @@
def main(cfg: "DictConfig"): # noqa: F821
# cfg = correct_for_frame_skip(cfg)

device = torch.device(instantiate(cfg.networks.device))
device = _default_device(cfg.networks.device)

# Create logger
exp_name = generate_exp_name("Dreamer", cfg.logger.exp_name)
Expand Down
Loading