diff --git a/fooocus_colab.ipynb b/fooocus_colab.ipynb index 05fbc82..daa99e0 100644 --- a/fooocus_colab.ipynb +++ b/fooocus_colab.ipynb @@ -39,7 +39,7 @@ "outputs": [], "source": [ "# put the link of the model you want to download (checkpoint or LoRA)\n", - "# link can specify a version id and if not specified the newest version will be downloaded\n", + "# link can specify a version id and if not specified the latest version will be downloaded\n", "# url example without version id: https://civitai.com/models/133005/juggernaut-xl\n", "# url example with version id: https://civitai.com/models/133005?modelVersionId=252902\n", "\n", @@ -51,7 +51,7 @@ "from urllib.parse import parse_qs\n", "\n", "allowed_types = ['Checkpoint', 'LORA']\n", - "save_loactions = {\n", + "save_locations = {\n", " 'Checkpoint': '/content/Fooocus/models/checkpoints',\n", " 'LORA': '/content/Fooocus/models/loras'\n", "}\n", @@ -98,7 +98,7 @@ "download_url = primary_file.get('downloadUrl')\n", "file_name = primary_file.get('name')\n", "\n", - "LOCATION = save_loactions[model_type]\n", + "LOCATION = save_locations[model_type]\n", "%cd $LOCATION\n", "\n", "model_name = data.get('name')\n",