SimingSiming commited on
Commit
b975a7f
1 Parent(s): 750f0ae

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -3
README.md CHANGED
@@ -21,7 +21,16 @@ model-index:
21
  verified: false
22
  ---
23
 
24
- # **Reinforce** Agent playing **CartPole-v1**
25
- This is a trained model of a **Reinforce** agent playing **CartPole-v1** .
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
 
 
21
  verified: false
22
  ---
23
 
24
+ ## parameters
25
+ cartpole_hyperparameters = { <br>
26
+ "h_size": 16,<br>
27
+ "n_training_episodes": 1000, <br>
28
+ "n_evaluation_episodes": 10, <br>
29
+ "max_t": 1000, <br>
30
+ "gamma": 1.0, <br>
31
+ "lr": 1e-2, <br>
32
+ "env_id": env_id, <br>
33
+ "state_space": s_size, <br>
34
+ "action_space": a_size, <br>
35
+ }
36