SimingSiming commited on
Commit
8e5dd8a
1 Parent(s): 54e9845

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -4
README.md CHANGED
@@ -20,8 +20,16 @@ model-index:
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 5 of the Deep Reinforcement Learning Class: https://github.com/huggingface/deep-rl-class/tree/main/unit5
 
 
 
 
 
 
 
 
27
 
 
20
  name: mean_reward
21
  verified: false
22
  ---
23
+ \\
24
+ pixelcopter_hyperparameters = { \\
25
+ "h_size": 64,
26
+ "n_training_episodes": 50000,
27
+ "n_evaluation_episodes": 10,
28
+ "max_t": 10000,
29
+ "gamma": 0.99,
30
+ "lr": 1e-4,
31
+ "env_id": env_id,
32
+ "state_space": s_size,
33
+ "action_space": a_size,
34
+ }
35