nadirbekovnadir commited on
Commit
22df7e0
1 Parent(s): bdd9a9f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -24,7 +24,7 @@ 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
- model = PPO(
28
  policy = 'MlpPolicy',
29
  env = env,
30
  n_steps = 1024,
@@ -35,5 +35,5 @@ model-index:
35
  ent_coef = 0.005,
36
  verbose=1)
37
 
38
- model.learn(total_timesteps=2000000)
39
 
 
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
+ ```model = PPO(
28
  policy = 'MlpPolicy',
29
  env = env,
30
  n_steps = 1024,
 
35
  ent_coef = 0.005,
36
  verbose=1)
37
 
38
+ model.learn(total_timesteps=2000000)```
39