SimingSiming commited on
Commit
bc43fa4
·
1 Parent(s): bb4244a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -2
README.md CHANGED
@@ -24,5 +24,16 @@ model-index:
24
  This is a trained model of a **PPO** agent playing **LunarLander-v2** using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
25
 
26
  ## Usage (with Stable-baselines3)
27
- TODO: Add your code
28
-
 
 
 
 
 
 
 
 
 
 
 
 
24
  This is a trained model of a **PPO** agent playing **LunarLander-v2** using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
25
 
26
  ## Usage (with Stable-baselines3)
27
+ ## Parameters
28
+
29
+ model = PPO(
30
+ policy = "MlpPolicy",
31
+ env = env,
32
+ learning_rate = 0.0001,
33
+ n_steps = 1024,
34
+ batch_size = 32,
35
+ n_epochs = 16,
36
+ gamma = 0.999,
37
+ ent_coef = 0.01,
38
+ verbose = 1
39
+ )