diff --git a/units/en/unit6/hands-on.mdx b/units/en/unit6/hands-on.mdx index 37a0d93..c55c09e 100644 --- a/units/en/unit6/hands-on.mdx +++ b/units/en/unit6/hands-on.mdx @@ -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 🤖