SimingSiming commited on
Commit
16642b5
1 Parent(s): f4aee19

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 **Pong-PLE-v0**
25
- This is a trained model of a **Reinforce** agent playing **Pong-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
+ ## parameters
24
+ pong_hyperparameters = { <br>
25
+ "h_size": 64,<br>
26
+ "n_training_episodes": 20000,<br>
27
+ "n_evaluation_episodes": 10,<br>
28
+ "max_t": 5000,<br>
29
+ "gamma": 0.99,<br>
30
+ "lr": 1e-2,<br>
31
+ "env_id": env_id,<br>
32
+ "state_space": s_size,<br>
33
+ "action_space": a_size,<br>
34
+ }<br>
35