TaoZewen commited on
Commit
48464c9
·
verified ·
1 Parent(s): a40f71f

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. README.md +5 -7
  2. dqn_model.pt +3 -0
  3. hyperparameters.json +1 -1
  4. replay.mp4 +0 -0
  5. results.json +1 -1
README.md CHANGED
@@ -1,10 +1,10 @@
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:
@@ -16,12 +16,10 @@ model-index:
16
  type: Pixelcopter-PLE-v0
17
  metrics:
18
  - type: mean_reward
19
- value: 23.00 +/- 19.31
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
-
 
1
  ---
2
  tags:
3
  - Pixelcopter-PLE-v0
4
+ - dqn
5
+ - deep-q-learning
6
  - reinforcement-learning
7
  - custom-implementation
 
8
  model-index:
9
  - name: Reinforce-Pixelcopter-PLE-v0
10
  results:
 
16
  type: Pixelcopter-PLE-v0
17
  metrics:
18
  - type: mean_reward
19
+ value: 1.00 +/- 5.71
20
  name: mean_reward
21
  verified: false
22
  ---
23
 
24
+ # **DQN** Agent playing **Pixelcopter-PLE-v0**
25
+ This is a trained model of a **Deep Q-Network (DQN)** agent playing **Pixelcopter-PLE-v0**.
 
 
dqn_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0f8a949b840140b868572b8a7ddb5ea92a69aa3a465846f147ac608dc5909cd
3
+ size 40152
hyperparameters.json CHANGED
@@ -1 +1 @@
1
- {"h_size": 256, "n_training_episodes": 4000, "n_evaluation_episodes": 10, "max_t": 20000, "gamma": 0.99, "lr": 0.0001, "clip_eps": 0.2, "entropy_beta": 0.05, "K_epochs": 4, "env_id": "Pixelcopter-PLE-v0", "state_space": 7, "action_space": 2}
 
1
+ {"h_size": 64, "gamma": 0.99, "lr": 0.0001, "batch_size": 64, "buffer_size": 50000, "epsilon_start": 1.0, "epsilon_end": 0.01, "epsilon_decay": 10000, "target_update": 1000, "n_episodes": 2500, "max_t": 500, "n_evaluation_episodes": 10, "env_id": "Pixelcopter-PLE-v0"}
replay.mp4 CHANGED
Binary files a/replay.mp4 and b/replay.mp4 differ
 
results.json CHANGED
@@ -1 +1 @@
1
- {"env_id": "Pixelcopter-PLE-v0", "mean_reward": 23.0, "n_evaluation_episodes": 10, "eval_datetime": "2025-02-14T06:15:44.399292"}
 
1
+ {"env_id": "Pixelcopter-PLE-v0", "mean_reward": 1.0, "n_evaluation_episodes": 10, "eval_datetime": "2025-02-17T00:35:50.531542"}