araffin commited on
Commit
9905d7a
1 Parent(s): cbc771b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -44,7 +44,7 @@ RL Zoo branch: `feat/gym-donkeycar`
44
  ```
45
  export AE_PATH=/path/to/ae-32_mountain.pkl
46
  # Download model and save it into the logs/ folder
47
- python -m utils.load_from_hub --algo tqc --env donkey-mountain-track-v0 -orga araffin -f logs/
48
  python enjoy.py --algo tqc --env donkey-mountain-track-v0 -f logs/
49
  ```
50
 
@@ -52,7 +52,7 @@ python enjoy.py --algo tqc --env donkey-mountain-track-v0 -f logs/
52
  ```
53
  python train.py --algo tqc --env donkey-mountain-track-v0 -f logs/
54
  # Upload the model and generate video (when possible)
55
- python -m utils.push_to_hub --algo tqc --env donkey-mountain-track-v0 -f logs/ -orga araffin
56
  ```
57
 
58
  ## Hyperparameters
@@ -60,13 +60,13 @@ python -m utils.push_to_hub --algo tqc --env donkey-mountain-track-v0 -f logs/ -
60
  OrderedDict([('batch_size', 256),
61
  ('buffer_size', 200000),
62
  ('callback',
63
- [{'utils.callbacks.ParallelTrainCallback': {'gradient_steps': 200}},
64
- 'utils.callbacks.LapTimeCallback']),
65
  ('ent_coef', 'auto'),
66
  ('env_wrapper',
67
  [{'gym.wrappers.time_limit.TimeLimit': {'max_episode_steps': 10000}},
68
  'ae.wrapper.AutoencoderWrapper',
69
- {'utils.wrappers.HistoryWrapper': {'horizon': 2}}]),
70
  ('gamma', 0.99),
71
  ('gradient_steps', 256),
72
  ('learning_rate', 0.00073),
 
44
  ```
45
  export AE_PATH=/path/to/ae-32_mountain.pkl
46
  # Download model and save it into the logs/ folder
47
+ python -m rl_zoo3.load_from_hub --algo tqc --env donkey-mountain-track-v0 -orga araffin -f logs/
48
  python enjoy.py --algo tqc --env donkey-mountain-track-v0 -f logs/
49
  ```
50
 
 
52
  ```
53
  python train.py --algo tqc --env donkey-mountain-track-v0 -f logs/
54
  # Upload the model and generate video (when possible)
55
+ python -m rl_zoo3.push_to_hub --algo tqc --env donkey-mountain-track-v0 -f logs/ -orga araffin
56
  ```
57
 
58
  ## Hyperparameters
 
60
  OrderedDict([('batch_size', 256),
61
  ('buffer_size', 200000),
62
  ('callback',
63
+ [{'rl_zoo3.callbacks.ParallelTrainCallback': {'gradient_steps': 200}},
64
+ 'rl_zoo3.callbacks.LapTimeCallback']),
65
  ('ent_coef', 'auto'),
66
  ('env_wrapper',
67
  [{'gym.wrappers.time_limit.TimeLimit': {'max_episode_steps': 10000}},
68
  'ae.wrapper.AutoencoderWrapper',
69
+ {'rl_zoo3.wrappers.HistoryWrapper': {'horizon': 2}}]),
70
  ('gamma', 0.99),
71
  ('gradient_steps', 256),
72
  ('learning_rate', 0.00073),