SimingSiming commited on
Commit
61f52ff
1 Parent(s): 1601c6c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -6
README.md CHANGED
@@ -20,9 +20,10 @@ model-index:
20
  type: BipedalWalkerHardcore-v3
21
  ---
22
 
23
- # **PPO** Agent playing **BipedalWalkerHardcore-v3**
24
- This is a trained model of a **PPO** agent playing **BipedalWalkerHardcore-v3** using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
25
-
26
- ## Usage (with Stable-baselines3)
27
- TODO: Add your code
28
-
 
 
20
  type: BipedalWalkerHardcore-v3
21
  ---
22
 
23
+ # parameters <br>
24
+ model = A2C(policy = "MlpPolicy", <br>
25
+ env = env, <br>
26
+ n_steps = 256, <br>
27
+ learning_rate = 0.001, <br>
28
+ gamma = 0.99, <br>
29
+ verbose=1) <br>