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
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 725e6df1b0941c52708a3adf80317e3d8516ecd1
2 changes: 1 addition & 1 deletion sota-implementations/dreamer/dreamer_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ def _make_env(cfg, device, from_pixels=False):
cfg.env.task,
from_pixels=cfg.env.from_pixels or from_pixels,
pixels_only=cfg.env.from_pixels,
device=device,
)
else:
raise NotImplementedError(f"Unknown lib {lib}.")
Expand All @@ -98,7 +99,6 @@ def _make_env(cfg, device, from_pixels=False):
env = env.append_transform(
TensorDictPrimer(random=False, default_value=0, **default_dict)
)
assert env is not None
return env


Expand Down
Loading