Update README.md
Browse files
README.md
CHANGED
@@ -21,7 +21,25 @@ model-index:
|
|
21 |
verified: false
|
22 |
---
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
|
|
21 |
verified: false
|
22 |
---
|
23 |
|
24 |
+
# **Reinforce** Agent playing **Pixelcopter-PLE-v0**
|
25 |
+
This is a trained model of a **Reinforce** agent playing **Pixelcopter-PLE-v0** .
|
26 |
+
To learn to use this model and train yours check Unit 4 of the Deep Reinforcement Learning Course: https://huggingface.co/deep-rl-course/unit4/introduction
|
27 |
+
|
28 |
+
## Training Time
|
29 |
+
Trained on 50 000 timesteps for 4 hours and 20 minutes.
|
30 |
+
|
31 |
+
## Hyperparameters
|
32 |
+
```python
|
33 |
+
pixelcopter_hyperparameters = {
|
34 |
+
"h_size": 64,
|
35 |
+
"n_training_episodes": 50000,
|
36 |
+
"n_evaluation_episodes": 10,
|
37 |
+
"max_t": 10000,
|
38 |
+
"gamma": 0.99,
|
39 |
+
"lr": 1e-4,
|
40 |
+
"env_id": env_id,
|
41 |
+
"state_space": s_size,
|
42 |
+
"action_space": a_size,
|
43 |
+
}
|
44 |
+
```
|
45 |
|