Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
162 changes: 122 additions & 40 deletions labs/rl_decision/lab_cql_offline_minigrid/notebook.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions labs/world_models/lab_dreamer_cartpole_pixels/src/policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ class PolicyConfig:

# Actor-critic
ac_hidden: int = 200
actor_lr: float = 1e-4
actor_lr: float = 3e-4
critic_lr: float = 3e-4
imagine_horizon: int = 12
imagine_batch: int = 32 # number of trajectories imagined per AC update
ac_updates_per_cycle: int = 50 # gradient steps on actor+critic each cycle
gamma: float = 0.99
lambda_: float = 0.95 # GAE/lambda-return mixing
actor_entropy: float = 0.005
actor_entropy: float = 0.05 # high entropy: WM dynamics are noisy enough that

# Init epsilon for the first cycle - actions are uniform random before any AC training.
initial_random_steps: int = 500
Expand Down
Loading