Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# CartPole-v1_ppo
|
| 2 |
|
| 3 |
-
Run: `
|
| 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":
|
| 18 |
-
"batch_size":
|
| 19 |
-
"n_epochs":
|
| 20 |
-
"n_timesteps":
|
| 21 |
"seed": 42,
|
| 22 |
-
"n_envs":
|
| 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,
|