Update hands-on.mdx

This commit is contained in:
Thomas Simonini
2023-02-25 18:24:21 +01:00
committed by GitHub
parent efc0ba1b96
commit 1727d54eeb

View File

@@ -191,7 +191,7 @@ env = # TODO: Add the wrapper
```python
env = make_vec_env(env_id, n_envs=4)
env = VecNormalize(env, norm_obs=True, norm_reward=False, clip_obs=10.0)
env = VecNormalize(env, norm_obs=True, norm_reward=True, clip_obs=10.0)
```
### Create the A2C Model 🤖