From a886ce7f97ae630299bf16e990bf1d9a5f8a72a0 Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Mon, 25 Jul 2022 08:02:51 +0200 Subject: [PATCH] Update env_id variable position --- unit1/unit1.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unit1/unit1.ipynb b/unit1/unit1.ipynb index 922b3c8..1e141eb 100644 --- a/unit1/unit1.ipynb +++ b/unit1/unit1.ipynb @@ -870,6 +870,10 @@ "\n", "from huggingface_sb3 import package_to_hub\n", "\n", + "## TODO: Define a repo_id\n", + "## repo_id is the id of the model repository from the Hugging Face Hub (repo_id = {organization}/{repo_name} for instance ThomasSimonini/ppo-LunarLander-v2\n", + "repo_id = \n", + "\n", "# Create the evaluation env\n", "eval_env = DummyVecEnv([lambda: gym.make(env_id)])\n", "\n", @@ -879,10 +883,6 @@ "# TODO: Define the model architecture we used\n", "model_architecture = \"\"\n", "\n", - "## TODO: Define a repo_id\n", - "## repo_id is the id of the model repository from the Hugging Face Hub (repo_id = {organization}/{repo_name} for instance ThomasSimonini/ppo-LunarLander-v2\n", - "repo_id = \n", - "\n", "## TODO: Define the commit message\n", "commit_message = \"\"\n", "\n",