From 1727d54eeb93641708fe3b83c2b62a92f5af7d11 Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Sat, 25 Feb 2023 18:24:21 +0100 Subject: [PATCH] Update hands-on.mdx --- units/en/unit6/hands-on.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 🤖