joshkaura commited on
Commit
4cdfb7f
·
verified ·
1 Parent(s): c19c24f

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. README.md +28 -0
  2. hyperparameters.json +11 -0
  3. pytorch_model.bin +3 -0
  4. replay.txt +3 -0
  5. results.json +7 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - Pixelcopter-PLE-v0
4
+ - reinforce
5
+ - reinforcement-learning
6
+ - custom-implementation
7
+ - deep-rl-class
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: 20.30 +/- 16.10
20
+ name: mean_reward
21
+ verified: false
22
+ ---
23
+ # **Reinforce** Agent playing **Pixelcopter-PLE-v0**
24
+
25
+ This is a trained model of a **Reinforce** agent playing **Pixelcopter-PLE-v0**.
26
+
27
+ Trained for Unit 4 of the Deep Reinforcement Learning Course:
28
+ https://huggingface.co/deep-rl-course/unit4/introduction
hyperparameters.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "h_size": 64,
3
+ "n_training_episodes": 10000,
4
+ "n_evaluation_episodes": 10,
5
+ "max_t": 10000,
6
+ "gamma": 0.99,
7
+ "lr": 0.0001,
8
+ "env_id": "Pixelcopter-PLE-v0",
9
+ "state_space": 7,
10
+ "action_space": 2
11
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9da8620cafe4017c752135c0ad820804ed9abc0f963663a5ee0783ff5386da6
3
+ size 39389
replay.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ Replay video was not generated for this run.
2
+ Reason: RuntimeError("No frames were captured. Make sure the env was created with render_mode='rgb_array'.")
3
+ Tip: If this is Pixelcopter, video capture may require a pygame display or PLE screen capture.
results.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "env_id": "Pixelcopter-PLE-v0",
3
+ "mean_reward": 20.3,
4
+ "std_reward": 16.099999999999998,
5
+ "n_evaluation_episodes": 10,
6
+ "eval_datetime": "2026-01-07T00:20:08.452116"
7
+ }