-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python -u -m rl_zoo3.train --algo tqc --env ReachCube-v0 --gym-packages gym_lowcostrobot -conf rl_zoo3_conf.yaml --env-kwargs observation_mode:'"state"' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# conf.yml | ||
n_envs: 2 | ||
|
||
# Hyperparameters specific to the training algorithm | ||
tqc: | ||
policy: "MultiInputPolicy" | ||
learning_rate: 3e-4 | ||
buffer_size: 10000 # Reduce buffer size | ||
learning_starts: 10000 | ||
batch_size: 256 | ||
tau: 0.005 | ||
gamma: 0.99 | ||
train_freq: 1 | ||
gradient_steps: 1 | ||
action_noise: null | ||
optimize_memory_usage: True | ||
policy_kwargs: {} | ||
verbose: 1 | ||
seed: null | ||
device: "auto" | ||
|
||
|
||
ReachCube-v0: | ||
n_timesteps: !!float 1e7 | ||
policy: 'MultiInputPolicy' | ||
frame_stack: 1 # Disable frame stacking if not needed | ||
use_sde: True | ||
observation_mode: state |