chavicoski
commited on
Commit
•
6404405
1
Parent(s):
d7db9ba
Upload . with huggingface_hub
Browse files- README.md +27 -0
- hyperparameters.json +1 -0
- model.pt +3 -0
- replay.mp4 +0 -0
- results.json +1 -0
README.md
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- reinforce
|
4 |
+
- reinforcement-learning
|
5 |
+
- custom-implementation
|
6 |
+
- deep-rl-class
|
7 |
+
- Pixelcopter-PLE-v0
|
8 |
+
model-index:
|
9 |
+
- name: Reinforce_Pixelcopter-PLE-v0
|
10 |
+
results:
|
11 |
+
- task:
|
12 |
+
type: reinforcement-learning
|
13 |
+
name: reinforcement-learning
|
14 |
+
dataset:
|
15 |
+
name: Pixelcopter-PLE-v0
|
16 |
+
type: Pixelcopter-PLE-v0
|
17 |
+
metrics:
|
18 |
+
- type: mean_reward
|
19 |
+
value: 73.39 +/- 55.42
|
20 |
+
name: mean_reward
|
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 |
+
|
hyperparameters.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"experiment_name": "Reinforce_Pixelcopter-PLE-v0", "device": "gpu", "policy": {"_target_": "lib.reinforce.Policy", "h_size": 64, "n_layers": 3}, "optimizer": {"_target_": "torch.optim.Adam", "lr": 0.0001}, "train_hparams": {"n_training_episodes": 100000, "max_steps": 10000, "gamma": 0.99, "print_every": 100}, "eval_hparams": {"n_eval_episodes": 10, "max_steps": 10000}, "model_path": "model.pt", "hparams_path": "hyperparameters.json", "video_path": "replay.mp4", "video_fps": 30, "train_env": {"_target_": "gym.make", "id": "Pixelcopter-PLE-v0"}, "eval_env": {"_target_": "gym.make", "id": "Pixelcopter-PLE-v0"}}
|
model.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e4fa07e8d0bf63c337a1d97f10f52cf93bae624fa3ffff167575c25fd508fc72
|
3 |
+
size 22407
|
replay.mp4
ADDED
Binary file (38.4 kB). View file
|
|
results.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"env_id": "Pixelcopter-PLE-v0", "mean_reward": 73.39, "std_reward": 55.415123387032175, "n_eval_episodes": 1000, "eval_datetime": "2023-01-10T16:20:02.636276"}
|