Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -39,7 +39,7 @@ Gym env: https://github.com/sdsubhajitdas/Rocket_Lander_Gym
|
|
39 |
|
40 |
```
|
41 |
# Download model and save it into the logs/ folder
|
42 |
-
python -m
|
43 |
python enjoy.py --algo tqc --env RocketLander-v0 -f logs/
|
44 |
```
|
45 |
|
@@ -47,14 +47,14 @@ python enjoy.py --algo tqc --env RocketLander-v0 -f logs/
|
|
47 |
```
|
48 |
python train.py --algo tqc --env RocketLander-v0 -f logs/
|
49 |
# Upload the model and generate video (when possible)
|
50 |
-
python -m
|
51 |
```
|
52 |
|
53 |
## Hyperparameters
|
54 |
```python
|
55 |
OrderedDict([('env_wrapper',
|
56 |
-
[{'
|
57 |
-
{'
|
58 |
('n_timesteps', 3000000.0),
|
59 |
('policy', 'MlpPolicy'),
|
60 |
('normalize', False)])
|
|
|
39 |
|
40 |
```
|
41 |
# Download model and save it into the logs/ folder
|
42 |
+
python -m rl_zoo3.load_from_hub --algo tqc --env RocketLander-v0 -orga araffin -f logs/
|
43 |
python enjoy.py --algo tqc --env RocketLander-v0 -f logs/
|
44 |
```
|
45 |
|
|
|
47 |
```
|
48 |
python train.py --algo tqc --env RocketLander-v0 -f logs/
|
49 |
# Upload the model and generate video (when possible)
|
50 |
+
python -m rl_zoo3.push_to_hub --algo tqc --env RocketLander-v0 -f logs/ -orga araffin
|
51 |
```
|
52 |
|
53 |
## Hyperparameters
|
54 |
```python
|
55 |
OrderedDict([('env_wrapper',
|
56 |
+
[{'rl_zoo3.wrappers.FrameSkip': {'skip': 4}},
|
57 |
+
{'rl_zoo3.wrappers.HistoryWrapper': {'horizon': 2}}]),
|
58 |
('n_timesteps', 3000000.0),
|
59 |
('policy', 'MlpPolicy'),
|
60 |
('normalize', False)])
|