tsilva commited on
Commit
520adc6
·
verified ·
1 Parent(s): 12eeb01

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +11 -6
README.md CHANGED
@@ -1,6 +1,6 @@
1
  # CartPole-v1_ppo
2
 
3
- Run: `test-run` — Env: `CartPole-v1` — Algo: `ppo`
4
 
5
  This repository contains artifacts from a Gymnasium Solver training run.
6
 
@@ -8,18 +8,23 @@ This repository contains artifacts from a Gymnasium Solver training run.
8
  - Config: `artifacts/configs/config.json`
9
  - Checkpoints: `artifacts/checkpoints/*.ckpt`
10
  - Logs: `artifacts/logs/*.log`
 
 
 
 
 
11
 
12
  ## Config (excerpt)
13
  ```json
14
  {
15
  "env_id": "CartPole-v1",
16
  "algo_id": "ppo",
17
- "n_steps": 8,
18
- "batch_size": 8,
19
- "n_epochs": 1,
20
- "n_timesteps": 8,
21
  "seed": 42,
22
- "n_envs": 1,
23
  "obs_type": "rgb",
24
  "policy": "MlpPolicy",
25
  "learning_rate": 0.001,
 
1
  # CartPole-v1_ppo
2
 
3
+ Run: `fek1h3dn` — Env: `CartPole-v1` — Algo: `ppo`
4
 
5
  This repository contains artifacts from a Gymnasium Solver training run.
6
 
 
8
  - Config: `artifacts/configs/config.json`
9
  - Checkpoints: `artifacts/checkpoints/*.ckpt`
10
  - Logs: `artifacts/logs/*.log`
11
+ - Videos: `artifacts/videos/**/*.mp4` (also previewed below)
12
+
13
+ ## Previews
14
+ <video controls src="preview_1.mp4" width="480"></video>
15
+ <video controls src="preview_2.mp4" width="480"></video>
16
 
17
  ## Config (excerpt)
18
  ```json
19
  {
20
  "env_id": "CartPole-v1",
21
  "algo_id": "ppo",
22
+ "n_steps": 32,
23
+ "batch_size": 256,
24
+ "n_epochs": 20,
25
+ "n_timesteps": 100000.0,
26
  "seed": 42,
27
+ "n_envs": 8,
28
  "obs_type": "rgb",
29
  "policy": "MlpPolicy",
30
  "learning_rate": 0.001,