diff --git a/pov_you_re_a_pancake_meme_Illustrious/Dataset poyo_Illustrious.ipynb b/pov_you_re_a_pancake_meme_Illustrious/Dataset poyo_Illustrious.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..c7ddb279de88cedfa411a9c64f196d1f89e5c82e --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/Dataset poyo_Illustrious.ipynb @@ -0,0 +1 @@ +{"cells":[{"cell_type":"markdown","metadata":{"id":"rmCPmqFL6hCQ"},"source":["# ๐Ÿ“Š Dataset Maker by Hollowstrawberry\n","\n","This is based on the work of [Kohya-ss](https://github.com/kohya-ss/sd-scripts) and [Linaqruf](https://colab.research.google.com/github/Linaqruf/kohya-trainer/blob/main/kohya-LoRA-dreambooth.ipynb). Thank you!"]},{"cell_type":"markdown","metadata":{"id":"NrMSe-zwH6K1"},"source":["### โญ• Disclaimer\n","The purpose of this document is to research bleeding-edge technologies in the field of machine learning inference. \n","Please read and follow the [Google Colab guidelines](https://research.google.com/colaboratory/faq.html) and its [Terms of Service](https://research.google.com/colaboratory/tos_v3.html)."]},{"cell_type":"markdown","metadata":{"id":"-rdgF2AWLS2h"},"source":["| |GitHub|๐Ÿ‡ฌ๐Ÿ‡ง English|๐Ÿ‡ช๐Ÿ‡ธ Spanish|\n","|:--|:-:|:-:|:-:|\n","| ๐Ÿ  **Homepage** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab) | | |\n","| ๐Ÿ“Š **Dataset Maker** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab/blob/main/Dataset_Maker.ipynb) | [![Open in Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Dataset_Maker.ipynb) | [![Abrir en Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge-spanish.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Spanish_Dataset_Maker.ipynb) |\n","| โญ **Lora Trainer** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb) | [![Open in Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb) | [![Abrir en Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge-spanish.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Spanish_Lora_Trainer.ipynb) |\n","| ๐ŸŒŸ **XL Lora Trainer** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer_XL.ipynb) | [![Open in Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer_XL.ipynb) | |"]},{"cell_type":"code","execution_count":1,"metadata":{"id":"cBa7KdewQ4BU","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1743519703150,"user_tz":-240,"elapsed":18449,"user":{"displayName":"ะกะตั€ะณะตะน ะ“ั€ะธะณะพั€ัŒะตะฒ (Sergey004)","userId":"04354315389975155845"}},"outputId":"02623985-f43c-4ef9-b18a-61affcb0a4ab","cellView":"form"},"outputs":[{"output_type":"stream","name":"stdout","text":["๐Ÿ“‚ Connecting to Google Drive...\n","Mounted at /content/drive\n","โœ… Project poyo_Illustrious is ready!\n"]}],"source":["import os\n","from IPython import get_ipython\n","from IPython.display import display, Markdown\n","\n","COLAB = True\n","\n","if COLAB:\n"," from google.colab.output import clear as clear_output\n","else:\n"," from IPython.display import clear_output\n","\n","#@title ## ๐Ÿšฉ Start Here\n","\n","#@markdown ### 1๏ธโƒฃ Setup\n","#@markdown This cell will load some requirements and create the necessary folders in your Google Drive.

\n","#@markdown Your project name can't contain spaces but it can contain a single / to make a subfolder in your dataset.\n","project_name = \"poyo_Illustrious\" #@param {type:\"string\"}\n","project_name = project_name.strip()\n","#@markdown The folder structure doesn't matter and is purely for comfort. Make sure to always pick the same one. I like organizing by project.\n","folder_structure = \"Organize by project (MyDrive/Loras/project_name/dataset)\" #@param [\"Organize by category (MyDrive/lora_training/datasets/project_name)\", \"Organize by project (MyDrive/Loras/project_name/dataset)\"]\n","\n","if not project_name or any(c in project_name for c in \" .()\\\"'\\\\\") or project_name.count(\"/\") > 1:\n"," print(\"Please write a valid project_name.\")\n","else:\n"," if COLAB and not os.path.exists('/content/drive'):\n"," from google.colab import drive\n"," print(\"๐Ÿ“‚ Connecting to Google Drive...\")\n"," drive.mount('/content/drive')\n","\n"," project_base = project_name if \"/\" not in project_name else project_name[:project_name.rfind(\"/\")]\n"," project_subfolder = project_name if \"/\" not in project_name else project_name[project_name.rfind(\"/\")+1:]\n","\n"," root_dir = \"/content\" if COLAB else \"~/Loras\"\n"," deps_dir = os.path.join(root_dir, \"deps\")\n","\n"," if \"/Loras\" in folder_structure:\n"," main_dir = os.path.join(root_dir, \"drive/MyDrive/Loras\") if COLAB else root_dir\n"," config_folder = os.path.join(main_dir, project_base)\n"," images_folder = os.path.join(main_dir, project_base, \"dataset\")\n"," if \"/\" in project_name:\n"," images_folder = os.path.join(images_folder, project_subfolder)\n"," else:\n"," main_dir = os.path.join(root_dir, \"drive/MyDrive/lora_training\") if COLAB else root_dir\n"," config_folder = os.path.join(main_dir, \"config\", project_name)\n"," images_folder = os.path.join(main_dir, \"datasets\", project_name)\n","\n"," for dir in [main_dir, deps_dir, images_folder, config_folder]:\n"," os.makedirs(dir, exist_ok=True)\n","\n"," print(f\"โœ… Project {project_name} is ready!\")\n"," step1_installed_flag = True\n"]},{"cell_type":"code","execution_count":null,"metadata":{"cellView":"form","id":"afu5dCKTV31E","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1742837397064,"user_tz":-240,"elapsed":12122,"user":{"displayName":"ะžะปัŒะณะฐ","userId":"01931168844080915348"}},"outputId":"57606a01-0b94-4457-84a8-2d91b443f1ab"},"outputs":[{"output_type":"stream","name":"stdout","text":["๐Ÿ“ท No results found\n"]}],"source":["if \"step1_installed_flag\" not in globals():\n"," raise Exception(\"Please run step 1 first!\")\n","\n","import json\n","import time\n","from urllib.request import urlopen, Request\n","\n","#@markdown ### 2๏ธโƒฃ Scrape images from Gelbooru\n","\n","#@markdown We will grab images from the popular anime gallery [Gelbooru](https://gelbooru.com/). Images are sorted by tags, including poses, scenes, character traits, character names, artists, etc.

\n","#@markdown * If you instead want to use your own images, upload them to your Google Drive's `Loras/project_name/dataset` folder.\n","#@markdown * If you instead want to download screencaps of anime episodes, try [this other colab by another person](https://colab.research.google.com/drive/1oBSntB40BKzNmKceXUlkXzujzdQw-Ci7). It's more complicated though.\n","\n","#@markdown Up to 1000 images may be downloaded by this step in just one minute. Don't abuse it.

\n","#@markdown Your target tags should include the relevant tags for your character/concept/artstyle, and exclude undesired tags (for example, explicit images may affect learning).\n","#@markdown Separate words with underscores, separate tags with spaces, and use - to exclude a tag. You can also include a minimum score: `score:>10`\n","tags = \"1boy -sex -bdsm -loli -greyscale -monochrome milkytiger\" #@param {type:\"string\"}\n","##@markdown If an image is bigger than this resolution a smaller version will be downloaded instead.\n","max_resolution = 3072 #param {type:\"slider\", min:1024, max:8196, step:1024}\n","##@markdown Posts with a parent post are often minor variations of the same image.\n","include_posts_with_parent = True #param {type:\"boolean\"}\n","\n","tags = tags.replace(\" \", \"+\")\\\n"," .replace(\"(\", \"%28\")\\\n"," .replace(\")\", \"%29\")\\\n"," .replace(\":\", \"%3a\")\\\n"," .replace(\"&\", \"%26\")\\\n","\n","url = \"https://gelbooru.com/index.php?page=dapi&json=1&s=post&q=index&limit=100&tags={}\".format(tags)\n","user_agent = \"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/93.0.4577.83 Safari/537.36\"\n","limit = 100 # hardcoded by gelbooru\n","total_limit = 1000 # you can edit this if you want but I wouldn't recommend it\n","supported_types = (\".png\", \".jpg\", \".jpeg\")\n","\n","def ubuntu_deps():\n"," print(\"๐Ÿญ Installing dependencies...\\n\")\n"," !apt -y install aria2\n"," return not get_ipython().__dict__['user_ns']['_exit_code']\n","\n","if \"step2_installed_flag\" not in globals():\n"," if ubuntu_deps():\n"," clear_output()\n"," step2_installed_flag = True\n"," else:\n"," print(\"โŒ Error installing dependencies, attempting to continue anyway...\")\n","\n","def get_json(url):\n"," with urlopen(Request(url, headers={\"User-Agent\": user_agent})) as page:\n"," return json.load(page)\n","\n","def filter_images(data):\n"," return [p[\"file_url\"] if p[\"width\"]*p[\"height\"] <= max_resolution**2 else p[\"sample_url\"]\n"," for p in data[\"post\"]\n"," if (p[\"parent_id\"] == 0 or include_posts_with_parent)\n"," and p[\"file_url\"].lower().endswith(supported_types)]\n","\n","def download_images():\n"," data = get_json(url)\n"," count = data[\"@attributes\"][\"count\"]\n","\n"," if count == 0:\n"," print(\"๐Ÿ“ท No results found\")\n"," return\n","\n"," print(f\"๐ŸŽฏ Found {count} results\")\n"," test_url = \"https://gelbooru.com/index.php?page=post&s=list&tags={}\".format(tags)\n"," display(Markdown(f\"[Click here to open in browser!]({test_url})\"))\n"," print (f\"๐Ÿ”ฝ Will download to {images_folder.replace('/content/drive/', '')} (A confirmation box should appear below, otherwise run this cell again)\")\n"," inp = input(\"โ“ Enter the word 'yes' if you want to proceed with the download: \")\n","\n"," if inp.lower().strip() != 'yes':\n"," print(\"โŒ Download cancelled\")\n"," return\n","\n"," print(\"๐Ÿ“ฉ Grabbing image list...\")\n","\n"," image_urls = set()\n"," image_urls = image_urls.union(filter_images(data))\n"," for i in range(total_limit // limit):\n"," count -= limit\n"," if count <= 0:\n"," break\n"," time.sleep(0.1)\n"," image_urls = image_urls.union(filter_images(get_json(url+f\"&pid={i+1}\")))\n","\n"," scrape_file = os.path.join(config_folder, f\"scrape_{project_subfolder}.txt\")\n"," with open(scrape_file, \"w\") as f:\n"," f.write(\"\\n\".join(image_urls))\n","\n"," print(f\"๐ŸŒ Saved links to {scrape_file}\\n\\n๐Ÿ” Downloading images...\\n\")\n"," old_img_count = len([f for f in os.listdir(images_folder) if f.lower().endswith(supported_types)])\n","\n"," os.chdir(images_folder)\n"," !aria2c --console-log-level=warn -c -x 16 -k 1M -s 16 -i {scrape_file}\n","\n"," new_img_count = len([f for f in os.listdir(images_folder) if f.lower().endswith(supported_types)])\n"," print(f\"\\nโœ… Downloaded {new_img_count - old_img_count} images.\")\n","\n","download_images()\n"]},{"cell_type":"code","execution_count":null,"metadata":{"cellView":"form","id":"b218DEEMpwzB","colab":{"base_uri":"https://localhost:8080/"},"outputId":"5be42034-58fa-4a52-e174-7cf7a3f7f038"},"outputs":[{"output_type":"stream","name":"stdout","text":["\n","๐Ÿ’ฟ Analyzing dataset...\n","\n"," 100% |โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 187/187 [86.3ms elapsed, 0s remaining, 2.2K samples/s] \n"]},{"output_type":"stream","name":"stderr","text":["INFO:eta.core.utils: 100% |โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 187/187 [86.3ms elapsed, 0s remaining, 2.2K samples/s] \n"]},{"output_type":"stream","name":"stdout","text":["Downloading model from 'https://openaipublic.azureedge.net/clip/models/40d365715913c9da98579312b702a82c18be219cc2a73407c4526f58eba950af/ViT-B-32.pt'...\n"]},{"output_type":"stream","name":"stderr","text":["INFO:fiftyone.core.models:Downloading model from 'https://openaipublic.azureedge.net/clip/models/40d365715913c9da98579312b702a82c18be219cc2a73407c4526f58eba950af/ViT-B-32.pt'...\n"]},{"output_type":"stream","name":"stdout","text":[" 100% |โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 2.6Gb/2.6Gb [4.9s elapsed, 0s remaining, 661.0Mb/s] \n"]},{"output_type":"stream","name":"stderr","text":["INFO:eta.core.utils: 100% |โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 2.6Gb/2.6Gb [4.9s elapsed, 0s remaining, 661.0Mb/s] \n"]},{"output_type":"stream","name":"stdout","text":["Downloading CLIP tokenizer...\n"]},{"output_type":"stream","name":"stderr","text":["INFO:fiftyone.utils.clip.zoo:Downloading CLIP tokenizer...\n"]},{"output_type":"stream","name":"stdout","text":[" 100% |โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 10.4Mb/10.4Mb [18.3ms elapsed, 0s remaining, 566.2Mb/s] \n"]},{"output_type":"stream","name":"stderr","text":["INFO:eta.core.utils: 100% |โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 10.4Mb/10.4Mb [18.3ms elapsed, 0s remaining, 566.2Mb/s] \n"]}],"source":["if \"step1_installed_flag\" not in globals():\n"," raise Exception(\"Please run step 1 first!\")\n","\n","#@markdown ### 3๏ธโƒฃ Curate your images\n","#@markdown We will find duplicate images with the FiftyOne AI, and mark them with `delete`.

\n","#@markdown Then, an interactive area will appear below this cell that lets you visualize all your images and manually mark with `delete` to the ones you don't like.

\n","#@markdown If the interactive area appears blank for over a minute, try enabling cookies and removing tracking protection for the Google Colab website, as they may break it.\n","#@markdown Regardless, you can save your changes by sending Enter in the input box above the interactive area.

\n","#@markdown This is how similar 2 images must be to be marked for deletion. I recommend 0.97 to 0.99:\n","similarity_threshold = 0.985 #@param {type:\"number\"}\n","\n","\n","os.chdir(root_dir)\n","model_name = \"clip-vit-base32-torch\"\n","supported_types = (\".png\", \".jpg\", \".jpeg\")\n","img_count = len(os.listdir(images_folder))\n","batch_size = min(250, img_count)\n","\n","if \"step3_installed_flag\" not in globals():\n"," print(\"๐Ÿญ Installing dependencies...\\n\")\n"," !pip -q install fiftyone ftfy\n"," !pip -q install fiftyone-db-ubuntu2204\n"," if not get_ipython().__dict__['user_ns']['_exit_code']:\n"," clear_output()\n"," step3_installed_flag = True\n"," else:\n"," print(\"โŒ Error installing dependencies, attempting to continue anyway...\")\n","\n","import numpy as np\n","import fiftyone as fo\n","import fiftyone.zoo as foz\n","from fiftyone import ViewField as F\n","from sklearn.metrics.pairwise import cosine_similarity\n","\n","non_images = [f for f in os.listdir(images_folder) if not f.lower().endswith(supported_types)]\n","if non_images:\n"," print(f\"๐Ÿ’ฅ Error: Found non-image file {non_images[0]} - This program doesn't allow it. Sorry! Use the Extras at the bottom to clean the folder.\")\n","elif img_count == 0:\n"," print(f\"๐Ÿ’ฅ Error: No images found in {images_folder}\")\n","else:\n"," print(\"\\n๐Ÿ’ฟ Analyzing dataset...\\n\")\n"," dataset = fo.Dataset.from_dir(images_folder, dataset_type=fo.types.ImageDirectory)\n"," model = foz.load_zoo_model(model_name)\n"," embeddings = dataset.compute_embeddings(model, batch_size=batch_size)\n","\n"," batch_embeddings = np.array_split(embeddings, batch_size)\n"," similarity_matrices = []\n"," max_size_x = max(array.shape[0] for array in batch_embeddings)\n"," max_size_y = max(array.shape[1] for array in batch_embeddings)\n","\n"," for i, batch_embedding in enumerate(batch_embeddings):\n"," similarity = cosine_similarity(batch_embedding)\n"," #Pad 0 for np.concatenate\n"," padded_array = np.zeros((max_size_x, max_size_y))\n"," padded_array[0:similarity.shape[0], 0:similarity.shape[1]] = similarity\n"," similarity_matrices.append(padded_array)\n","\n"," similarity_matrix = np.concatenate(similarity_matrices, axis=0)\n"," similarity_matrix = similarity_matrix[0:embeddings.shape[0], 0:embeddings.shape[0]]\n","\n"," similarity_matrix = cosine_similarity(embeddings)\n"," similarity_matrix -= np.identity(len(similarity_matrix))\n","\n"," dataset.match(F(\"max_similarity\") > similarity_threshold)\n"," dataset.tags = [\"delete\", \"has_duplicates\"]\n","\n"," id_map = [s.id for s in dataset.select_fields([\"id\"])]\n"," samples_to_remove = set()\n"," samples_to_keep = set()\n","\n"," for idx, sample in enumerate(dataset):\n"," if sample.id not in samples_to_remove:\n"," # Keep the first instance of two duplicates\n"," samples_to_keep.add(sample.id)\n","\n"," dup_idxs = np.where(similarity_matrix[idx] > similarity_threshold)[0]\n"," for dup in dup_idxs:\n"," # We kept the first instance so remove all other duplicates\n"," samples_to_remove.add(id_map[dup])\n","\n"," if len(dup_idxs) > 0:\n"," sample.tags.append(\"has_duplicates\")\n"," sample.save()\n"," else:\n"," sample.tags.append(\"delete\")\n"," sample.save()\n","\n"," clear_output()\n","\n"," sidebar_groups = fo.DatasetAppConfig.default_sidebar_groups(dataset)\n"," for group in sidebar_groups[1:]:\n"," group.expanded = False\n"," dataset.app_config.sidebar_groups = sidebar_groups\n"," dataset.save()\n"," session = fo.launch_app(dataset)\n","\n"," print(\"โ— Wait a minute for the session to load. If it doesn't, read above.\")\n"," print(\"โ— When it's ready, you'll see a grid of your images.\")\n"," print(\"โ— On the left side enable \\\"sample tags\\\" to visualize the images marked for deletion.\")\n"," print(\"โ— You can mark your own images with the \\\"delete\\\" label by selecting them and pressing the tag icon at the top.\")\n"," input(\"โญ• When you're done, enter something here to save your changes: \")\n","\n"," print(\"๐Ÿ’พ Saving...\")\n","\n"," marked = [s for s in dataset if \"delete\" in s.tags]\n"," dataset.remove_samples(marked)\n"," previous_folder = images_folder[:images_folder.rfind(\"/\")]\n"," dataset.export(export_dir=os.path.join(images_folder, project_subfolder), dataset_type=fo.types.ImageDirectory)\n","\n"," temp_suffix = \"_temp\"\n"," !mv {images_folder} {images_folder}{temp_suffix}\n"," !mv {images_folder}{temp_suffix}/{project_subfolder} {images_folder}\n"," !rm -r {images_folder}{temp_suffix}\n","\n"," session.refresh()\n"," fo.close_app()\n"," clear_output()\n","\n"," print(f\"\\nโœ… Removed {len(marked)} images from dataset. You now have {len(os.listdir(images_folder))} images.\")\n"]},{"cell_type":"code","source":["!pip install transformers -U"],"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"3CzwS7CjD4HG","executionInfo":{"status":"ok","timestamp":1735033771925,"user_tz":-240,"elapsed":7126,"user":{"displayName":"ะกะตั€ะณะตะน ะ“ั€ะธะณะพั€ัŒะตะฒ (Sergey004)","userId":"04354315389975155845"}},"outputId":"eb4b43dd-0e49-46eb-fc62-a89f039500a4"},"execution_count":null,"outputs":[{"output_type":"stream","name":"stdout","text":["Requirement already satisfied: transformers in /usr/local/lib/python3.10/dist-packages (4.47.1)\n","Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from transformers) (3.16.1)\n","Requirement already satisfied: huggingface-hub<1.0,>=0.24.0 in /usr/local/lib/python3.10/dist-packages (from transformers) (0.27.0)\n","Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.10/dist-packages (from transformers) (1.26.4)\n","Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from transformers) (24.2)\n","Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.10/dist-packages (from transformers) (6.0.2)\n","Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.10/dist-packages (from transformers) (2024.11.6)\n","Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (from transformers) (2.32.3)\n","Requirement already satisfied: tokenizers<0.22,>=0.21 in /usr/local/lib/python3.10/dist-packages (from transformers) (0.21.0)\n","Requirement already satisfied: safetensors>=0.4.1 in /usr/local/lib/python3.10/dist-packages (from transformers) (0.4.5)\n","Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.10/dist-packages (from transformers) (4.67.1)\n","Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.10/dist-packages (from huggingface-hub<1.0,>=0.24.0->transformers) (2024.10.0)\n","Requirement already satisfied: typing-extensions>=3.7.4.3 in /usr/local/lib/python3.10/dist-packages (from huggingface-hub<1.0,>=0.24.0->transformers) (4.12.2)\n","Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (3.4.0)\n","Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (3.10)\n","Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (2.2.3)\n","Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (2024.12.14)\n"]}]},{"cell_type":"code","execution_count":2,"metadata":{"cellView":"form","id":"sl4FD7Mz-uea","colab":{"base_uri":"https://localhost:8080/"},"outputId":"435e49e9-813b-47d7-f523-c6552a641532","executionInfo":{"status":"ok","timestamp":1743520101603,"user_tz":-240,"elapsed":398020,"user":{"displayName":"ะกะตั€ะณะตะน ะ“ั€ะธะณะพั€ัŒะตะฒ (Sergey004)","userId":"04354315389975155845"}}},"outputs":[{"output_type":"stream","name":"stdout","text":["๐Ÿ“Š Tagging complete. Here are the top 50 tags in your dataset:\n","animal ears (35)\n","male focus (35)\n","furry male (35)\n","solo (34)\n","short hair (34)\n","1boy (34)\n","furry (34)\n","yellow eyes (33)\n","white hair (33)\n","looking at viewer (27)\n","blush (26)\n","mouse ears (26)\n","long sleeves (22)\n","sweater (22)\n","body fur (21)\n","tail (20)\n","white fur (20)\n","closed mouth (18)\n","black sweater (16)\n","upper body (16)\n","simple background (15)\n","standing (14)\n","thick eyebrows (13)\n","grey background (13)\n","pants (12)\n","outdoors (11)\n","black pants (10)\n","mouse tail (10)\n","cowboy shot (9)\n","smile (9)\n","male child (7)\n","holding (7)\n","open mouth (7)\n","shirt (7)\n","animal hands (7)\n",":< (7)\n","indoors (6)\n","potted plant (6)\n","full body (6)\n",":3 (6)\n","plant (5)\n","portrait (5)\n","chibi (5)\n","day (5)\n","tree (5)\n","white sweater (5)\n","blurry (5)\n","whiskers (5)\n","night (5)\n","english text (4)\n"]}],"source":["if \"step1_installed_flag\" not in globals():\n"," raise Exception(\"Please run step 1 first!\")\n","\n","#@markdown ### 4๏ธโƒฃ Tag your images\n","#@markdown We will be using AI to automatically tag your images, specifically [Waifu Diffusion](https://huggingface.co/SmilingWolf/wd-v1-4-swinv2-tagger-v2) in the case of anime and [BLIP](https://huggingface.co/spaces/Salesforce/BLIP) in the case of photos.\n","#@markdown Giving tags/captions to your images allows for much better training. This process should take a couple minutes.

\n","method = \"Anime tags\" #@param [\"Anime tags\", \"Photo captions\"]\n","#@markdown **Anime:** The threshold is the minimum level of confidence the tagger must have in order to include a tag. Lower threshold = More tags. Recommended 0.35 to 0.5\n","tag_threshold = 0.35 #@param {type:\"slider\", min:0.0, max:1.0, step:0.01}\n","blacklist_tags = \"bangs, breasts, multicolored hair, two-tone hair, gradient hair, virtual youtuber, parody, style parody, official alternate costume, official alternate hairstyle, official alternate hair length, alternate costume, alternate hairstyle, alternate hair length, alternate hair color\" #@param {type:\"string\"}\n","#@markdown **Photos:** The minimum and maximum length of tokens/words in each caption.\n","caption_min = 10 #@param {type:\"number\"}\n","caption_max = 75 #@param {type:\"number\"}\n","\n","%env PYTHONPATH=/env/python\n","os.chdir(root_dir)\n","kohya = \"/content/kohya-trainer\"\n","if not os.path.exists(kohya):\n"," !git clone https://github.com/kohya-ss/sd-scripts {kohya}\n"," os.chdir(kohya)\n"," !git reset --hard 9a67e0df390033a89f17e70df5131393692c2a55\n"," os.chdir(root_dir)\n","\n","if \"tags\" in method:\n"," if \"step4a_installed_flag\" not in globals() or \"step4b_installed_flag\" in globals():\n"," print(\"\\n๐Ÿญ Installing dependencies...\\n\")\n"," !pip install accelerate==0.25.0 diffusers[torch]==0.25.0 einops==0.6.0 tensorflow==2.15.0 \\\n"," keras==2.15.0 transformers safetensors huggingface-hub==0.22.0 torchvision albumentations \\\n"," jax==0.4.23 jaxlib==0.4.23 flax==0.7.5\n"," if not get_ipython().__dict__['user_ns']['_exit_code']:\n"," clear_output()\n"," step4a_installed_flag = True\n"," else:\n"," print(\"โŒ Error installing dependencies, trying to continue anyway...\")\n","\n"," print(\"\\n๐Ÿšถโ€โ™‚๏ธ Launching program...\\n\")\n","\n"," os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'\n"," %env PYTHONPATH={kohya}\n"," !python {kohya}/finetune/tag_images_by_wd14_tagger.py \\\n"," {images_folder} \\\n"," --repo_id=SmilingWolf/wd-v1-4-swinv2-tagger-v2 \\\n"," --model_dir={root_dir} \\\n"," --thresh={tag_threshold} \\\n"," --batch_size=8 \\\n"," --caption_extension=.txt \\\n"," --force_download\n","\n"," if not get_ipython().__dict__['user_ns']['_exit_code']:\n"," print(\"removing underscores and blacklist...\")\n"," blacklisted_tags = [t.strip() for t in blacklist_tags.split(\",\")]\n"," from collections import Counter\n"," top_tags = Counter()\n"," for txt in [f for f in os.listdir(images_folder) if f.lower().endswith(\".txt\")]:\n"," with open(os.path.join(images_folder, txt), 'r') as f:\n"," tags = [t.strip() for t in f.read().split(\",\")]\n"," tags = [t.replace(\"_\", \" \") if len(t) > 3 else t for t in tags]\n"," tags = [t for t in tags if t not in blacklisted_tags]\n"," top_tags.update(tags)\n"," with open(os.path.join(images_folder, txt), 'w') as f:\n"," f.write(\", \".join(tags))\n","\n"," %env PYTHONPATH=/env/python\n"," clear_output()\n"," print(f\"๐Ÿ“Š Tagging complete. Here are the top 50 tags in your dataset:\")\n"," print(\"\\n\".join(f\"{k} ({v})\" for k, v in top_tags.most_common(50)))\n","\n","\n","else: # Photos\n"," if \"step4b_installed_flag\" not in globals() or \"step4a_installed_flag\" in globals():\n"," print(\"\\n๐Ÿญ Installing dependencies...\\n\")\n"," !pip install timm==0.6.12 fairscale==0.4.13 transformers==4.26.0 requests \\\n"," accelerate==0.25.0 diffusers[torch]==0.25.0 einops==0.6.0 safetensors \\\n"," jax==0.4.23 jaxlib==0.4.23 flax==0.7.5 huggingface-hub==0.22.0\n"," if not get_ipython().__dict__['user_ns']['_exit_code']:\n"," clear_output()\n"," step4b_installed_flag = True\n"," else:\n"," print(\"โŒ Error installing dependencies, trying to continue anyway...\")\n","\n"," print(\"\\n๐Ÿšถโ€โ™‚๏ธ Launching program...\\n\")\n","\n"," os.chdir(kohya)\n"," %env PYTHONPATH={kohya}\n"," !python {kohya}/finetune/make_captions.py \\\n"," {images_folder} \\\n"," --beam_search \\\n"," --max_data_loader_n_workers=2 \\\n"," --batch_size=1 \\\n"," --min_length={caption_min} \\\n"," --max_length={caption_max} \\\n"," --caption_extension=.txt\n","\n"," if not get_ipython().__dict__['user_ns']['_exit_code']:\n"," import random\n"," captions = [f for f in os.listdir(images_folder) if f.lower().endswith(\".txt\")]\n"," sample = []\n"," for txt in random.sample(captions, min(10, len(captions))):\n"," with open(os.path.join(images_folder, txt), 'r') as f:\n"," sample.append(f.read())\n","\n"," os.chdir(root_dir)\n"," %env PYTHONPATH=/env/python\n"," clear_output()\n"," print(f\"๐Ÿ“Š Captioning complete. Here are {len(sample)} example captions from your dataset:\")\n"," print(\"\".join(sample))\n","\n"]},{"cell_type":"code","execution_count":3,"metadata":{"cellView":"form","id":"WBFik7accyDz","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1743520101924,"user_tz":-240,"elapsed":315,"user":{"displayName":"ะกะตั€ะณะตะน ะ“ั€ะธะณะพั€ัŒะตะฒ (Sergey004)","userId":"04354315389975155845"}},"outputId":"88d9f071-f37f-4ae2-dd1f-89b7240f60d1"},"outputs":[{"output_type":"stream","name":"stdout","text":["\n","๐Ÿ“Ž Applied new activation tag(s): poyo\n","\n","๐Ÿšฎ Removed 128 tags.\n","\n","โœ… Done! Check your updated tags in the Extras below.\n"]}],"source":["if \"step1_installed_flag\" not in globals():\n"," raise Exception(\"Please run step 1 first!\")\n","\n","#@markdown ### 5๏ธโƒฃ Curate your tags\n","#@markdown Modify your dataset's tags. You can run this cell multiple times with different parameters.

\n","\n","#@markdown Put an activation tag at the start of every text file. This is useful to make learning better and activate your Lora easier. Set `keep_tokens` to 1 when training.

\n","#@markdown Common tags that are removed such as hair color, etc. will be \"absorbed\" by your activation tag.\n","global_activation_tag = \"poyo\" #@param {type:\"string\"}\n","remove_tags = \"candy, musical note, gradient, white background, background, green eyes, heart, gradient background, solo, artist name, traditional media, multicolored background, checkered background, purple background, looking at viewer, simple background, male focus, brown eyes, feet out of frame, underwear only, window, sitting, couch, night sky, night, starry sky, brown fur\" #@param {type:\"string\"}\n","#@markdown  \n","\n","#@markdown In this advanced section, you can search text files containing matching tags, and replace them with less/more/different tags. If you select the checkbox below, any extra tags will be put at the start of the file, letting you assign different activation tags to different parts of your dataset. Still, you may want a more advanced tool for this.\n","search_tags = \"\" #@param {type:\"string\"}\n","replace_with = \"\" #@param {type:\"string\"}\n","search_mode = \"OR\" #@param [\"OR\", \"AND\"]\n","new_becomes_activation_tag = False #@param {type:\"boolean\"}\n","#@markdown These may be useful sometimes. Will remove existing activation tags, be careful.\n","sort_alphabetically = False #@param {type:\"boolean\"}\n","remove_duplicates = False #@param {type:\"boolean\"}\n","\n","def split_tags(tagstr):\n"," return [s.strip() for s in tagstr.split(\",\") if s.strip()]\n","\n","activation_tag_list = split_tags(global_activation_tag)\n","remove_tags_list = split_tags(remove_tags)\n","search_tags_list = split_tags(search_tags)\n","replace_with_list = split_tags(replace_with)\n","replace_new_list = [t for t in replace_with_list if t not in search_tags_list]\n","\n","replace_with_list = [t for t in replace_with_list if t not in replace_new_list]\n","replace_new_list.reverse()\n","activation_tag_list.reverse()\n","\n","remove_count = 0\n","replace_count = 0\n","\n","for txt in [f for f in os.listdir(images_folder) if f.lower().endswith(\".txt\")]:\n","\n"," with open(os.path.join(images_folder, txt), 'r') as f:\n"," tags = [s.strip() for s in f.read().split(\",\")]\n","\n"," if remove_duplicates:\n"," tags = list(set(tags))\n"," if sort_alphabetically:\n"," tags.sort()\n","\n"," for rem in remove_tags_list:\n"," if rem in tags:\n"," remove_count += 1\n"," tags.remove(rem)\n","\n"," if \"AND\" in search_mode and all(r in tags for r in search_tags_list) \\\n"," or \"OR\" in search_mode and any(r in tags for r in search_tags_list):\n"," replace_count += 1\n"," for rem in search_tags_list:\n"," if rem in tags:\n"," tags.remove(rem)\n"," for add in replace_with_list:\n"," if add not in tags:\n"," tags.append(add)\n"," for new in replace_new_list:\n"," if new_becomes_activation_tag:\n"," if new in tags:\n"," tags.remove(new)\n"," tags.insert(0, new)\n"," else:\n"," if new not in tags:\n"," tags.append(new)\n","\n"," for act in activation_tag_list:\n"," if act in tags:\n"," tags.remove(act)\n"," tags.insert(0, act)\n","\n"," with open(os.path.join(images_folder, txt), 'w') as f:\n"," f.write(\", \".join(tags))\n","\n","if global_activation_tag:\n"," print(f\"\\n๐Ÿ“Ž Applied new activation tag(s): {', '.join(activation_tag_list)}\")\n","if remove_tags:\n"," print(f\"\\n๐Ÿšฎ Removed {remove_count} tags.\")\n","if search_tags:\n"," print(f\"\\n๐Ÿ’ซ Replaced in {replace_count} files.\")\n","print(\"\\nโœ… Done! Check your updated tags in the Extras below.\")\n"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"HuJB7BGAyZCw","cellView":"form","colab":{"base_uri":"https://localhost:8080/","height":58},"executionInfo":{"status":"ok","timestamp":1739256609188,"user_tz":-240,"elapsed":19,"user":{"displayName":"ะžะปัŒะณะฐ","userId":"01931168844080915348"}},"outputId":"60dd9b50-d526-4e32-e1ac-02db4481d457"},"outputs":[{"output_type":"display_data","data":{"text/plain":[""],"text/markdown":"### ๐Ÿฆ€ [Click here to open the Lora trainer](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb)"},"metadata":{}}],"source":["#@markdown ### 6๏ธโƒฃ Ready\n","#@markdown You should be ready to [train your Lora](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb)!\n","\n","from IPython.display import Markdown, display\n","display(Markdown(f\"### ๐Ÿฆ€ [Click here to open the Lora trainer](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb)\"))\n"]},{"cell_type":"markdown","metadata":{"id":"gDB9GXRONfiU"},"source":["## *๏ธโƒฃ Extras"]},{"cell_type":"code","execution_count":5,"metadata":{"cellView":"form","id":"xEsqOglcc6hA","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1743520112658,"user_tz":-240,"elapsed":89,"user":{"displayName":"ะกะตั€ะณะตะน ะ“ั€ะธะณะพั€ัŒะตะฒ (Sergey004)","userId":"04354315389975155845"}},"outputId":"60f838ea-f02f-4a74-8fa1-6590f3783165"},"outputs":[{"output_type":"stream","name":"stdout","text":["๐Ÿ“Š Top 50 tags:\n","poyo (35)\n","animal ears (35)\n","furry male (35)\n","short hair (34)\n","1boy (34)\n","furry (34)\n","yellow eyes (33)\n","white hair (33)\n","blush (26)\n","mouse ears (26)\n","long sleeves (22)\n","sweater (22)\n","body fur (21)\n","tail (20)\n","white fur (20)\n","closed mouth (18)\n","black sweater (16)\n","upper body (16)\n","standing (14)\n","thick eyebrows (13)\n","grey background (13)\n","pants (12)\n","outdoors (11)\n","black pants (10)\n","mouse tail (10)\n","cowboy shot (9)\n","smile (9)\n","male child (7)\n","holding (7)\n","open mouth (7)\n","shirt (7)\n","animal hands (7)\n",":< (7)\n","indoors (6)\n","potted plant (6)\n","full body (6)\n",":3 (6)\n","plant (5)\n","portrait (5)\n","chibi (5)\n","day (5)\n","tree (5)\n","white sweater (5)\n","blurry (5)\n","whiskers (5)\n","english text (4)\n","jacket (4)\n","scarf (4)\n","coat (4)\n","pov (4)\n"]}],"source":["if \"step1_installed_flag\" not in globals():\n"," raise Exception(\"Please run step 1 first!\")\n","\n","#@markdown ### ๐Ÿ“ˆ Analyze Tags\n","#@markdown Perhaps you need another look at your dataset.\n","show_top_tags = 50 #@param {type:\"number\"}\n","\n","from collections import Counter\n","top_tags = Counter()\n","\n","for txt in [f for f in os.listdir(images_folder) if f.lower().endswith(\".txt\")]:\n"," with open(os.path.join(images_folder, txt), 'r') as f:\n"," top_tags.update([s.strip() for s in f.read().split(\",\")])\n","\n","top_tags = Counter(top_tags)\n","print(f\"๐Ÿ“Š Top {show_top_tags} tags:\")\n","for k, v in top_tags.most_common(show_top_tags):\n"," print(f\"{k} ({v})\")"]},{"cell_type":"code","execution_count":null,"metadata":{"cellView":"form","id":"x56xQYwuOz2V"},"outputs":[],"source":["#@markdown ### ๐Ÿ“‚ Unzip dataset\n","#@markdown It's much slower to upload individual files to your Drive, so you may want to upload a zip if you have your dataset in your computer.\n","zip = \"/content/drive/MyDrive/Loras/example.zip\" #@param {type:\"string\"}\n","extract_to = \"/content/drive/MyDrive/Loras/example/dataset\" #@param {type:\"string\"}\n","\n","import os, zipfile\n","\n","if not os.path.exists('/content/drive'):\n"," from google.colab import drive\n"," print(\"๐Ÿ“‚ Connecting to Google Drive...\")\n"," drive.mount('/content/drive')\n","\n","os.makedirs(extract_to, exist_ok=True)\n","\n","with zipfile.ZipFile(zip, 'r') as f:\n"," f.extractall(extract_to)\n","\n","print(\"โœ… Done\")\n"]},{"cell_type":"code","execution_count":6,"metadata":{"cellView":"form","id":"dLetTcLVOvAE","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1743520123930,"user_tz":-240,"elapsed":5354,"user":{"displayName":"ะกะตั€ะณะตะน ะ“ั€ะธะณะพั€ัŒะตะฒ (Sergey004)","userId":"04354315389975155845"}},"outputId":"9a6821a8-a53f-4b0e-fb5b-f6ddb6071591"},"outputs":[{"output_type":"stream","name":"stdout","text":["๐Ÿ“Loras | 1 images | 0 captions | 1 other files\n","๐Ÿ“Loras/saucebear/dataset | 68 images | 68 captions |\n","๐Ÿ“Loras/saucebear_ponyxl/dataset | 65 images | 65 captions | 65 other files\n","๐Ÿ“Loras/saucebear_ponyxlv1.1/dataset | 68 images | 68 captions | 68 other files\n","๐Ÿ“Loras/bigfreddy_ponyxl/dataset | 119 images | 119 captions | 119 other files\n","๐Ÿ“Loras/saucebear_Illustrious/dataset | 65 images | 65 captions | 65 other files\n","๐Ÿ“Loras/milkytiger_Illustrious/dataset | 79 images | 84 captions | 79 other files\n","๐Ÿ“Loras/poyo_Illustrious/dataset | 35 images | 35 captions | 26 other files\n"]}],"source":["#@markdown ### ๐Ÿ”ข Count datasets\n","#@markdown Google Drive makes it impossible to count the files in a folder, so this will show you the file counts in all folders and subfolders.\n","folder = \"/content/drive/MyDrive/Loras\" #@param {type:\"string\"}\n","\n","import os\n","from google.colab import drive\n","\n","if not os.path.exists('/content/drive'):\n"," print(\"๐Ÿ“‚ Connecting to Google Drive...\\n\")\n"," drive.mount('/content/drive')\n","\n","tree = {}\n","exclude = (\"_logs\", \"/output\")\n","for i, (root, dirs, files) in enumerate(os.walk(folder, topdown=True)):\n"," dirs[:] = [d for d in dirs if all(ex not in d for ex in exclude)]\n"," images = len([f for f in files if f.lower().endswith((\".png\", \".jpg\", \".jpeg\"))])\n"," captions = len([f for f in files if f.lower().endswith(\".txt\")])\n"," others = len(files) - images - captions\n"," path = root[folder.rfind(\"/\")+1:]\n"," tree[path] = None if not images else f\"{images:>4} images | {captions:>4} captions |\"\n"," if tree[path] and others:\n"," tree[path] += f\" {others:>4} other files\"\n","\n","pad = max(len(k) for k in tree)\n","print(\"\\n\".join(f\"๐Ÿ“{k.ljust(pad)} | {v}\" for k, v in tree.items() if v))\n"]},{"cell_type":"code","execution_count":4,"metadata":{"id":"IQgKAaw2H6K6","cellView":"form","executionInfo":{"status":"ok","timestamp":1743520102098,"user_tz":-240,"elapsed":170,"user":{"displayName":"ะกะตั€ะณะตะน ะ“ั€ะธะณะพั€ัŒะตะฒ (Sergey004)","userId":"04354315389975155845"}}},"outputs":[],"source":["if \"step1_installed_flag\" not in globals():\n"," raise Exception(\"Please run step 1 first!\")\n","\n","from PIL import Image\n","import os\n","Image.MAX_IMAGE_PIXELS = None\n","\n","#@markdown ### ๐Ÿ–ผ๏ธ Reduce dataset filesize\n","#@markdown This will convert all images in the project folder to jpeg, reducing filesize without affecting quality too much. This can also solve some errors.\n","location = images_folder\n","\n","for dir in [d[0] for d in os.walk(location)]:\n"," os.chdir(dir)\n"," converted = False\n"," for file_name in list(os.listdir(\".\")):\n"," try:\n"," # Convert png to jpeg\n"," if file_name.endswith(\".png\"):\n"," if not converted:\n"," print(f\"Converting {dir}\")\n"," converted = True\n"," im = Image.open(file_name)\n"," im = im.convert(\"RGB\")\n"," new_file_name = os.path.splitext(file_name)[0] + \".jpeg\"\n"," im.save(new_file_name, quality=95)\n"," os.remove(file_name)\n"," file_name = new_file_name\n"," # Resize large jpegs\n"," if file_name.endswith((\".jpeg\", \".jpg\")) and os.path.getsize(file_name) > 2000000:\n"," if not converted:\n"," print(f\"Converting {dir}\")\n"," converted = True\n"," im = Image.open(file_name)\n"," im = im.resize((int(im.width/2), int(im.height/2)))\n"," im.save(file_name, quality=95)\n"," # Rename jpg to jpeg\n"," if file_name.endswith(\".jpg\"):\n"," if not converted:\n"," print(f\"Converting {dir}\")\n"," new_file_name = os.path.splitext(file_name)[0] + \".jpeg\"\n"," os.rename(file_name, new_file_name)\n"," except Exception as e:\n"," print(f\"An error occurred while processing {file_name}: {e}\")\n"," if converted:\n"," print(f\"Converted {dir}\")\n"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"y6PKW-LIr214"},"outputs":[],"source":["if \"step1_installed_flag\" not in globals():\n"," raise Exception(\"Please run step 1 first!\")\n","\n","#@markdown ### ๐Ÿšฎ Clean folder\n","#@markdown Careful! Deletes all non-image files in the project folder.\n","\n","!find {images_folder} -type f ! \\( -name '*.png' -o -name '*.jpg' -o -name '*.jpeg' \\) -delete\n"]}],"metadata":{"accelerator":"GPU","colab":{"provenance":[{"file_id":"1RQESjCSXkdHTG3Fv0PzyqUhcYbmCrPLX","timestamp":1742837406579},{"file_id":"https://github.com/hollowstrawberry/kohya-colab/blob/main/Dataset_Maker.ipynb","timestamp":1719213740517}],"gpuType":"T4"},"kernelspec":{"display_name":"Python 3","name":"python3"},"language_info":{"name":"python"}},"nbformat":4,"nbformat_minor":0} \ No newline at end of file diff --git a/pov_you_re_a_pancake_meme_Illustrious/Train poyo_Illustrious b/pov_you_re_a_pancake_meme_Illustrious/Train poyo_Illustrious new file mode 100644 index 0000000000000000000000000000000000000000..17b490bd37c7f0616e021826de364341d68cff07 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/Train poyo_Illustrious @@ -0,0 +1 @@ +{"cells":[{"cell_type":"markdown","metadata":{"id":"rmCPmqFL6hCQ"},"source":["# ๐ŸŒŸ XL Lora Trainer by Hollowstrawberry\n","\n","Colab Premium is recommended. Ideally you'd be changing the runtime to an A100 and use the maximum batch size, it will be several times faster. \n","\n","This colab is possible by open source code from talented people:\n","* [kohya-ss](https://github.com/kohya-ss/sd-scripts)\n","* [derrian-distro](https://github.com/derrian-distro/LoRA_Easy_Training_scripts_Backend/)\n","* [Linaqruf](https://github.com/Linaqruf/kohya-trainer)\n","* [Jelosus2](https://github.com/Jelosus2/LoRA_Easy_Training_Colab)"]},{"cell_type":"markdown","metadata":{"id":"vJ8clWTZEu-g"},"source":["### โญ• Disclaimer\n","The purpose of this document is to research bleeding-edge technologies in the field of machine learning.\n","Please read and follow the [Google Colab guidelines](https://research.google.com/colaboratory/faq.html) and its [Terms of Service](https://research.google.com/colaboratory/tos_v3.html)."]},{"cell_type":"markdown","metadata":{"id":"dPQlB4djNm3C"},"source":["| |GitHub|๐Ÿ‡ฌ๐Ÿ‡ง English|๐Ÿ‡ช๐Ÿ‡ธ Spanish|\n","|:--|:-:|:-:|:-:|\n","| ๐Ÿ  **Homepage** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab) | | |\n","| ๐Ÿ“Š **Dataset Maker** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab/blob/main/Dataset_Maker.ipynb) | [![Open in Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Dataset_Maker.ipynb) | [![Abrir en Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge-spanish.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Spanish_Dataset_Maker.ipynb) |\n","| โญ **Lora Trainer** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb) | [![Open in Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb) | [![Abrir en Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge-spanish.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Spanish_Lora_Trainer.ipynb) |\n","| ๐ŸŒŸ **XL Lora Trainer** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer_XL.ipynb) | [![Open in Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer_XL.ipynb) | |\n","| ๐ŸŒŸ **Legacy XL Trainer** | [![GitHub](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/github.svg)](https://github.com/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer_XL_Legacy.ipynb) | [![Open in Colab](https://raw.githubusercontent.com/hollowstrawberry/kohya-colab/main/assets/colab-badge.svg)](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer_XL_Legacy.ipynb) | |"]},{"cell_type":"code","execution_count":1,"metadata":{"cellView":"form","id":"OglZzI_ujZq-","colab":{"base_uri":"https://localhost:8080/","height":0},"executionInfo":{"status":"ok","timestamp":1743522145721,"user_tz":-240,"elapsed":1995756,"user":{"displayName":"ะกะตั€ะณะตะน ะ“ั€ะธะณะพั€ัŒะตะฒ (Sergey004)","userId":"04354315389975155845"}},"outputId":"1295ba8e-d6d6-430f-f49b-d56062e1d1cc"},"outputs":[{"output_type":"stream","name":"stdout","text":["๐Ÿ“‚ Connecting to Google Drive...\n","Mounted at /content/drive\n","\n","๐Ÿ’ฟ Checking dataset...\n","๐Ÿ“MyDrive/Loras/poyo_Illustrious/dataset\n","๐Ÿ“ˆ Found 35 images with 2 repeats, equaling 70 steps.\n","๐Ÿ“‰ Divide 70 steps by 4 batch size to get 17.5 steps per epoch.\n","๐Ÿ”ฎ There will be 10 epochs, for around 175 total training steps.\n","\n","๐Ÿญ Installing trainer...\n","\n","63 packages can be upgraded. Run 'apt list --upgradable' to see them.\n","\u001b[1;33mW: \u001b[0mSkipping acquire of configured file 'main/source/Sources' as repository 'https://r2u.stat.illinois.edu/ubuntu jammy InRelease' does not seem to provide it (sources.list entry misspelt?)\u001b[0m\n","The following additional packages will be installed:\n"," libaria2-0 libc-ares2 python3-pip-whl python3-setuptools-whl\n","The following NEW packages will be installed:\n"," aria2 libaria2-0 libc-ares2 python3-pip-whl python3-setuptools-whl python3.10-venv\n","0 upgraded, 6 newly installed, 0 to remove and 63 not upgraded.\n","Need to get 3,987 kB of archives.\n","After this operation, 8,325 kB of additional disk space will be used.\n","Selecting previously unselected package libc-ares2:amd64.\n","(Reading database ... 124947 files and directories currently installed.)\n","Preparing to unpack .../0-libc-ares2_1.18.1-1ubuntu0.22.04.3_amd64.deb ...\n","Unpacking libc-ares2:amd64 (1.18.1-1ubuntu0.22.04.3) ...\n","Selecting previously unselected package libaria2-0:amd64.\n","Preparing to unpack .../1-libaria2-0_1.36.0-1_amd64.deb ...\n","Unpacking libaria2-0:amd64 (1.36.0-1) ...\n","Selecting previously unselected package aria2.\n","Preparing to unpack .../2-aria2_1.36.0-1_amd64.deb ...\n","Unpacking aria2 (1.36.0-1) ...\n","Selecting previously unselected package python3-pip-whl.\n","Preparing to unpack .../3-python3-pip-whl_22.0.2+dfsg-1ubuntu0.5_all.deb ...\n","Unpacking python3-pip-whl (22.0.2+dfsg-1ubuntu0.5) ...\n","Selecting previously unselected package python3-setuptools-whl.\n","Preparing to unpack .../4-python3-setuptools-whl_59.6.0-1.2ubuntu0.22.04.2_all.deb ...\n","Unpacking python3-setuptools-whl (59.6.0-1.2ubuntu0.22.04.2) ...\n","Selecting previously unselected package python3.10-venv.\n","Preparing to unpack .../5-python3.10-venv_3.10.12-1~22.04.9_amd64.deb ...\n","Unpacking python3.10-venv (3.10.12-1~22.04.9) ...\n","Setting up python3-setuptools-whl (59.6.0-1.2ubuntu0.22.04.2) ...\n","Setting up python3-pip-whl (22.0.2+dfsg-1ubuntu0.5) ...\n","Setting up libc-ares2:amd64 (1.18.1-1ubuntu0.22.04.3) ...\n","Setting up libaria2-0:amd64 (1.36.0-1) ...\n","Setting up python3.10-venv (3.10.12-1~22.04.9) ...\n","Setting up aria2 (1.36.0-1) ...\n","Processing triggers for man-db (2.10.2-1) ...\n","Processing triggers for libc-bin (2.35-0ubuntu3.8) ...\n","/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libumf.so.0 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n","\n","/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n","\n","Cloning into '/content/trainer'...\n","remote: Enumerating objects: 347, done.\u001b[K\n","remote: Counting objects: 100% (185/185), done.\u001b[K\n","remote: Compressing objects: 100% (50/50), done.\u001b[K\n","remote: Total 347 (delta 162), reused 135 (delta 135), pack-reused 162 (from 2)\u001b[K\n","Receiving objects: 100% (347/347), 7.79 MiB | 12.85 MiB/s, done.\n","Resolving deltas: 100% (200/200), done.\n","Submodule 'sd_scripts' (https://github.com/kohya-ss/sd-scripts) registered for path 'sd_scripts'\n","Cloning into '/content/trainer/sd_scripts'...\n","Submodule path 'sd_scripts': checked out 'e89653975ddf429cdf0c0fd268da0a5a3e8dba1f'\n","creating venv and installing requirements\n","Looking in indexes: https://download.pytorch.org/whl/cu124\n","Collecting torch==2.5.1\n"," Downloading https://download.pytorch.org/whl/cu124/torch-2.5.1%2Bcu124-cp310-cp310-linux_x86_64.whl (908.3 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m908.3/908.3 MB\u001b[0m \u001b[31m1.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting torchvision==0.20.1\n"," Downloading https://download.pytorch.org/whl/cu124/torchvision-0.20.1%2Bcu124-cp310-cp310-linux_x86_64.whl (7.3 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m7.3/7.3 MB\u001b[0m \u001b[31m80.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-cuda-runtime-cu12==12.4.127\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (883 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m883.7/883.7 KB\u001b[0m \u001b[31m70.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting triton==3.1.0\n"," Downloading https://download.pytorch.org/whl/triton-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (209.5 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m209.5/209.5 MB\u001b[0m \u001b[31m6.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting fsspec\n"," Downloading https://download.pytorch.org/whl/fsspec-2024.6.1-py3-none-any.whl (177 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m177.6/177.6 KB\u001b[0m \u001b[31m27.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-cusolver-cu12==11.6.1.9\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl (127.9 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m127.9/127.9 MB\u001b[0m \u001b[31m8.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-cuda-nvrtc-cu12==12.4.127\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (24.6 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m24.6/24.6 MB\u001b[0m \u001b[31m49.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-cudnn-cu12==9.1.0.70\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl (664.8 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m664.8/664.8 MB\u001b[0m \u001b[31m881.2 kB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-cuda-cupti-cu12==12.4.127\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (13.8 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m13.8/13.8 MB\u001b[0m \u001b[31m85.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting sympy==1.13.1\n"," Downloading https://download.pytorch.org/whl/sympy-1.13.1-py3-none-any.whl (6.2 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m6.2/6.2 MB\u001b[0m \u001b[31m91.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-cusparse-cu12==12.3.1.170\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl (207.5 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m207.5/207.5 MB\u001b[0m \u001b[31m6.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-cufft-cu12==11.2.1.3\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl (211.5 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m211.5/211.5 MB\u001b[0m \u001b[31m5.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-nccl-cu12==2.21.5\n"," Downloading https://download.pytorch.org/whl/nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl (188.7 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m188.7/188.7 MB\u001b[0m \u001b[31m4.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting typing-extensions>=4.8.0\n"," Downloading https://download.pytorch.org/whl/typing_extensions-4.12.2-py3-none-any.whl (37 kB)\n","Collecting nvidia-cublas-cu12==12.4.5.8\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl (363.4 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m363.4/363.4 MB\u001b[0m \u001b[31m3.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-nvjitlink-cu12==12.4.127\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (21.1 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m21.1/21.1 MB\u001b[0m \u001b[31m51.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting filelock\n"," Downloading https://download.pytorch.org/whl/filelock-3.13.1-py3-none-any.whl (11 kB)\n","Collecting networkx\n"," Downloading https://download.pytorch.org/whl/networkx-3.3-py3-none-any.whl (1.7 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m1.7/1.7 MB\u001b[0m \u001b[31m67.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-nvtx-cu12==12.4.127\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl (99 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m99.1/99.1 KB\u001b[0m \u001b[31m12.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting nvidia-curand-cu12==10.3.5.147\n"," Downloading https://download.pytorch.org/whl/cu124/nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl (56.3 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m56.3/56.3 MB\u001b[0m \u001b[31m10.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting jinja2\n"," Downloading https://download.pytorch.org/whl/Jinja2-3.1.4-py3-none-any.whl (133 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m133.3/133.3 KB\u001b[0m \u001b[31m18.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting pillow!=8.3.*,>=5.3.0\n"," Downloading https://download.pytorch.org/whl/pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (4.4 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m4.4/4.4 MB\u001b[0m \u001b[31m99.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting numpy\n"," Downloading https://download.pytorch.org/whl/numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.3 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m16.3/16.3 MB\u001b[0m \u001b[31m86.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting mpmath<1.4,>=1.1.0\n"," Downloading https://download.pytorch.org/whl/mpmath-1.3.0-py3-none-any.whl (536 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m536.2/536.2 KB\u001b[0m \u001b[31m54.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting MarkupSafe>=2.0\n"," Downloading https://download.pytorch.org/whl/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25 kB)\n","Installing collected packages: mpmath, typing-extensions, sympy, pillow, nvidia-nvtx-cu12, nvidia-nvjitlink-cu12, nvidia-nccl-cu12, nvidia-curand-cu12, nvidia-cufft-cu12, nvidia-cuda-runtime-cu12, nvidia-cuda-nvrtc-cu12, nvidia-cuda-cupti-cu12, nvidia-cublas-cu12, numpy, networkx, MarkupSafe, fsspec, filelock, triton, nvidia-cusparse-cu12, nvidia-cudnn-cu12, jinja2, nvidia-cusolver-cu12, torch, torchvision\n","Successfully installed MarkupSafe-2.1.5 filelock-3.13.1 fsspec-2024.6.1 jinja2-3.1.4 mpmath-1.3.0 networkx-3.3 numpy-2.1.2 nvidia-cublas-cu12-12.4.5.8 nvidia-cuda-cupti-cu12-12.4.127 nvidia-cuda-nvrtc-cu12-12.4.127 nvidia-cuda-runtime-cu12-12.4.127 nvidia-cudnn-cu12-9.1.0.70 nvidia-cufft-cu12-11.2.1.3 nvidia-curand-cu12-10.3.5.147 nvidia-cusolver-cu12-11.6.1.9 nvidia-cusparse-cu12-12.3.1.170 nvidia-nccl-cu12-2.21.5 nvidia-nvjitlink-cu12-12.4.127 nvidia-nvtx-cu12-12.4.127 pillow-11.0.0 sympy-1.13.1 torch-2.5.1+cu124 torchvision-0.20.1+cu124 triton-3.1.0 typing-extensions-4.12.2\n","Looking in indexes: https://download.pytorch.org/whl/cu124\n","Collecting xformers==0.0.29.post1\n"," Downloading https://download.pytorch.org/whl/cu124/xformers-0.0.29.post1-cp310-cp310-manylinux_2_28_x86_64.whl (44.1 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m44.1/44.1 MB\u001b[0m \u001b[31m10.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: numpy in ./venv/lib/python3.10/site-packages (from xformers==0.0.29.post1) (2.1.2)\n","Requirement already satisfied: torch==2.5.1 in ./venv/lib/python3.10/site-packages (from xformers==0.0.29.post1) (2.5.1+cu124)\n","Requirement already satisfied: nvidia-cusparse-cu12==12.3.1.170 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (12.3.1.170)\n","Requirement already satisfied: sympy==1.13.1 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (1.13.1)\n","Requirement already satisfied: nvidia-cusolver-cu12==11.6.1.9 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (11.6.1.9)\n","Requirement already satisfied: typing-extensions>=4.8.0 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (4.12.2)\n","Requirement already satisfied: nvidia-cufft-cu12==11.2.1.3 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (11.2.1.3)\n","Requirement already satisfied: networkx in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (3.3)\n","Requirement already satisfied: nvidia-nccl-cu12==2.21.5 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (2.21.5)\n","Requirement already satisfied: nvidia-curand-cu12==10.3.5.147 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (10.3.5.147)\n","Requirement already satisfied: nvidia-cuda-cupti-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (12.4.127)\n","Requirement already satisfied: fsspec in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (2024.6.1)\n","Requirement already satisfied: nvidia-cudnn-cu12==9.1.0.70 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (9.1.0.70)\n","Requirement already satisfied: filelock in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (3.13.1)\n","Requirement already satisfied: nvidia-nvjitlink-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (12.4.127)\n","Requirement already satisfied: nvidia-cuda-runtime-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (12.4.127)\n","Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (12.4.127)\n","Requirement already satisfied: triton==3.1.0 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (3.1.0)\n","Requirement already satisfied: nvidia-nvtx-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (12.4.127)\n","Requirement already satisfied: nvidia-cublas-cu12==12.4.5.8 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (12.4.5.8)\n","Requirement already satisfied: jinja2 in ./venv/lib/python3.10/site-packages (from torch==2.5.1->xformers==0.0.29.post1) (3.1.4)\n","Requirement already satisfied: mpmath<1.4,>=1.1.0 in ./venv/lib/python3.10/site-packages (from sympy==1.13.1->torch==2.5.1->xformers==0.0.29.post1) (1.3.0)\n","Requirement already satisfied: MarkupSafe>=2.0 in ./venv/lib/python3.10/site-packages (from jinja2->torch==2.5.1->xformers==0.0.29.post1) (2.1.5)\n","Installing collected packages: xformers\n","Successfully installed xformers-0.0.29.post1\n","Obtaining file:///content/trainer/sd_scripts (from -r requirements.txt (line 45))\n"," Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n","Collecting accelerate==0.33.0\n"," Downloading accelerate-0.33.0-py3-none-any.whl (315 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m315.1/315.1 KB\u001b[0m \u001b[31m5.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting transformers==4.44.0\n"," Downloading transformers-4.44.0-py3-none-any.whl (9.5 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m9.5/9.5 MB\u001b[0m \u001b[31m26.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting diffusers[torch]==0.25.0\n"," Downloading diffusers-0.25.0-py3-none-any.whl (1.8 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m1.8/1.8 MB\u001b[0m \u001b[31m48.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting ftfy==6.1.1\n"," Downloading ftfy-6.1.1-py3-none-any.whl (53 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m53.1/53.1 KB\u001b[0m \u001b[31m7.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting opencv-python==4.8.1.78\n"," Downloading opencv_python-4.8.1.78-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (61.7 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m61.7/61.7 MB\u001b[0m \u001b[31m10.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting einops==0.7.0\n"," Downloading einops-0.7.0-py3-none-any.whl (44 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m44.6/44.6 KB\u001b[0m \u001b[31m6.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting pytorch-lightning==1.9.0\n"," Downloading pytorch_lightning-1.9.0-py3-none-any.whl (825 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m825.8/825.8 KB\u001b[0m \u001b[31m69.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting bitsandbytes==0.44.0\n"," Downloading bitsandbytes-0.44.0-py3-none-manylinux_2_24_x86_64.whl (122.4 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m122.4/122.4 MB\u001b[0m \u001b[31m8.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting prodigyopt==1.0\n"," Downloading prodigyopt-1.0-py3-none-any.whl (5.5 kB)\n","Collecting lion-pytorch==0.0.6\n"," Downloading lion_pytorch-0.0.6-py3-none-any.whl (4.2 kB)\n","Collecting schedulefree==1.4\n"," Downloading schedulefree-1.4.tar.gz (22 kB)\n"," Installing build dependencies ... \u001b[?25l\u001b[?25hdone\n"," Getting requirements to build wheel ... \u001b[?25l\u001b[?25hdone\n"," Preparing metadata (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n","Collecting tensorboard\n"," Downloading tensorboard-2.19.0-py3-none-any.whl (5.5 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m5.5/5.5 MB\u001b[0m \u001b[31m105.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting safetensors==0.4.4\n"," Downloading safetensors-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m435.5/435.5 KB\u001b[0m \u001b[31m30.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting altair==4.2.2\n"," Downloading altair-4.2.2-py3-none-any.whl (813 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m813.6/813.6 KB\u001b[0m \u001b[31m64.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting easygui==0.98.3\n"," Downloading easygui-0.98.3-py2.py3-none-any.whl (92 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m92.7/92.7 KB\u001b[0m \u001b[31m15.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting toml==0.10.2\n"," Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB)\n","Collecting voluptuous==0.13.1\n"," Downloading voluptuous-0.13.1-py3-none-any.whl (29 kB)\n","Collecting huggingface-hub==0.24.5\n"," Downloading huggingface_hub-0.24.5-py3-none-any.whl (417 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m417.5/417.5 KB\u001b[0m \u001b[31m46.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting imagesize==1.4.1\n"," Downloading imagesize-1.4.1-py2.py3-none-any.whl (8.8 kB)\n","Collecting rich==13.7.0\n"," Downloading rich-13.7.0-py3-none-any.whl (240 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m240.6/240.6 KB\u001b[0m \u001b[31m31.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting sentencepiece==0.2.0\n"," Downloading sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m1.3/1.3 MB\u001b[0m \u001b[31m90.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting numpy<2.0.0,>=1.17\n"," Downloading numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m18.2/18.2 MB\u001b[0m \u001b[31m80.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: torch>=1.10.0 in ./venv/lib/python3.10/site-packages (from accelerate==0.33.0->-r requirements.txt (line 1)) (2.5.1+cu124)\n","Collecting packaging>=20.0\n"," Downloading packaging-24.2-py3-none-any.whl (65 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m65.5/65.5 KB\u001b[0m \u001b[31m8.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting psutil\n"," Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m278.0/278.0 KB\u001b[0m \u001b[31m32.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting pyyaml\n"," Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (751 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m751.2/751.2 KB\u001b[0m \u001b[31m68.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting regex!=2019.12.17\n"," Downloading regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (781 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m781.7/781.7 KB\u001b[0m \u001b[31m60.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: filelock in ./venv/lib/python3.10/site-packages (from transformers==4.44.0->-r requirements.txt (line 2)) (3.13.1)\n","Collecting tokenizers<0.20,>=0.19\n"," Downloading tokenizers-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m3.6/3.6 MB\u001b[0m \u001b[31m72.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting requests\n"," Downloading requests-2.32.3-py3-none-any.whl (64 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m64.9/64.9 KB\u001b[0m \u001b[31m9.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting tqdm>=4.27\n"," Downloading tqdm-4.67.1-py3-none-any.whl (78 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m78.5/78.5 KB\u001b[0m \u001b[31m11.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting importlib-metadata\n"," Downloading importlib_metadata-8.6.1-py3-none-any.whl (26 kB)\n","Requirement already satisfied: Pillow in ./venv/lib/python3.10/site-packages (from diffusers[torch]==0.25.0->-r requirements.txt (line 3)) (11.0.0)\n","Collecting wcwidth>=0.2.5\n"," Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB)\n","Requirement already satisfied: typing-extensions>=4.0.0 in ./venv/lib/python3.10/site-packages (from pytorch-lightning==1.9.0->-r requirements.txt (line 8)) (4.12.2)\n","Collecting lightning-utilities>=0.4.2\n"," Downloading lightning_utilities-0.14.2-py3-none-any.whl (28 kB)\n","Requirement already satisfied: fsspec[http]>2021.06.0 in ./venv/lib/python3.10/site-packages (from pytorch-lightning==1.9.0->-r requirements.txt (line 8)) (2024.6.1)\n","Collecting torchmetrics>=0.7.0\n"," Downloading torchmetrics-1.7.0-py3-none-any.whl (960 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m960.9/960.9 KB\u001b[0m \u001b[31m59.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting jsonschema>=3.0\n"," Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m88.5/88.5 KB\u001b[0m \u001b[31m12.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting pandas>=0.18\n"," Downloading pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m13.1/13.1 MB\u001b[0m \u001b[31m67.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting entrypoints\n"," Downloading entrypoints-0.4-py3-none-any.whl (5.3 kB)\n","Collecting toolz\n"," Downloading toolz-1.0.0-py3-none-any.whl (56 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m56.4/56.4 KB\u001b[0m \u001b[31m6.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: jinja2 in ./venv/lib/python3.10/site-packages (from altair==4.2.2->-r requirements.txt (line 16)) (3.1.4)\n","Collecting markdown-it-py>=2.2.0\n"," Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m87.5/87.5 KB\u001b[0m \u001b[31m10.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting pygments<3.0.0,>=2.13.0\n"," Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m1.2/1.2 MB\u001b[0m \u001b[31m59.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: setuptools>=41.0.0 in ./venv/lib/python3.10/site-packages (from tensorboard->-r requirements.txt (line 13)) (59.6.0)\n","Collecting werkzeug>=1.0.1\n"," Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m224.5/224.5 KB\u001b[0m \u001b[31m30.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting protobuf!=4.24.0,>=3.19.6\n"," Downloading protobuf-6.30.2-cp39-abi3-manylinux2014_x86_64.whl (316 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m316.2/316.2 KB\u001b[0m \u001b[31m36.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting tensorboard-data-server<0.8.0,>=0.7.0\n"," Downloading tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl (6.6 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m6.6/6.6 MB\u001b[0m \u001b[31m53.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting markdown>=2.6.8\n"," Downloading Markdown-3.7-py3-none-any.whl (106 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m106.3/106.3 KB\u001b[0m \u001b[31m16.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting absl-py>=0.4\n"," Downloading absl_py-2.2.1-py3-none-any.whl (277 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m277.3/277.3 KB\u001b[0m \u001b[31m33.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting grpcio>=1.48.2\n"," Downloading grpcio-1.71.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m5.9/5.9 MB\u001b[0m \u001b[31m54.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting six>1.9\n"," Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)\n","Collecting aiohttp!=4.0.0a0,!=4.0.0a1\n"," Downloading aiohttp-3.11.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m1.6/1.6 MB\u001b[0m \u001b[31m88.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting rpds-py>=0.7.1\n"," Downloading rpds_py-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m389.5/389.5 KB\u001b[0m \u001b[31m40.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting referencing>=0.28.4\n"," Downloading referencing-0.36.2-py3-none-any.whl (26 kB)\n","Collecting attrs>=22.2.0\n"," Downloading attrs-25.3.0-py3-none-any.whl (63 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m63.8/63.8 KB\u001b[0m \u001b[31m9.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting jsonschema-specifications>=2023.03.6\n"," Downloading jsonschema_specifications-2024.10.1-py3-none-any.whl (18 kB)\n","Collecting mdurl~=0.1\n"," Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)\n","Collecting python-dateutil>=2.8.2\n"," Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m229.9/229.9 KB\u001b[0m \u001b[31m27.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting tzdata>=2022.7\n"," Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m347.8/347.8 KB\u001b[0m \u001b[31m36.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting pytz>=2020.1\n"," Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m509.2/509.2 KB\u001b[0m \u001b[31m42.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: nvidia-cusparse-cu12==12.3.1.170 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (12.3.1.170)\n","Requirement already satisfied: nvidia-nvjitlink-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (12.4.127)\n","Requirement already satisfied: nvidia-nvtx-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (12.4.127)\n","Requirement already satisfied: nvidia-cudnn-cu12==9.1.0.70 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (9.1.0.70)\n","Requirement already satisfied: nvidia-cublas-cu12==12.4.5.8 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (12.4.5.8)\n","Requirement already satisfied: nvidia-cufft-cu12==11.2.1.3 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (11.2.1.3)\n","Requirement already satisfied: nvidia-cusolver-cu12==11.6.1.9 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (11.6.1.9)\n","Requirement already satisfied: nvidia-nccl-cu12==2.21.5 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (2.21.5)\n","Requirement already satisfied: triton==3.1.0 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (3.1.0)\n","Requirement already satisfied: nvidia-cuda-runtime-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (12.4.127)\n","Requirement already satisfied: sympy==1.13.1 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (1.13.1)\n","Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (12.4.127)\n","Requirement already satisfied: nvidia-cuda-cupti-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (12.4.127)\n","Requirement already satisfied: networkx in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (3.3)\n","Requirement already satisfied: nvidia-curand-cu12==10.3.5.147 in ./venv/lib/python3.10/site-packages (from torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (10.3.5.147)\n","Requirement already satisfied: mpmath<1.4,>=1.1.0 in ./venv/lib/python3.10/site-packages (from sympy==1.13.1->torch>=1.10.0->accelerate==0.33.0->-r requirements.txt (line 1)) (1.3.0)\n","Requirement already satisfied: MarkupSafe>=2.1.1 in ./venv/lib/python3.10/site-packages (from werkzeug>=1.0.1->tensorboard->-r requirements.txt (line 13)) (2.1.5)\n","Collecting zipp>=3.20\n"," Downloading zipp-3.21.0-py3-none-any.whl (9.6 kB)\n","Collecting certifi>=2017.4.17\n"," Downloading certifi-2025.1.31-py3-none-any.whl (166 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m166.4/166.4 KB\u001b[0m \u001b[31m21.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting idna<4,>=2.5\n"," Downloading idna-3.10-py3-none-any.whl (70 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m70.4/70.4 KB\u001b[0m \u001b[31m9.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting charset-normalizer<4,>=2\n"," Downloading charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (146 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m146.1/146.1 KB\u001b[0m \u001b[31m17.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting urllib3<3,>=1.21.1\n"," Downloading urllib3-2.3.0-py3-none-any.whl (128 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m128.4/128.4 KB\u001b[0m \u001b[31m17.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting propcache>=0.2.0\n"," Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m206.6/206.6 KB\u001b[0m \u001b[31m30.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting yarl<2.0,>=1.17.0\n"," Downloading yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m319.7/319.7 KB\u001b[0m \u001b[31m38.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting frozenlist>=1.1.1\n"," Downloading frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m241.9/241.9 KB\u001b[0m \u001b[31m34.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting async-timeout<6.0,>=4.0\n"," Downloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB)\n","Collecting aiosignal>=1.1.2\n"," Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB)\n","Collecting multidict<7.0,>=4.5\n"," Downloading multidict-6.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m229.5/229.5 KB\u001b[0m \u001b[31m30.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting aiohappyeyeballs>=2.3.0\n"," Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB)\n","Building wheels for collected packages: schedulefree\n"," Building wheel for schedulefree (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n"," Created wheel for schedulefree: filename=schedulefree-1.4-py3-none-any.whl size=39333 sha256=64326e25c74c8fb4a0710adc87d728c423c2f838fa4003c87f3ae463a75597b7\n"," Stored in directory: /root/.cache/pip/wheels/04/4f/8e/15e0ac6c13041e94078d9e4f88d14c2cd00ec198bc0fc78e91\n","Successfully built schedulefree\n","Installing collected packages: wcwidth, voluptuous, sentencepiece, pytz, library, easygui, zipp, werkzeug, urllib3, tzdata, tqdm, toolz, toml, tensorboard-data-server, six, schedulefree, safetensors, rpds-py, regex, pyyaml, pygments, psutil, protobuf, propcache, prodigyopt, packaging, numpy, multidict, mdurl, markdown, imagesize, idna, grpcio, ftfy, frozenlist, entrypoints, einops, charset-normalizer, certifi, attrs, async-timeout, aiohappyeyeballs, absl-py, yarl, tensorboard, requests, referencing, python-dateutil, opencv-python, markdown-it-py, lightning-utilities, importlib-metadata, aiosignal, rich, pandas, jsonschema-specifications, huggingface-hub, aiohttp, torchmetrics, tokenizers, lion-pytorch, jsonschema, diffusers, bitsandbytes, accelerate, transformers, pytorch-lightning, altair\n"," Running setup.py develop for library\n"," Attempting uninstall: numpy\n"," Found existing installation: numpy 2.1.2\n"," Uninstalling numpy-2.1.2:\n"," Successfully uninstalled numpy-2.1.2\n","Successfully installed absl-py-2.2.1 accelerate-0.33.0 aiohappyeyeballs-2.6.1 aiohttp-3.11.15 aiosignal-1.3.2 altair-4.2.2 async-timeout-5.0.1 attrs-25.3.0 bitsandbytes-0.44.0 certifi-2025.1.31 charset-normalizer-3.4.1 diffusers-0.25.0 easygui-0.98.3 einops-0.7.0 entrypoints-0.4 frozenlist-1.5.0 ftfy-6.1.1 grpcio-1.71.0 huggingface-hub-0.24.5 idna-3.10 imagesize-1.4.1 importlib-metadata-8.6.1 jsonschema-4.23.0 jsonschema-specifications-2024.10.1 library-0.0.0 lightning-utilities-0.14.2 lion-pytorch-0.0.6 markdown-3.7 markdown-it-py-3.0.0 mdurl-0.1.2 multidict-6.3.0 numpy-1.26.4 opencv-python-4.8.1.78 packaging-24.2 pandas-2.2.3 prodigyopt-1.0 propcache-0.3.1 protobuf-6.30.2 psutil-7.0.0 pygments-2.19.1 python-dateutil-2.9.0.post0 pytorch-lightning-1.9.0 pytz-2025.2 pyyaml-6.0.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 rich-13.7.0 rpds-py-0.24.0 safetensors-0.4.4 schedulefree-1.4 sentencepiece-0.2.0 six-1.17.0 tensorboard-2.19.0 tensorboard-data-server-0.7.2 tokenizers-0.19.1 toml-0.10.2 toolz-1.0.0 torchmetrics-1.7.0 tqdm-4.67.1 transformers-4.44.0 tzdata-2025.2 urllib3-2.3.0 voluptuous-0.13.1 wcwidth-0.2.13 werkzeug-3.1.3 yarl-1.18.3 zipp-3.21.0\n","Processing /content/trainer/custom_scheduler\n"," Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n","Using legacy 'setup.py install' for LoraEasyCustomOptimizer, since package 'wheel' is not installed.\n","Installing collected packages: LoraEasyCustomOptimizer\n"," Running setup.py install for LoraEasyCustomOptimizer ... \u001b[?25l\u001b[?25hdone\n","Successfully installed LoraEasyCustomOptimizer-1.0.0\n","Collecting starlette\n"," Downloading starlette-0.46.1-py3-none-any.whl (71 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m72.0/72.0 KB\u001b[0m \u001b[31m2.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting uvicorn[standard]\n"," Downloading uvicorn-0.34.0-py3-none-any.whl (62 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m62.3/62.3 KB\u001b[0m \u001b[31m5.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: requests in ./venv/lib/python3.10/site-packages (from -r ../requirements.txt (line 3)) (2.32.3)\n","Collecting dadaptation\n"," Downloading dadaptation-3.2.tar.gz (13 kB)\n"," Installing build dependencies ... \u001b[?25l\u001b[?25hdone\n"," Getting requirements to build wheel ... \u001b[?25l\u001b[?25hdone\n"," Preparing metadata (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n","Collecting wandb\n"," Downloading wandb-0.19.8-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.8 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m20.8/20.8 MB\u001b[0m \u001b[31m53.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting pyngrok\n"," Downloading pyngrok-7.2.3-py3-none-any.whl (23 kB)\n","Collecting pycloudflared\n"," Downloading pycloudflared-0.2.0-py3-none-any.whl (7.3 kB)\n","Collecting scipy\n"," Downloading scipy-1.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (37.6 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m37.6/37.6 MB\u001b[0m \u001b[31m13.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting came-pytorch\n"," Downloading came_pytorch-0.1.3-py3-none-any.whl (6.2 kB)\n","Collecting lycoris-lora==3.0.1.dev10\n"," Downloading lycoris_lora-3.0.1.dev10.tar.gz (51 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m51.8/51.8 KB\u001b[0m \u001b[31m7.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25h Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n","Collecting pytorch_optimizer==3.1.2\n"," Downloading pytorch_optimizer-3.1.2-py3-none-any.whl (187 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m187.2/187.2 KB\u001b[0m \u001b[31m15.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting wheel\n"," Using cached wheel-0.45.1-py3-none-any.whl (72 kB)\n","Requirement already satisfied: einops in ./venv/lib/python3.10/site-packages (from lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (0.7.0)\n","Requirement already satisfied: toml in ./venv/lib/python3.10/site-packages (from lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (0.10.2)\n","Requirement already satisfied: torch in ./venv/lib/python3.10/site-packages (from lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (2.5.1+cu124)\n","Requirement already satisfied: tqdm in ./venv/lib/python3.10/site-packages (from lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (4.67.1)\n","Requirement already satisfied: numpy in ./venv/lib/python3.10/site-packages (from pytorch_optimizer==3.1.2->-r ../requirements.txt (line 11)) (1.26.4)\n","Collecting anyio<5,>=3.6.2\n"," Downloading anyio-4.9.0-py3-none-any.whl (100 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m100.9/100.9 KB\u001b[0m \u001b[31m16.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting click>=7.0\n"," Downloading click-8.1.8-py3-none-any.whl (98 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m98.2/98.2 KB\u001b[0m \u001b[31m15.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: typing-extensions>=4.0 in ./venv/lib/python3.10/site-packages (from uvicorn[standard]->-r ../requirements.txt (line 2)) (4.12.2)\n","Collecting h11>=0.8\n"," Downloading h11-0.14.0-py3-none-any.whl (58 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m58.3/58.3 KB\u001b[0m \u001b[31m9.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: pyyaml>=5.1 in ./venv/lib/python3.10/site-packages (from uvicorn[standard]->-r ../requirements.txt (line 2)) (6.0.2)\n","Collecting uvloop!=0.15.0,!=0.15.1,>=0.14.0\n"," Downloading uvloop-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m3.8/3.8 MB\u001b[0m \u001b[31m92.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting python-dotenv>=0.13\n"," Downloading python_dotenv-1.1.0-py3-none-any.whl (20 kB)\n","Collecting httptools>=0.6.3\n"," Downloading httptools-0.6.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m442.1/442.1 KB\u001b[0m \u001b[31m45.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting watchfiles>=0.13\n"," Downloading watchfiles-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m452.9/452.9 KB\u001b[0m \u001b[31m51.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting websockets>=10.4\n"," Downloading websockets-15.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (181 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m181.6/181.6 KB\u001b[0m \u001b[31m23.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: certifi>=2017.4.17 in ./venv/lib/python3.10/site-packages (from requests->-r ../requirements.txt (line 3)) (2025.1.31)\n","Requirement already satisfied: charset-normalizer<4,>=2 in ./venv/lib/python3.10/site-packages (from requests->-r ../requirements.txt (line 3)) (3.4.1)\n","Requirement already satisfied: urllib3<3,>=1.21.1 in ./venv/lib/python3.10/site-packages (from requests->-r ../requirements.txt (line 3)) (2.3.0)\n","Requirement already satisfied: idna<4,>=2.5 in ./venv/lib/python3.10/site-packages (from requests->-r ../requirements.txt (line 3)) (3.10)\n","Collecting pydantic<3,>=2.6\n"," Downloading pydantic-2.11.1-py3-none-any.whl (442 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m442.6/442.6 KB\u001b[0m \u001b[31m48.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: psutil>=5.0.0 in ./venv/lib/python3.10/site-packages (from wandb->-r ../requirements.txt (line 5)) (7.0.0)\n","Collecting gitpython!=3.1.29,>=1.0.0\n"," Downloading GitPython-3.1.44-py3-none-any.whl (207 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m207.6/207.6 KB\u001b[0m \u001b[31m27.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting docker-pycreds>=0.4.0\n"," Downloading docker_pycreds-0.4.0-py2.py3-none-any.whl (9.0 kB)\n","Collecting setproctitle\n"," Downloading setproctitle-1.3.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30 kB)\n","Collecting platformdirs\n"," Downloading platformdirs-4.3.7-py3-none-any.whl (18 kB)\n","Collecting protobuf!=4.21.0,!=5.28.0,<6,>=3.19.0\n"," Downloading protobuf-5.29.4-cp38-abi3-manylinux2014_x86_64.whl (319 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m319.7/319.7 KB\u001b[0m \u001b[31m40.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting sentry-sdk>=2.0.0\n"," Downloading sentry_sdk-2.25.0-py2.py3-none-any.whl (338 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m338.5/338.5 KB\u001b[0m \u001b[31m37.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: setuptools in ./venv/lib/python3.10/site-packages (from wandb->-r ../requirements.txt (line 5)) (59.6.0)\n","Collecting tomli\n"," Downloading tomli-2.2.1-py3-none-any.whl (14 kB)\n","Collecting exceptiongroup>=1.0.2\n"," Downloading exceptiongroup-1.2.2-py3-none-any.whl (16 kB)\n","Collecting sniffio>=1.1\n"," Downloading sniffio-1.3.1-py3-none-any.whl (10 kB)\n","Requirement already satisfied: six>=1.4.0 in ./venv/lib/python3.10/site-packages (from docker-pycreds>=0.4.0->wandb->-r ../requirements.txt (line 5)) (1.17.0)\n","Collecting gitdb<5,>=4.0.1\n"," Downloading gitdb-4.0.12-py3-none-any.whl (62 kB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m62.8/62.8 KB\u001b[0m \u001b[31m8.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hCollecting annotated-types>=0.6.0\n"," Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB)\n","Collecting typing-inspection>=0.4.0\n"," Downloading typing_inspection-0.4.0-py3-none-any.whl (14 kB)\n","Collecting pydantic-core==2.33.0\n"," Downloading pydantic_core-2.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB)\n","\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m2.0/2.0 MB\u001b[0m \u001b[31m87.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n","\u001b[?25hRequirement already satisfied: nvidia-cuda-cupti-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (12.4.127)\n","Requirement already satisfied: filelock in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (3.13.1)\n","Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (12.4.127)\n","Requirement already satisfied: nvidia-cudnn-cu12==9.1.0.70 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (9.1.0.70)\n","Requirement already satisfied: nvidia-cufft-cu12==11.2.1.3 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (11.2.1.3)\n","Requirement already satisfied: nvidia-cusparse-cu12==12.3.1.170 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (12.3.1.170)\n","Requirement already satisfied: nvidia-cublas-cu12==12.4.5.8 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (12.4.5.8)\n","Requirement already satisfied: nvidia-curand-cu12==10.3.5.147 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (10.3.5.147)\n","Requirement already satisfied: nvidia-nccl-cu12==2.21.5 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (2.21.5)\n","Requirement already satisfied: nvidia-cusolver-cu12==11.6.1.9 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (11.6.1.9)\n","Requirement already satisfied: jinja2 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (3.1.4)\n","Requirement already satisfied: nvidia-cuda-runtime-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (12.4.127)\n","Requirement already satisfied: fsspec in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (2024.6.1)\n","Requirement already satisfied: nvidia-nvtx-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (12.4.127)\n","Requirement already satisfied: sympy==1.13.1 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (1.13.1)\n","Requirement already satisfied: nvidia-nvjitlink-cu12==12.4.127 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (12.4.127)\n","Requirement already satisfied: triton==3.1.0 in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (3.1.0)\n","Requirement already satisfied: networkx in ./venv/lib/python3.10/site-packages (from torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (3.3)\n","Requirement already satisfied: mpmath<1.4,>=1.1.0 in ./venv/lib/python3.10/site-packages (from sympy==1.13.1->torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (1.3.0)\n","Collecting smmap<6,>=3.0.1\n"," Downloading smmap-5.0.2-py3-none-any.whl (24 kB)\n","Requirement already satisfied: MarkupSafe>=2.0 in ./venv/lib/python3.10/site-packages (from jinja2->torch->lycoris-lora==3.0.1.dev10->-r ../requirements.txt (line 10)) (2.1.5)\n","Using legacy 'setup.py install' for lycoris-lora, since package 'wheel' is not installed.\n","Building wheels for collected packages: dadaptation\n"," Building wheel for dadaptation (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n"," Created wheel for dadaptation: filename=dadaptation-3.2-py3-none-any.whl size=23290 sha256=aef8d9301ea5a32f897a342ed2baacc43fa0484679ca793dc49e3464c506994d\n"," Stored in directory: /root/.cache/pip/wheels/d0/03/6d/feba04df15ef39d9ac4e3504058ac2a88fb2ef9183ba92b111\n","Successfully built dadaptation\n","Installing collected packages: wheel, websockets, uvloop, typing-inspection, tomli, sniffio, smmap, setproctitle, sentry-sdk, scipy, python-dotenv, pyngrok, pydantic-core, protobuf, platformdirs, httptools, h11, exceptiongroup, docker-pycreds, dadaptation, click, annotated-types, uvicorn, pydantic, pycloudflared, gitdb, anyio, watchfiles, starlette, gitpython, wandb, pytorch_optimizer, lycoris-lora, came-pytorch\n"," Attempting uninstall: protobuf\n"," Found existing installation: protobuf 6.30.2\n"," Uninstalling protobuf-6.30.2:\n"," Successfully uninstalled protobuf-6.30.2\n"," Running setup.py install for lycoris-lora ... \u001b[?25l\u001b[?25hdone\n","Successfully installed annotated-types-0.7.0 anyio-4.9.0 came-pytorch-0.1.3 click-8.1.8 dadaptation-3.2 docker-pycreds-0.4.0 exceptiongroup-1.2.2 gitdb-4.0.12 gitpython-3.1.44 h11-0.14.0 httptools-0.6.4 lycoris-lora-3.0.1.dev10 platformdirs-4.3.7 protobuf-5.29.4 pycloudflared-0.2.0 pydantic-2.11.1 pydantic-core-2.33.0 pyngrok-7.2.3 python-dotenv-1.1.0 pytorch_optimizer-3.1.2 scipy-1.15.2 sentry-sdk-2.25.0 setproctitle-1.3.5 smmap-5.0.2 sniffio-1.3.1 starlette-0.46.1 tomli-2.2.1 typing-inspection-0.4.0 uvicorn-0.34.0 uvloop-0.21.0 wandb-0.19.8 watchfiles-1.0.4 websockets-15.0.1 wheel-0.45.1\n","completed installing\n","Found existing installation: rich 13.7.0\n","Uninstalling rich-13.7.0:\n"," Successfully uninstalled rich-13.7.0\n","\n","โœ… Installation finished in 295 seconds.\n","\n","๐Ÿ”„ Getting model...\n","\u001b[0m\n","Download Results:\n","gid |stat|avg speed |path/URI\n","======+====+===========+=======================================================\n","3d56e8|\u001b[1;32mOK\u001b[0m | 177MiB/s|//content/Illustrious-XL-v0.1.safetensors\n","\n","Status Legend:\n","(OK):download completed.\n","\u001b[0m\n","Download Results:\n","gid |stat|avg speed |path/URI\n","======+====+===========+=======================================================\n","3805b0|\u001b[1;32mOK\u001b[0m | 266MiB/s|//content/sdxl_vae.safetensors\n","\n","Status Legend:\n","(OK):download completed.\n","\n","\n","๐Ÿ“„ Config saved to /content/drive/MyDrive/Loras/poyo_Illustrious/training_config.toml\n","๐Ÿ“„ Dataset config saved to /content/drive/MyDrive/Loras/poyo_Illustrious/dataset_config.toml\n","\n","โญ Starting trainer...\n","\n","rich is not installed, using basic logging\n","Loading settings from /content/drive/MyDrive/Loras/poyo_Illustrious/training_config.toml...\n","/content/drive/MyDrive/Loras/poyo_Illustrious/training_config\n","rich is not installed, using basic logging\n","tokenizer_config.json: 100% 905/905 [00:00<00:00, 5.80MB/s]\n","vocab.json: 100% 961k/961k [00:00<00:00, 14.7MB/s]\n","merges.txt: 100% 525k/525k [00:00<00:00, 31.3MB/s]\n","special_tokens_map.json: 100% 389/389 [00:00<00:00, 3.61MB/s]\n","tokenizer.json: 100% 2.22M/2.22M [00:00<00:00, 21.8MB/s]\n","tokenizer_config.json: 100% 904/904 [00:00<00:00, 6.75MB/s]\n","vocab.json: 100% 862k/862k [00:00<00:00, 5.25MB/s]\n","merges.txt: 100% 525k/525k [00:00<00:00, 1.91MB/s]\n","special_tokens_map.json: 100% 389/389 [00:00<00:00, 2.56MB/s]\n","tokenizer.json: 100% 2.22M/2.22M [00:00<00:00, 16.7MB/s]\n","Loading dataset config from /content/drive/MyDrive/Loras/poyo_Illustrious/dataset_config.toml\n","prepare images.\n","get image size from name of cache files\n","100% 35/35 [00:00<00:00, 208820.26it/s]\n","set image size from cache files: 19/35\n","found directory /content/drive/MyDrive/Loras/poyo_Illustrious/dataset contains 35 image files\n","read caption: 100% 35/35 [00:10<00:00, 3.46it/s]\n","70 train images with repeating.\n","0 reg images.\n","no regularization images / ๆญฃๅ‰‡ๅŒ–็”ปๅƒใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸ\n","[Dataset 0]\n"," batch_size: 4\n"," resolution: (1024, 1024)\n"," enable_bucket: True\n"," network_multiplier: 1.0\n"," min_bucket_reso: 256\n"," max_bucket_reso: 4096\n"," bucket_reso_steps: 64\n"," bucket_no_upscale: False\n","\n"," [Subset 0 of Dataset 0]\n"," image_dir: \"/content/drive/MyDrive/Loras/poyo_Illustrious/dataset\"\n"," image_count: 35\n"," num_repeats: 2\n"," shuffle_caption: True\n"," keep_tokens: 1\n"," keep_tokens_separator: \n"," caption_separator: ,\n"," secondary_separator: None\n"," enable_wildcard: False\n"," caption_dropout_rate: 0.0\n"," caption_dropout_every_n_epochs: 0\n"," caption_tag_dropout_rate: 0.0\n"," caption_prefix: None\n"," caption_suffix: None\n"," color_aug: False\n"," flip_aug: False\n"," face_crop_aug_range: None\n"," random_crop: False\n"," token_warmup_min: 1\n"," token_warmup_step: 0\n"," alpha_mask: False\n"," custom_attributes: {}\n"," is_reg: False\n"," class_tokens: None\n"," caption_extension: .txt\n","\n","\n","[Dataset 0]\n","loading image sizes.\n","100% 35/35 [00:04<00:00, 7.39it/s]\n","make buckets\n","number of images (including repeats) / ๅ„bucketใฎ็”ปๅƒๆžšๆ•ฐ๏ผˆ็นฐใ‚Š่ฟ”ใ—ๅ›žๆ•ฐใ‚’ๅซใ‚€๏ผ‰\n","bucket 0: resolution (896, 1152), count: 16\n","bucket 1: resolution (1024, 1024), count: 40\n","bucket 2: resolution (1216, 832), count: 2\n","bucket 3: resolution (1408, 704), count: 12\n","mean ar error (without repeats): 0.0\n","preparing accelerator\n","accelerator device: cuda\n","loading model for process 0/1\n","load StableDiffusion checkpoint: /content/Illustrious-XL-v0.1.safetensors\n","building U-Net\n","loading U-Net from checkpoint\n","U-Net: \n","building text encoders\n","loading text encoders from checkpoint\n","text encoder 1: \n","text encoder 2: \n","building VAE\n","loading VAE from checkpoint\n","VAE: \n","load VAE: /content/sdxl_vae.safetensors\n","additional VAE loaded\n","Enable SDPA for U-Net\n","import network module: networks.lora\n","[Dataset 0]\n","caching latents with caching strategy.\n","caching latents...\n","100% 35/35 [00:23<00:00, 1.49it/s]\n","create LoRA network. base dim (rank): 32, alpha: 16\n","neuron dropout: p=None, rank dropout: p=None, module dropout: p=None\n","create LoRA for Text Encoder 1:\n","create LoRA for Text Encoder 2:\n","create LoRA for Text Encoder: 88 modules.\n","create LoRA for U-Net: 722 modules.\n","enable LoRA for text encoder: 88 modules\n","enable LoRA for U-Net: 722 modules\n","prepare optimizer, data loader etc.\n","use 8-bit AdamW optimizer | {'weight_decay': 0.1, 'betas': [0.9, 0.99]}\n","override steps. steps for 10 epochs is / ๆŒ‡ๅฎšใ‚จใƒใƒƒใ‚ฏใพใงใฎใ‚นใƒ†ใƒƒใƒ—ๆ•ฐ: 180\n","enable full fp16 training.\n","running training / ๅญฆ็ฟ’้–‹ๅง‹\n"," num train images * repeats / ๅญฆ็ฟ’็”ปๅƒใฎๆ•ฐร—็นฐใ‚Š่ฟ”ใ—ๅ›žๆ•ฐ: 70\n"," num reg images / ๆญฃๅ‰‡ๅŒ–็”ปๅƒใฎๆ•ฐ: 0\n"," num batches per epoch / 1epochใฎใƒใƒƒใƒๆ•ฐ: 18\n"," num epochs / epochๆ•ฐ: 10\n"," batch size per device / ใƒใƒƒใƒใ‚ตใ‚คใ‚บ: 4\n"," gradient accumulation steps / ๅ‹พ้…ใ‚’ๅˆ่จˆใ™ใ‚‹ใ‚นใƒ†ใƒƒใƒ—ๆ•ฐ = 1\n"," total optimization steps / ๅญฆ็ฟ’ใ‚นใƒ†ใƒƒใƒ—ๆ•ฐ: 180\n","steps: 0% 0/180 [00:00"],"text/markdown":"### โœ… Done! [Go download your Lora from Google Drive](https://drive.google.com/drive/my-drive)\n### There will be several files, you should try the latest version (the file with the largest number next to it)"},"metadata":{}}],"source":["import os\n","import re\n","import toml\n","from time import time\n","from IPython.display import Markdown, display\n","import warnings\n","\n","warnings.filterwarnings(\"ignore\")\n","\n","# These carry information from past executions\n","if \"model_url\" in globals():\n"," old_model_url = model_url\n","else:\n"," old_model_url = None\n","if \"dependencies_installed\" not in globals():\n"," dependencies_installed = False\n","if \"model_file\" not in globals():\n"," model_file = None\n","\n","# These may be set by other cells, some are legacy\n","if \"custom_dataset\" not in globals():\n"," custom_dataset = None\n","if \"override_dataset_config_file\" not in globals():\n"," override_dataset_config_file = None\n","if \"continue_from_lora\" not in globals():\n"," continue_from_lora = \"\"\n","if \"override_config_file\" not in globals():\n"," override_config_file = None\n","\n","#try:\n","# LOWRAM = int(next(line.split()[1] for line in open('/proc/meminfo') if \"MemTotal\" in line)) / (1024**2) < 15\n","#except:\n","# LOWRAM = True\n","\n","LOWRAM = True\n","LOAD_TRUNCATED_IMAGES = True\n","BETTER_EPOCH_NAMES = True\n","FIX_DIFFUSERS = True\n","\n","\n","#@title ## ๐Ÿšฉ Start Here\n","\n","#@markdown ### โ–ถ๏ธ Setup\n","#@markdown Your project name will be the same as the folder containing your images. Spaces aren't allowed.\n","project_name = \"poyo_Illustrious\" #@param {type:\"string\"}\n","project_name = project_name.strip()\n","#@markdown The folder structure doesn't matter and is purely for comfort. Make sure to always pick the same one. I like organizing by project.\n","folder_structure = \"Organize by project (MyDrive/Loras/project_name/dataset)\" #@param [\"Organize by category (MyDrive/lora_training/datasets/project_name)\", \"Organize by project (MyDrive/Loras/project_name/dataset)\"]\n","#@markdown Decide the model that will be downloaded and used for training. You can also choose your own by pasting its download link, or a file in your Google Drive starting with `/content/drive/MyDrive`.\n","training_model = \"Illustrious XL 0.1\" #@param [\"Pony Diffusion V6 XL\", \"Illustrious XL 0.1\", \"NoobAI V-Pred 1.0\", \"NoobAI Eps 1.1\", \"Animagine XL V3\", \"Stable Diffusion XL 1.0 base\"]\n","optional_custom_training_model = \"\" #@param {type:\"string\"}\n","custom_model_is_diffusers = True #@param {type:\"boolean\"}\n","custom_model_is_vpred = False #@param {type:\"boolean\"}\n","#@markdown Use wandb if you want to visualize the progress of your training over time.\n","wandb_key = \"\" #@param {type:\"string\"}\n","\n","load_diffusers = custom_model_is_diffusers and len(optional_custom_training_model) > 0\n","vpred = custom_model_is_vpred and len(optional_custom_training_model) > 0\n","\n","if optional_custom_training_model:\n"," model_url = optional_custom_training_model\n","elif \"Pony\" in training_model:\n"," if load_diffusers:\n"," model_url = \"https://huggingface.co/hollowstrawberry/67AB2F\"\n"," else:\n"," model_url = \"https://civitai.com/api/download/models/290640\"\n"," model_file = \"/content/ponyDiffusionV6XL.safetensors\"\n","elif \"Animagine\" in training_model:\n"," if load_diffusers:\n"," model_url = \"https://huggingface.co/cagliostrolab/animagine-xl-3.0\"\n"," else:\n"," model_url = \"https://civitai.com/api/download/models/293564\"\n"," model_file = \"/content/animagineXLV3.safetensors\"\n","elif \"Illustrious\" in training_model:\n"," if load_diffusers:\n"," model_url = \"https://huggingface.co/OnomaAIResearch/Illustrious-xl-early-release-v0\"\n"," else:\n"," model_url = \"https://huggingface.co/OnomaAIResearch/Illustrious-xl-early-release-v0/resolve/main/Illustrious-XL-v0.1.safetensors\"\n","elif \"NoobAI Eps\" in training_model:\n"," if load_diffusers:\n"," model_url = \"https://huggingface.co/Laxhar/noobai-XL-1.1\"\n"," else:\n"," model_url = \"https://huggingface.co/Laxhar/noobai-XL-1.1/resolve/main/NoobAI-XL-v1.1.safetensors\"\n","elif \"NoobAI V-Pred\" in training_model:\n"," vpred = True\n"," if load_diffusers:\n"," model_url = \"https://huggingface.co/Laxhar/noobai-XL-Vpred-1.0\"\n"," else:\n"," model_url = \"https://huggingface.co/Laxhar/noobai-XL-Vpred-1.0/resolve/main/NoobAI-XL-Vpred-v1.0.safetensors\"\n","else:\n"," if load_diffusers:\n"," model_url = \"https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0\"\n"," else:\n"," model_url = \"https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors\"\n","\n","if load_diffusers:\n"," vae_file = \"stabilityai/sdxl-vae\"\n","else:\n"," vae_url = \"https://huggingface.co/stabilityai/sdxl-vae/resolve/main/sdxl_vae.safetensors\"\n"," vae_file = \"/content/sdxl_vae.safetensors\"\n","\n","model_url = model_url.strip()\n","\n","#@markdown ### โ–ถ๏ธ Processing\n","resolution = 1024 #param {type:\"slider\", min:768, max:1536, step:128}\n","caption_extension = \".txt\" #@param [\".txt\", \".caption\"]\n","#@markdown Shuffling anime tags in place improves learning and prompting. An activation tag goes at the start of every text file and will not be shuffled.

\n","shuffle_tags = True #@param {type:\"boolean\"}\n","shuffle_caption = shuffle_tags\n","activation_tags = \"1\" #@param [0,1,2,3]\n","keep_tokens = int(activation_tags)\n","\n","#@markdown ### โ–ถ๏ธ Steps

\n","#@markdown Your images will repeat this number of times during training. I recommend that your images multiplied by their repeats is around 100, or 1 repeat with more than 100 images.\n","num_repeats = 2 #@param {type:\"number\"}\n","#@markdown Choose how long you want to train for. A good starting point is around 10 epochs or around 2000 steps.

\n","#@markdown One epoch is a number of steps equal to: your number of images multiplied by their repeats, divided by batch size.

\n","preferred_unit = \"Epochs\" #@param [\"Epochs\", \"Steps\"]\n","how_many = 10 #@param {type:\"number\"}\n","max_train_epochs = how_many if preferred_unit == \"Epochs\" else None\n","max_train_steps = how_many if preferred_unit == \"Steps\" else None\n","#@markdown Saving more epochs will let you compare your Lora's progress better.\n","save_every_n_epochs = 1 #@param {type:\"number\"}\n","keep_only_last_n_epochs = 10 #@param {type:\"number\"}\n","if not save_every_n_epochs:\n"," save_every_n_epochs = max_train_epochs\n","if not keep_only_last_n_epochs:\n"," keep_only_last_n_epochs = max_train_epochs\n","\n","#@markdown ### โ–ถ๏ธ Learning\n","#@markdown The learning rate is the most important for your results. If your Lora produces black images, lower the unet and text encoder to 1e-4 and 1e-5 respectively, or even lower.

\n","#@markdown If you're training a style you can choose to set the text encoder to 0.\n","unet_lr = 3e-4 #@param {type:\"number\"}\n","text_encoder_lr = 6e-5 #@param {type:\"number\"}\n","#@markdown The scheduler is the algorithm that guides the learning rate. If you're not sure, pick `constant` and ignore the number. I personally recommend `cosine_with_restarts` with 3 restarts.\n","lr_scheduler = \"cosine_with_restarts\" #@param [\"constant\", \"cosine\", \"cosine_with_restarts\", \"constant_with_warmup\", \"linear\", \"polynomial\", \"rex\"]\n","lr_scheduler_number = 3 #@param {type:\"number\"}\n","#@markdown Steps spent \"warming up\" the learning rate during training for efficiency. I recommend leaving it at 5%.\n","lr_warmup_ratio = 0.05 #@param {type:\"slider\", min:0.0, max:0.2, step:0.01}\n","lr_warmup_steps = 0\n","#@markdown These settings may produce better results. min_snr_gamma adjusts loss over time. ip_noise_gamma adjusts random noise.\n","min_snr_gamma_enabled = True #@param {type:\"boolean\"}\n","min_snr_gamma = 8.0 #@param {type:\"slider\", min:4, max:16.0, step:0.5}\n","ip_noise_gamma_enabled = False #@param {type:\"boolean\"}\n","ip_noise_gamma = 0.05 #@param {type:\"slider\", min:0.05, max:0.1, step:0.01}\n","#@markdown Multinoise may help with color balance (darker darks, lighter lights).\n","multinoise = True #@param {type:\"boolean\"}\n","\n","#@markdown ### โ–ถ๏ธ Structure\n","#@markdown LoRA is the classic type and good for a variety of purposes. LoCon is good with artstyles as it has more layers to learn more aspects of the dataset.\n","lora_type = \"LoRA\" #@param [\"LoRA\", \"LoCon\"]\n","\n","#@markdown Below are some recommended XL values for the following settings:\n","\n","#@markdown | type | network_dim | network_alpha | conv_dim | conv_alpha |\n","#@markdown | :---: | :---: | :---: | :---: | :---: |\n","#@markdown | Regular LoRA | 8 | 4 | | |\n","#@markdown | Style LoCon | 16 | 8 | 16 | 8 |\n","\n","#@markdown More dim means larger Lora, it can hold more information but more isn't always better.\n","network_dim = 32 #@param {type:\"slider\", min:1, max:32, step:1}\n","network_alpha = 16 #@param {type:\"slider\", min:1, max:32, step:1}\n","#@markdown The following two values only apply to the additional layers of LoCon.\n","conv_dim = 16 #@param {type:\"slider\", min:1, max:32, step:1}\n","conv_alpha = 8 #@param {type:\"slider\", min:1, max:32, step:1}\n","\n","network_module = \"networks.lora\"\n","network_args = None\n","if lora_type.lower() == \"locon\":\n"," network_args = [f\"conv_dim={conv_dim}\", f\"conv_alpha={conv_alpha}\"]\n","\n","#@markdown ### โ–ถ๏ธ Training\n","#@markdown Adjust these parameters depending on your colab configuration.\n","#@markdown\n","#@markdown Higher batch size is often faster but uses more memory.\n","train_batch_size = 4 #@param {type:\"slider\", min:1, max:16, step:1}\n","#@markdown I have found no substantial difference between sdpa and xformers.\n","cross_attention = \"sdpa\" #@param [\"sdpa\", \"xformers\"]\n","#@markdown Use `full fp16` for lowest memory usage. The `bf16` options may not work correctly on the free GPU tier.

\n","#@markdown The Lora will be trained with the selected precision, but will always be saved in fp16 format for compatibility reasons.\n","precision = \"full fp16\" #@param [\"float\", \"full fp16\", \"full bf16\", \"mixed fp16\", \"mixed bf16\"]\n","#@markdown Caching latents to drive will add a 250KB file next to each image but will use considerably less memory.\n","cache_latents = True #@param {type:\"boolean\"}\n","cache_latents_to_drive = True #@param {type:\"boolean\"}\n","#@markdown The following option will turn off shuffle_tags and disable text encoder training.\n","cache_text_encoder_outputs = False # @param {type:\"boolean\"}\n","\n","mixed_precision = \"no\"\n","if \"fp16\" in precision:\n"," mixed_precision = \"fp16\"\n","elif \"bf16\" in precision:\n"," mixed_precision = \"bf16\"\n","full_precision = \"full\" in precision\n","\n","#@markdown ### โ–ถ๏ธ Advanced\n","#@markdown The optimizer is the algorithm used for training. AdamW8bit is the default and works great, while Prodigy manages learning rate automatically and may have several advantages such as training faster due to needing less steps as well as working better for small datasets.\n","optimizer = \"AdamW8bit\" #@param [\"AdamW8bit\", \"Prodigy\", \"DAdaptation\", \"DadaptAdam\", \"DadaptLion\", \"AdamW\", \"Lion\", \"SGDNesterov\", \"SGDNesterov8bit\", \"AdaFactor\", \"Came\"]\n","#@markdown Recommended args for AdamW8bit: `weight_decay=0.1 betas=[0.9,0.99]`

\n","#@markdown Recommended args for Prodigy: `decouple=True weight_decay=0.01 betas=[0.9,0.999] d_coef=2 use_bias_correction=True safeguard_warmup=True`

\n","#@markdown Recommended args for AdaFactor: `scale_parameter=False relative_step=False warmup_init=False`

\n","#@markdown Recommended args for Came: `weight_decay=0.04`

\n","#@markdown If Dadapt or Prodigy are selected and the recommended box is checked, the following values will override any previous settings:

\n","#@markdown `unet_lr=0.75`, `text_encoder_lr=0.75`, `network_alpha=network_dim`, `full_precision=False`

\n","recommended_values = True #@param {type:\"boolean\"}\n","#@markdown Alternatively set your own optimizer arguments separated by spaces (not commas). Recommended box must be disabled.\n","optimizer_args = \"\" #@param {type:\"string\"}\n","optimizer_args = [a.strip() for a in optimizer_args.split(' ') if a]\n","\n","if recommended_values:\n"," if any(opt in optimizer.lower() for opt in [\"dadapt\", \"prodigy\"]):\n"," unet_lr = 0.75\n"," text_encoder_lr = 0.75\n"," network_alpha = network_dim\n"," full_precision = False\n"," if optimizer == \"Prodigy\":\n"," optimizer_args = [\"decouple=True\", \"weight_decay=0.01\", \"betas=[0.9,0.999]\", \"d_coef=2\", \"use_bias_correction=True\", \"safeguard_warmup=True\"]\n"," elif optimizer == \"AdamW8bit\":\n"," optimizer_args = [\"weight_decay=0.1\", \"betas=[0.9,0.99]\"]\n"," elif optimizer == \"AdaFactor\":\n"," optimizer_args = [\"scale_parameter=False\", \"relative_step=False\", \"warmup_init=False\"]\n"," elif optimizer == \"Came\":\n"," optimizer_args = [\"weight_decay=0.04\"]\n","\n","if optimizer == \"Came\":\n"," optimizer = \"LoraEasyCustomOptimizer.came.CAME\"\n","\n","lr_scheduler_type = None\n","lr_scheduler_args = None\n","lr_scheduler_num_cycles = lr_scheduler_number\n","lr_scheduler_power = lr_scheduler_number\n","\n","if \"rex\" in lr_scheduler:\n"," lr_scheduler = \"cosine\"\n"," lr_scheduler_type = \"LoraEasyCustomOptimizer.RexAnnealingWarmRestarts.RexAnnealingWarmRestarts\"\n"," lr_scheduler_args = [\"min_lr=1e-9\", \"gamma=0.9\", \"d=0.9\"]\n","\n","# Misc\n","seed = 42\n","gradient_accumulation_steps = 1\n","bucket_reso_steps = 64\n","min_bucket_reso = 256\n","max_bucket_reso = 4096\n","\n","\n","#@markdown ### โ–ถ๏ธ Ready\n","#@markdown You can now run this cell to cook your Lora. Good luck!

\n","\n","\n","# ๐Ÿ‘ฉโ€๐Ÿ’ป Cool code goes here\n","\n","root_dir = \"/content\"\n","trainer_dir = os.path.join(root_dir, \"trainer\")\n","kohya_dir = os.path.join(trainer_dir, \"sd_scripts\")\n","\n","venv_python = os.path.join(kohya_dir, \"venv/bin/python\")\n","venv_pip = os.path.join(kohya_dir, \"venv/bin/pip\")\n","train_network = os.path.join(kohya_dir, \"sdxl_train_network.py\")\n","\n","if \"/Loras\" in folder_structure:\n"," main_dir = os.path.join(root_dir, \"drive/MyDrive/Loras\")\n"," log_folder = os.path.join(main_dir, \"_logs\")\n"," config_folder = os.path.join(main_dir, project_name)\n"," images_folder = os.path.join(main_dir, project_name, \"dataset\")\n"," output_folder = os.path.join(main_dir, project_name, \"output\")\n","else:\n"," main_dir = os.path.join(root_dir, \"drive/MyDrive/lora_training\")\n"," images_folder = os.path.join(main_dir, \"datasets\", project_name)\n"," output_folder = os.path.join(main_dir, \"output\", project_name)\n"," config_folder = os.path.join(main_dir, \"config\", project_name)\n"," log_folder = os.path.join(main_dir, \"log\")\n","\n","config_file = os.path.join(config_folder, \"training_config.toml\")\n","dataset_config_file = os.path.join(config_folder, \"dataset_config.toml\")\n","\n","\n","def install_trainer():\n"," !apt -y update -qq\n"," !apt install -y python3.10-venv aria2 -qq\n"," !git clone https://github.com/derrian-distro/LoRA_Easy_Training_scripts_Backend {trainer_dir}\n"," !chmod 755 /content/trainer/colab_install.sh\n"," os.chdir(trainer_dir)\n"," !./colab_install.sh\n","\n"," # fix logging\n"," !{venv_pip} uninstall -y rich\n","\n"," # patch kohya\n"," os.chdir(kohya_dir)\n"," if LOAD_TRUNCATED_IMAGES:\n"," !sed -i 's/from PIL import Image/from PIL import Image, ImageFile\\nImageFile.LOAD_TRUNCATED_IMAGES=True/g' library/train_util.py # fix truncated jpegs error\n"," if BETTER_EPOCH_NAMES:\n"," !sed -i 's/{:06d}/{:02d}/g' library/train_util.py # make epoch names shorter\n"," !sed -i 's/\".\" + args.save_model_as)/\"-{:02d}.\".format(num_train_epochs) + args.save_model_as)/g' train_network.py # name of the last epoch will match the rest\n"," if FIX_DIFFUSERS:\n"," deprecation_utils = os.path.join(kohya_dir, \"venv/lib/python3.10/site-packages/diffusers/utils/deprecation_utils.py\")\n"," !sed -i 's/if version.parse/if False:#/g' {deprecation_utils}\n"," if wandb_key:\n"," !sed -i 's/accelerator.log(logs, step=epoch + 1)//g' train_network.py # fix warning\n"," !sed -i 's/accelerator.log(logs, step=epoch + 1)//g' sdxl_train.py # fix warning\n","\n"," os.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"3\"\n"," os.environ[\"BITSANDBYTES_NOWELCOME\"] = \"1\"\n"," os.environ[\"SAFETENSORS_FAST_GPU\"] = \"1\"\n"," os.environ[\"PYTHONWARNINGS\"] = \"ignore\"\n"," os.chdir(root_dir)\n","\n","\n","def validate_dataset():\n"," global lr_warmup_steps, lr_warmup_ratio, caption_extension, keep_tokens, model_url\n"," supported_types = (\".png\", \".jpg\", \".jpeg\", \".webp\", \".bmp\")\n","\n"," if model_url.startswith(\"/content/drive/\") and not os.path.exists(model_url):\n"," print(\"๐Ÿ’ฅ Error: The custom training model you specified was not found in your Google Drive.\")\n"," return\n","\n"," print(\"\\n๐Ÿ’ฟ Checking dataset...\")\n"," if not project_name.strip() or any(c in project_name for c in \" .()\\\"'\\\\/\"):\n"," print(\"๐Ÿ’ฅ Error: Please choose a valid project name.\")\n"," return\n","\n"," # Find the folders and files\n"," if custom_dataset:\n"," try:\n"," datconf = toml.loads(custom_dataset)\n"," datasets = [d for d in datconf[\"datasets\"][0][\"subsets\"]]\n"," except:\n"," print(f\"๐Ÿ’ฅ Error: Your custom dataset is invalid or contains an error! Please check the original template.\")\n"," return\n"," reg = [d.get(\"image_dir\") for d in datasets if d.get(\"is_reg\", False)]\n"," datasets_dict = {d[\"image_dir\"]: d[\"num_repeats\"] for d in datasets}\n"," folders = datasets_dict.keys()\n"," files = [f for folder in folders for f in os.listdir(folder)]\n"," images_repeats = {folder: (len([f for f in os.listdir(folder) if f.lower().endswith(supported_types)]), datasets_dict[folder]) for folder in folders}\n"," else:\n"," reg = []\n"," folders = [images_folder]\n"," files = os.listdir(images_folder)\n"," images_repeats = {images_folder: (len([f for f in files if f.lower().endswith(supported_types)]), num_repeats)}\n","\n"," # Validation\n"," for folder in folders:\n"," if not os.path.exists(folder):\n"," print(f\"๐Ÿ’ฅ Error: The folder {folder.replace('/content/drive/', '')} doesn't exist.\")\n"," return\n"," for folder, (img, rep) in images_repeats.items():\n"," if not img:\n"," print(f\"๐Ÿ’ฅ Error: Your {folder.replace('/content/drive/', '')} folder is empty.\")\n"," return\n"," test_files = []\n"," for f in files:\n"," if not f.lower().endswith((caption_extension, \".npz\")) and not f.lower().endswith(supported_types):\n"," print(f\"๐Ÿ’ฅ Error: Invalid file in dataset: \\\"{f}\\\". Aborting.\")\n"," return\n"," for ff in test_files:\n"," if f.endswith(supported_types) and ff.endswith(supported_types) \\\n"," and os.path.splitext(f)[0] == os.path.splitext(ff)[0]:\n"," print(f\"๐Ÿ’ฅ Error: The files {f} and {ff} cannot have the same name. Aborting.\")\n"," return\n"," test_files.append(f)\n","\n"," if caption_extension and not [txt for txt in files if txt.lower().endswith(caption_extension)]:\n"," caption_extension = \"\"\n"," if continue_from_lora and not (continue_from_lora.endswith(\".safetensors\") and os.path.exists(continue_from_lora)):\n"," print(f\"๐Ÿ’ฅ Error: Invalid path to existing Lora. Example: /content/drive/MyDrive/Loras/example.safetensors\")\n"," return\n","\n"," # Show estimations to the user\n","\n"," pre_steps_per_epoch = sum(img*rep for (img, rep) in images_repeats.values())\n"," steps_per_epoch = pre_steps_per_epoch/train_batch_size\n"," total_steps = max_train_steps or int(max_train_epochs*steps_per_epoch)\n"," estimated_epochs = int(total_steps/steps_per_epoch)\n"," lr_warmup_steps = int(total_steps*lr_warmup_ratio)\n","\n"," for folder, (img, rep) in images_repeats.items():\n"," print(\"๐Ÿ“\"+folder.replace(\"/content/drive/\", \"\") + (\" (Regularization)\" if folder in reg else \"\"))\n"," print(f\"๐Ÿ“ˆ Found {img} images with {rep} repeats, equaling {img*rep} steps.\")\n"," print(f\"๐Ÿ“‰ Divide {pre_steps_per_epoch} steps by {train_batch_size} batch size to get {steps_per_epoch} steps per epoch.\")\n"," if max_train_epochs:\n"," print(f\"๐Ÿ”ฎ There will be {max_train_epochs} epochs, for around {total_steps} total training steps.\")\n"," else:\n"," print(f\"๐Ÿ”ฎ There will be {total_steps} steps, divided into {estimated_epochs} epochs and then some.\")\n","\n"," if total_steps > 10000:\n"," print(\"๐Ÿ’ฅ Error: Your total steps are too high. You probably made a mistake. Aborting...\")\n"," return\n","\n"," return True\n","\n","\n","def create_config():\n"," global dataset_config_file, config_file, model_file\n","\n"," if override_config_file:\n"," config_file = override_config_file\n"," print(f\"\\nโญ• Using custom config file {config_file}\")\n"," else:\n"," config_dict = {\n"," \"network_arguments\": {\n"," \"unet_lr\": unet_lr,\n"," \"text_encoder_lr\": text_encoder_lr if not cache_text_encoder_outputs else 0,\n"," \"network_dim\": network_dim,\n"," \"network_alpha\": network_alpha,\n"," \"network_module\": network_module,\n"," \"network_args\": network_args,\n"," \"network_train_unet_only\": text_encoder_lr == 0 or cache_text_encoder_outputs,\n"," \"network_weights\": continue_from_lora or None\n"," },\n"," \"optimizer_arguments\": {\n"," \"learning_rate\": unet_lr,\n"," \"lr_scheduler\": lr_scheduler,\n"," \"lr_scheduler_type\": lr_scheduler_type,\n"," \"lr_scheduler_args\": lr_scheduler_args,\n"," \"lr_scheduler_num_cycles\": lr_scheduler_num_cycles if lr_scheduler == \"cosine_with_restarts\" else None,\n"," \"lr_scheduler_power\": lr_scheduler_power if lr_scheduler == \"polynomial\" else None,\n"," \"lr_warmup_steps\": lr_warmup_steps if lr_scheduler not in (\"cosine\", \"constant\") else None,\n"," \"optimizer_type\": optimizer,\n"," \"optimizer_args\": optimizer_args or None,\n"," \"loss_type\": \"l2\",\n"," \"max_grad_norm\": 1.0,\n"," },\n"," \"training_arguments\": {\n"," \"lowram\": LOWRAM,\n"," \"pretrained_model_name_or_path\": model_file,\n"," \"vae\": vae_file,\n"," \"max_train_steps\": max_train_steps,\n"," \"max_train_epochs\": max_train_epochs,\n"," \"train_batch_size\": train_batch_size,\n"," \"seed\": seed,\n"," \"max_token_length\": 225,\n"," \"xformers\": cross_attention == \"xformers\",\n"," \"sdpa\": cross_attention == \"sdpa\",\n"," \"min_snr_gamma\": min_snr_gamma if min_snr_gamma_enabled else None,\n"," \"ip_noise_gamma\": ip_noise_gamma if ip_noise_gamma_enabled else None,\n"," \"no_half_vae\": True,\n"," \"gradient_checkpointing\": True,\n"," \"gradient_accumulation_steps\": gradient_accumulation_steps,\n"," \"max_data_loader_n_workers\": 1,\n"," \"persistent_data_loader_workers\": True,\n"," \"mixed_precision\": mixed_precision,\n"," \"full_fp16\": mixed_precision == \"fp16\" and full_precision,\n"," \"full_bf16\": mixed_precision == \"bf16\" and full_precision,\n"," \"cache_latents\": cache_latents,\n"," \"cache_latents_to_disk\": cache_latents_to_drive,\n"," \"cache_text_encoder_outputs\": cache_text_encoder_outputs,\n"," \"min_timestep\": 0,\n"," \"max_timestep\": 1000,\n"," \"prior_loss_weight\": 1.0,\n"," \"multires_noise_iterations\": 6 if multinoise else None,\n"," \"multires_noise_discount\": 0.3 if multinoise else None,\n"," \"v_parameterization\": vpred or None,\n"," \"scale_v_pred_loss_like_noise_pred\": vpred or None,\n"," \"zero_terminal_snr\": vpred or None,\n"," },\n"," \"saving_arguments\": {\n"," \"save_precision\": \"fp16\",\n"," \"save_model_as\": \"safetensors\",\n"," \"save_every_n_epochs\": save_every_n_epochs,\n"," \"save_last_n_epochs\": keep_only_last_n_epochs,\n"," \"output_name\": project_name,\n"," \"output_dir\": output_folder,\n"," \"log_prefix\": project_name,\n"," \"logging_dir\": log_folder,\n"," \"wandb_api_key\": wandb_key or None,\n"," \"log_with\": \"wandb\" if wandb_key else None,\n"," }\n"," }\n","\n"," for key in config_dict:\n"," if isinstance(config_dict[key], dict):\n"," config_dict[key] = {k: v for k, v in config_dict[key].items() if v is not None}\n","\n"," with open(config_file, \"w\") as f:\n"," f.write(toml.dumps(config_dict))\n"," print(f\"\\n๐Ÿ“„ Config saved to {config_file}\")\n","\n"," if override_dataset_config_file:\n"," dataset_config_file = override_dataset_config_file\n"," print(f\"โญ• Using custom dataset config file {dataset_config_file}\")\n"," else:\n"," dataset_config_dict = {\n"," \"general\": {\n"," \"resolution\": resolution,\n"," \"shuffle_caption\": shuffle_caption and not cache_text_encoder_outputs,\n"," \"keep_tokens\": keep_tokens,\n"," \"flip_aug\": False,\n"," \"caption_extension\": caption_extension,\n"," \"enable_bucket\": True,\n"," \"bucket_no_upscale\": False,\n"," \"bucket_reso_steps\": bucket_reso_steps,\n"," \"min_bucket_reso\": min_bucket_reso,\n"," \"max_bucket_reso\": max_bucket_reso,\n"," },\n"," \"datasets\": toml.loads(custom_dataset)[\"datasets\"] if custom_dataset else [\n"," {\n"," \"subsets\": [\n"," {\n"," \"num_repeats\": num_repeats,\n"," \"image_dir\": images_folder,\n"," \"class_tokens\": None if caption_extension else project_name\n"," }\n"," ]\n"," }\n"," ]\n"," }\n","\n"," for key in dataset_config_dict:\n"," if isinstance(dataset_config_dict[key], dict):\n"," dataset_config_dict[key] = {k: v for k, v in dataset_config_dict[key].items() if v is not None}\n","\n"," with open(dataset_config_file, \"w\") as f:\n"," f.write(toml.dumps(dataset_config_dict))\n"," print(f\"๐Ÿ“„ Dataset config saved to {dataset_config_file}\")\n","\n","\n","def download_model():\n"," global old_model_url, model_url, model_file, vae_url, vae_file\n"," real_model_url = model_url # There was a reason for having a separate variable but I forgot what it was.\n","\n"," if real_model_url.startswith(\"/content/drive/\"):\n"," # Local model, already checked to exist\n"," model_file = real_model_url\n"," print(f\"๐Ÿ“ Using local model file: {model_file}\")\n"," # Validation\n"," if model_file.lower().endswith(\".safetensors\"):\n"," from safetensors.torch import load_file as load_safetensors\n"," try:\n"," test = load_safetensors(model_file)\n"," del test\n"," except:\n"," return False\n"," elif model_file.lower().endswith(\".ckpt\"):\n"," from torch import load as load_ckpt\n"," try:\n"," test = load_ckpt(model_file)\n"," del test\n"," except:\n"," return False\n"," return True\n","\n"," else:\n"," # Downloadable model\n"," if load_diffusers:\n"," if 'huggingface.co' in real_model_url:\n"," match = re.search(r'huggingface\\.co/([^/]+)/([^/]+)', real_model_url)\n"," if match:\n"," username = match.group(1)\n"," model_name = match.group(2)\n"," model_file = f\"{username}/{model_name}\"\n"," from huggingface_hub import HfFileSystem\n"," fs = HfFileSystem()\n"," existing_folders = set(fs.ls(model_file, detail=False))\n"," necessary_folders = [ \"scheduler\", \"text_encoder\", \"text_encoder_2\", \"tokenizer\", \"tokenizer_2\", \"unet\", \"vae\" ]\n"," if all(f\"{model_file}/{folder}\" in existing_folders for folder in necessary_folders):\n"," print(\"๐Ÿƒ Diffusers model identified.\") # Will be handled by kohya\n"," return True\n"," raise ValueError(\"๐Ÿ’ฅ Failed to load Diffusers model. If this model is not Diffusers, have you tried turning it off at the top of the colab?\")\n","\n"," # Define local filename\n"," if not model_file or old_model_url and old_model_url != model_url:\n"," if real_model_url.lower().endswith((\".ckpt\", \".safetensors\")):\n"," model_file = f\"/content{real_model_url[real_model_url.rfind('/'):]}\"\n"," else:\n"," model_file = \"/content/downloaded_model.safetensors\"\n"," if os.path.exists(model_file):\n"," !rm \"{model_file}\"\n","\n"," # HuggingFace\n"," if m := re.search(r\"(?:https?://)?(?:www\\.)?huggingface\\.co/[^/]+/[^/]+/blob\", real_model_url):\n"," real_model_url = real_model_url.replace(\"blob\", \"resolve\")\n"," # Civitai\n"," elif m := re.search(r\"(?:https?://)?(?:www\\\\.)?civitai\\.com/models/([0-9]+)(/[A-Za-z0-9-_]+)?\", real_model_url):\n"," if m.group(2):\n"," model_file = f\"/content{m.group(2)}.safetensors\"\n"," if m := re.search(r\"modelVersionId=([0-9]+)\", real_model_url):\n"," real_model_url = f\"https://civitai.com/api/download/models/{m.group(1)}\"\n"," else:\n"," raise ValueError(\"๐Ÿ’ฅ optional_custom_training_model contains a civitai link, but the link doesn't include a modelVersionId. You can also right click the download button to copy the direct download link.\")\n","\n"," # Download checkpoint\n"," !aria2c \"{real_model_url}\" --console-log-level=warn -c -s 16 -x 16 -k 10M -d / -o \"{model_file}\"\n","\n"," # Download VAE\n"," if not os.path.exists(vae_file):\n"," !aria2c \"{vae_url}\" --console-log-level=warn -c -s 16 -x 16 -k 10M -d / -o \"{vae_file}\"\n","\n"," # Validation\n","\n"," if model_file.lower().endswith(\".safetensors\"):\n"," from safetensors.torch import load_file as load_safetensors\n"," try:\n"," test = load_safetensors(model_file)\n"," del test\n"," except:\n"," new_model_file = os.path.splitext(model_file)[0]+\".ckpt\"\n"," !mv \"{model_file}\" \"{new_model_file}\"\n"," model_file = new_model_file\n"," print(f\"Renamed model to {os.path.splitext(model_file)[0]}.ckpt\")\n","\n"," if model_file.lower().endswith(\".ckpt\"):\n"," from torch import load as load_ckpt\n"," try:\n"," test = load_ckpt(model_file)\n"," del test\n"," except:\n"," return False\n","\n"," return True\n","\n","\n","def calculate_rex_steps():\n"," # https://github.com/derrian-distro/LoRA_Easy_Training_scripts_Backend/blob/c34084b0435e6e19bb7a01ac1ecbadd185ee8c1e/utils/validation.py#L268\n"," global max_train_steps\n"," print(\"\\n๐Ÿค” Calculating Rex steps\")\n"," if max_train_steps:\n"," calculated_max_steps = max_train_steps\n"," else:\n"," from library.train_util import BucketManager\n"," from PIL import Image\n"," from pathlib import Path\n"," import math\n","\n"," with open(dataset_config_file, \"r\") as f:\n"," subsets = toml.load(f)[\"datasets\"][0][\"subsets\"]\n","\n"," supported_types = [\".png\", \".jpg\", \".jpeg\", \".webp\", \".bmp\"]\n"," res = (resolution, resolution)\n"," bucketManager = BucketManager(False, res, min_bucket_reso, max_bucket_reso, bucket_reso_steps)\n"," bucketManager.make_buckets()\n"," for subset in subsets:\n"," for image in Path(subset[\"image_dir\"]).iterdir():\n"," if image.suffix not in supported_types:\n"," continue\n"," with Image.open(image) as img:\n"," bucket_reso, _, _ = bucketManager.select_bucket(img.width, img.height)\n"," for _ in range(subset[\"num_repeats\"]):\n"," bucketManager.add_image(bucket_reso, image)\n"," steps_before_acc = sum(math.ceil(len(bucket) / train_batch_size) for bucket in bucketManager.buckets)\n"," calculated_max_steps = math.ceil(steps_before_acc / gradient_accumulation_steps) * max_train_epochs\n"," del bucketManager\n","\n"," cycle_steps = calculated_max_steps // (lr_scheduler_num_cycles or 1)\n"," print(f\" cycle steps: {cycle_steps}\")\n"," lr_scheduler_args.append(f\"first_cycle_max_steps={cycle_steps}\")\n","\n"," warmup_steps = round(calculated_max_steps * lr_warmup_ratio) // (lr_scheduler_num_cycles or 1)\n"," if warmup_steps > 0:\n"," print(f\" warmup steps: {warmup_steps}\")\n"," lr_scheduler_args.append(f\"warmup_steps={warmup_steps}\")\n","\n","\n","def main():\n"," global dependencies_installed\n","\n"," if not os.path.exists('/content/drive'):\n"," from google.colab import drive\n"," print(\"๐Ÿ“‚ Connecting to Google Drive...\")\n"," drive.mount('/content/drive')\n","\n"," for dir in (main_dir, trainer_dir, log_folder, images_folder, output_folder, config_folder):\n"," os.makedirs(dir, exist_ok=True)\n","\n"," if not validate_dataset():\n"," return\n","\n"," if not dependencies_installed:\n"," print(\"\\n๐Ÿญ Installing trainer...\\n\")\n"," t0 = time()\n"," install_trainer()\n"," t1 = time()\n"," dependencies_installed = True\n"," print(f\"\\nโœ… Installation finished in {int(t1-t0)} seconds.\")\n"," else:\n"," print(\"\\nโœ… Dependencies already installed.\")\n","\n"," if old_model_url != model_url or not model_file or not os.path.exists(model_file):\n"," print(\"\\n๐Ÿ”„ Getting model...\")\n"," if not download_model():\n"," print(\"\\n๐Ÿ’ฅ Error: The model you specified is invalid or corrupted.\"\n"," \"\\nIf you're using an URL, please check that the model is accessible without being logged in.\"\n"," \"\\nYou can try civitai or huggingface URLs, or a path in your Google Drive starting with /content/drive/MyDrive\")\n"," return\n"," print()\n"," else:\n"," print(\"\\n๐Ÿ”„ Model already downloaded.\\n\")\n","\n"," if lr_scheduler_type:\n"," create_config()\n"," os.chdir(kohya_dir)\n"," calculate_rex_steps()\n"," os.chdir(root_dir)\n","\n"," create_config()\n","\n"," print(\"\\nโญ Starting trainer...\\n\")\n","\n"," os.chdir(kohya_dir)\n"," !{venv_python} {train_network} --config_file={config_file} --dataset_config={dataset_config_file}\n"," os.chdir(root_dir)\n","\n"," if not get_ipython().__dict__['user_ns']['_exit_code']:\n"," display(Markdown(\"### โœ… Done! [Go download your Lora from Google Drive](https://drive.google.com/drive/my-drive)\\n\"\n"," \"### There will be several files, you should try the latest version (the file with the largest number next to it)\"))\n","\n","main()\n"]},{"cell_type":"markdown","metadata":{"id":"mBMUJ7BuvNcn"},"source":["## *๏ธโƒฃ Extras\n","\n","You can run these before starting the training."]},{"cell_type":"markdown","metadata":{"id":"Wd4916Eu1tb9"},"source":["### ๐Ÿ“š Multiple folders in dataset\n","Below is a template allowing you to define multiple folders in your dataset. You must include the location of each folder and you can set different number of repeats for each one. To add more folders simply copy and paste the sections starting with `[[datasets.subsets]]`.\n","\n","When enabling this, the number of repeats set in the main cell will be ignored, and the main folder set by the project name will also be ignored.\n","\n","You can make one of them a regularization folder by adding `is_reg = true` \n","You can also set different `keep_tokens`, `flip_aug`, etc."]},{"cell_type":"code","execution_count":null,"metadata":{"id":"Y037lagnJWmn"},"outputs":[],"source":["custom_dataset = \"\"\"\n","[[datasets]]\n","\n","[[datasets.subsets]]\n","image_dir = \"/content/drive/MyDrive/Loras/example/dataset/good_images\"\n","num_repeats = 3\n","\n","[[datasets.subsets]]\n","image_dir = \"/content/drive/MyDrive/Loras/example/dataset/normal_images\"\n","num_repeats = 1\n","\n","\"\"\""]},{"cell_type":"code","execution_count":null,"metadata":{"id":"W84Jxf-U2TIU"},"outputs":[],"source":["custom_dataset = None"]},{"cell_type":"code","execution_count":null,"metadata":{"cellView":"form","id":"WDjkp4scvPgE"},"outputs":[],"source":["#@markdown ### ๐Ÿ“‚ Unzip dataset\n","#@markdown It's much slower to upload individual files to your Drive, so you may want to upload a zip if you have your dataset in your computer.\n","zip = \"/content/drive/MyDrive/my_dataset.zip\" #@param {type:\"string\"}\n","extract_to = \"/content/drive/MyDrive/Loras/example/dataset\" #@param {type:\"string\"}\n","\n","import os, zipfile\n","\n","if not os.path.exists('/content/drive'):\n"," from google.colab import drive\n"," print(\"๐Ÿ“‚ Connecting to Google Drive...\")\n"," drive.mount('/content/drive')\n","\n","os.makedirs(extract_to, exist_ok=True)\n","\n","with zipfile.ZipFile(zip, 'r') as f:\n"," f.extractall(extract_to)\n","\n","print(\"โœ… Done\")\n"]},{"cell_type":"code","execution_count":null,"metadata":{"cellView":"form","id":"aKWlpsG0jrX3"},"outputs":[],"source":["#@markdown ### ๐Ÿ”ข Count datasets\n","#@markdown Google Drive makes it impossible to count the files in a folder, so this will show you the file counts in all folders and subfolders.\n","folder = \"/content/drive/MyDrive/Loras\" #@param {type:\"string\"}\n","\n","import os\n","from google.colab import drive\n","\n","if not os.path.exists('/content/drive'):\n"," print(\"๐Ÿ“‚ Connecting to Google Drive...\\n\")\n"," drive.mount('/content/drive')\n","\n","tree = {}\n","exclude = (\"_logs\", \"/output\")\n","for i, (root, dirs, files) in enumerate(os.walk(folder, topdown=True)):\n"," dirs[:] = [d for d in dirs if all(ex not in d for ex in exclude)]\n"," images = len([f for f in files if f.lower().endswith((\".png\", \".jpg\", \".jpeg\"))])\n"," captions = len([f for f in files if f.lower().endswith(\".txt\")])\n"," others = len(files) - images - captions\n"," path = root[folder.rfind(\"/\")+1:]\n"," tree[path] = None if not images else f\"{images:>4} images | {captions:>4} captions |\"\n"," if tree[path] and others:\n"," tree[path] += f\" {others:>4} other files\"\n","\n","pad = max(len(k) for k in tree)\n","print(\"\\n\".join(f\"๐Ÿ“{k.ljust(pad)} | {v}\" for k, v in tree.items() if v))\n"]},{"cell_type":"code","execution_count":null,"metadata":{"cellView":"form","id":"-cnM6xM_E6Jx"},"outputs":[],"source":["#@markdown ### โ†ช๏ธ Continue\n","\n","#@markdown Here you can write a path in your Google Drive to load an existing Lora file to continue training on.

\n","#@markdown **Warning:** It's not the same as one long training session. The epochs start from scratch, and it may have worse results.\n","continue_from_lora = \"\" #@param {type:\"string\"}\n","if continue_from_lora and not continue_from_lora.startswith(\"/content/drive/MyDrive\"):\n"," import os\n"," continue_from_lora = os.path.join(\"/content/drive/MyDrive\", continue_from_lora)\n"]},{"cell_type":"markdown","metadata":{"id":"YcTjh07x90Ro"},"source":["# ๐Ÿ“ˆ Plot training results\n","You can do this after running the trainer. You don't need this unless you know what you're doing. \n","The first cell below may fail to load all your logs. Keep trying the second cell until all data has loaded."]},{"cell_type":"code","execution_count":null,"metadata":{"id":"Z_TRI3eX90Rp"},"outputs":[],"source":["%load_ext tensorboard\n","%tensorboard --logdir={log_folder}/"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"6rM5SLq990Rp"},"outputs":[],"source":["from tensorboard import notebook\n","notebook.display(port=6006, height=800)"]}],"metadata":{"accelerator":"GPU","colab":{"gpuType":"T4","provenance":[{"file_id":"1XDv7gpljNdzMBzDXubSKIacOqboU1wT8","timestamp":1739624016353},{"file_id":"https://github.com/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer_XL.ipynb","timestamp":1739180056829}]},"kernelspec":{"display_name":"Python 3","name":"python3"},"language_info":{"name":"python"}},"nbformat":4,"nbformat_minor":0} \ No newline at end of file diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737442885.novanokona_2cc49a19-6ba9-4163-93a9-11b258c972fb_jpeg.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737442885.novanokona_2cc49a19-6ba9-4163-93a9-11b258c972fb_jpeg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b1dddd7d8c8d915b7fe0df1093ea594d3978edc --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737442885.novanokona_2cc49a19-6ba9-4163-93a9-11b258c972fb_jpeg.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e12cace12febd00a92309b8fa44732ea9bbe9a97c32289f80efd497db9c2ccf +size 132300 diff --git "a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737486243.allmand_105_sin_t\303\255tulo_20250121124915.png" "b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737486243.allmand_105_sin_t\303\255tulo_20250121124915.png" new file mode 100644 index 0000000000000000000000000000000000000000..1e64ae4d82b6d4089af995cbf3a3c72d099b5f26 --- /dev/null +++ "b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737486243.allmand_105_sin_t\303\255tulo_20250121124915.png" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231c4ff4d82749d8845366b77377551724052d2875c8999ebcd4415f2fa59bee +size 1226501 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737486637.notsolettuce_pov_you_are_a_pancake.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737486637.notsolettuce_pov_you_are_a_pancake.png new file mode 100644 index 0000000000000000000000000000000000000000..7a5a358592772fd66ca17c87b48d5e3bddc602c7 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737486637.notsolettuce_pov_you_are_a_pancake.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8090766b09a97b056348e76ce468cfea33639e5d1d2bf3830217ce34f18cf3a7 +size 457176 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737490462.realbeefsteak_get_flipped.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737490462.realbeefsteak_get_flipped.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5767c1f00c399e42a9b2e8c1a619a5a6e062a51 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737490462.realbeefsteak_get_flipped.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd341f2911da08831eec106bca3a0e94c7ee7263037ddf5d99c68215bd64e1c +size 106945 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737496502.chopangigante_you_are_a_pancake.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737496502.chopangigante_you_are_a_pancake.png new file mode 100644 index 0000000000000000000000000000000000000000..cc290e0505c5cbcfc83a279772240172fe8d284c --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737496502.chopangigante_you_are_a_pancake.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975e20fa2d8de917ff26ee1ec502c0ad1fa20b272cff320cc42ed3c1466a43b7 +size 3031590 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737524793.zeiros_zeiros_pancake.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737524793.zeiros_zeiros_pancake.png new file mode 100644 index 0000000000000000000000000000000000000000..6d7434f929f6199fb61308140449ff17b4ecb565 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737524793.zeiros_zeiros_pancake.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:654851e0035b5feb1e4076dab9b20f9cf626762bda0ef8b6809e47773d3952e2 +size 1083703 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737533216.avalongoat_pancake.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737533216.avalongoat_pancake.png new file mode 100644 index 0000000000000000000000000000000000000000..18e02bbd13317340c89e931e05b24027ee8e590e --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737533216.avalongoat_pancake.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d5ad407216fdee0785db1ec2d83412de2e738762624e232f9e7333b326265a +size 975891 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737535071.westwardcookie17_img_6391.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737535071.westwardcookie17_img_6391.png new file mode 100644 index 0000000000000000000000000000000000000000..6b3d182260ea23fda424bd58b642622917549eb9 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737535071.westwardcookie17_img_6391.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a520c73d37b41c61b54d94beee5d05d7175aef731038b92060671b29a607c45 +size 2552187 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737537032.conejown_ghqpe6qxsaegwb9.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737537032.conejown_ghqpe6qxsaegwb9.png new file mode 100644 index 0000000000000000000000000000000000000000..5adaae34bda0f383c4a9c55c18c785a87fcfc062 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737537032.conejown_ghqpe6qxsaegwb9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e073c17ed3b798ceb9f83b99fd79e91c34b2b9e0f48c60a338ceb214cbe730 +size 2258649 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737556551.unartisticlicense_flip_the_pancake__small_.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737556551.unartisticlicense_flip_the_pancake__small_.png new file mode 100644 index 0000000000000000000000000000000000000000..19efef74d7ab7b9cf194b5946b08217b7691e921 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737556551.unartisticlicense_flip_the_pancake__small_.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83edb778dbd5ab9abeea16b4d557da0424f6bd02daef2ec648b49d6d78b356a +size 2858746 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737562619.donutbear_1000000559.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737562619.donutbear_1000000559.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67f62be00625595a0c73b91c55703a5e277c5e0d --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737562619.donutbear_1000000559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:792adb5c055133265047521a2c6cf2c220c4013b3134577ff9d031ce39ea128e +size 116208 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737594328.droptix_hunter_pancake_meme.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737594328.droptix_hunter_pancake_meme.png new file mode 100644 index 0000000000000000000000000000000000000000..c953cc0091eb9ca3b63495801ed983cf01323396 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737594328.droptix_hunter_pancake_meme.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9273392131a8146a428bf371ec21749b35c8b5dbecaed831becbea1baf85a83 +size 1390111 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737655048.zayorangederg_untitled158_20250123132019.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737655048.zayorangederg_untitled158_20250123132019.png new file mode 100644 index 0000000000000000000000000000000000000000..fe18f6f7276122426d20460e60c9a5e6a95cd620 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737655048.zayorangederg_untitled158_20250123132019.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed16d83af1ada726a57e91f468896189da9c20644fd172ce51007b09b1de364 +size 655502 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737655583.heronin868_d50_-_pancake.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737655583.heronin868_d50_-_pancake.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d4492ee97d538b30cb9096173d4847a90d53f8b --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737655583.heronin868_d50_-_pancake.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0db0069d17570407b30fb5c20e6ecf551f6b637070465f8138731317615c982 +size 267995 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737680915.alexyeena_pancake.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737680915.alexyeena_pancake.png new file mode 100644 index 0000000000000000000000000000000000000000..51f3e847afcc5aafc6b88eeff44a27ad993b7f98 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737680915.alexyeena_pancake.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5af8de89d5bd96a0f965f2f8b2ea5bc920272a7a153cf705d9086f9f5614e41 +size 2382660 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737689435.m1l008_povpancake.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737689435.m1l008_povpancake.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53564ffa3615ef5da7afd7afcad73e0ddd757047 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737689435.m1l008_povpancake.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e600bfde08832be6a4f890f74d218d6ef6801da971fda1eb9efeb835e343fb3 +size 321175 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737736370.darkzeus_img_20250124_082400_928.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737736370.darkzeus_img_20250124_082400_928.png new file mode 100644 index 0000000000000000000000000000000000000000..9d8b5791f34dc23246fcb0bb9410e10a798d4035 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737736370.darkzeus_img_20250124_082400_928.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e700a1230b0ce68881195162425661da4343567cfd4f78adbe6422508c5ddead +size 2802819 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737764240.mncart_img_0573_jpeg.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737764240.mncart_img_0573_jpeg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d31f8787cba4e62a9d11cc57ec7487574263d5c5 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737764240.mncart_img_0573_jpeg.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9217457917de6c5c878385bb2526c38a037abfc7245114579ae61c72b98edbf1 +size 373242 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737768880.karnagewuff_pancake_flip_pov.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737768880.karnagewuff_pancake_flip_pov.png new file mode 100644 index 0000000000000000000000000000000000000000..475744a53e3b48388ecad05d9b13b10017dfba03 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737768880.karnagewuff_pancake_flip_pov.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a2d900a281334c7ef11271e00a1d905e431887eaef866ba7b48d3e5e8c5f68 +size 912002 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737807225.frankyzaraki_pancake_meme.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737807225.frankyzaraki_pancake_meme.png new file mode 100644 index 0000000000000000000000000000000000000000..3d6bf4cd38eebed1d0d8207beb1af71b9b096fb7 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737807225.frankyzaraki_pancake_meme.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20408d4c3f50ad93a24415cc5d1630ced1f52e417e9d17d7d39828b8d6ce2665 +size 622618 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737818127.amarox_pancaked.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737818127.amarox_pancaked.png new file mode 100644 index 0000000000000000000000000000000000000000..4968820670775dd7ce4d35e2b32b751e0ae75a42 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737818127.amarox_pancaked.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0375572cc010b226556a207513ceef698d02726fc053a3adcf71080a1754c3dd +size 4159315 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737836289.dominodog10_2025-01-23_gnezik_pancake_meme.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737836289.dominodog10_2025-01-23_gnezik_pancake_meme.png new file mode 100644 index 0000000000000000000000000000000000000000..cab7bd9464772d3f16520cf6aa26fba3946fdfd6 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737836289.dominodog10_2025-01-23_gnezik_pancake_meme.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dac11f91d08f4aa86465c66c9df49575fe3d86fc002bb5ca34d986adef03bfd +size 2422275 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737841226.broiledwulf_broil_pancake_meme_.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737841226.broiledwulf_broil_pancake_meme_.png new file mode 100644 index 0000000000000000000000000000000000000000..899a11cd27b145e6047ece81373197de350bc731 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737841226.broiledwulf_broil_pancake_meme_.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e9ef151dc30f522327152b0c89193fdb8bf6af687ae7d786cb57f2428264725 +size 2332663 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737872073.naku-art_pancake_pov.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737872073.naku-art_pancake_pov.png new file mode 100644 index 0000000000000000000000000000000000000000..efe0e8cf4f31185278f45747192d663745ed0d73 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737872073.naku-art_pancake_pov.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8efe5b7b7d32ff3eda683f1b50eec3fcd748520a51336f9eb687fb428a0405ef +size 2455976 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1737886007.djsonicgo40_20250126_095342.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737886007.djsonicgo40_20250126_095342.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6aad8ac30871df7701211083dceaffe9404656d3 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1737886007.djsonicgo40_20250126_095342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:274a8cf6f49ed1d2e63d7370c69502070f0a3457cd27544f33611553373ba1a7 +size 225468 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738000908.thebeardlyben_barny_pancake_sm1.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738000908.thebeardlyben_barny_pancake_sm1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b1a8a27824e56072b06fa6dc34421604d90a08d --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738000908.thebeardlyben_barny_pancake_sm1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62496c9ba368d49313768e5b449f017e9dcc32953deba6d79f4e191d2bdc559d +size 213728 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738079965.k-n3ko_pancake_meme.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738079965.k-n3ko_pancake_meme.png new file mode 100644 index 0000000000000000000000000000000000000000..197e47908a7d707ea4fe018f4e43d96142b46466 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738079965.k-n3ko_pancake_meme.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d33b9809e19df90243640cd0209a944ff90bdc5d6ebb9e79bf20a63978285010 +size 2757121 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738099095.whupteedoo_1000021185.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738099095.whupteedoo_1000021185.png new file mode 100644 index 0000000000000000000000000000000000000000..67920f4cb43dbb1fe8343c95cff39c7e33449d2b --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738099095.whupteedoo_1000021185.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c11fe55f30abfa470a5a51d02d815f064442a05b3c8487610ed6e67933c078f +size 2172708 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738143604.slashpuppy_sion_meme_fin.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738143604.slashpuppy_sion_meme_fin.png new file mode 100644 index 0000000000000000000000000000000000000000..2de9166a06a537e3207dcca451d534314c61a5c8 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738143604.slashpuppy_sion_meme_fin.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11fa31ca7da7083b0da4cd2fbbd3320ad82b3b9abe7c63d87a4817af50a3ffcb +size 2297602 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738166889.wendell123_1000016939.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738166889.wendell123_1000016939.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9d74bd27d9acb0ac9d466200ddf863450224712 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738166889.wendell123_1000016939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6507219882b5a55ed33049d78702e80a2ce9b808a46d282017947e349e7b077a +size 402380 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738245167.ms.blank_4945416668683808173.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738245167.ms.blank_4945416668683808173.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bc43e55e7514c5dbc4c8130ed13f2e16a3c3c1d --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738245167.ms.blank_4945416668683808173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3836abacc83fcd5d154e2ef7aeac27cd03a98c083652b45ce1bf14f5ed51af74 +size 106167 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738289292.trobbird_youre_a_snack_nommers.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738289292.trobbird_youre_a_snack_nommers.png new file mode 100644 index 0000000000000000000000000000000000000000..2c27035329cc7c35697796860178170f49353dc6 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738289292.trobbird_youre_a_snack_nommers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19b3982f57f0a9b7e6020cb23ea7a28a76168d161e7262f0c63a5f7f3f3bb42 +size 2254617 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738304220.huniiheart_pancakeflippies.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738304220.huniiheart_pancakeflippies.png new file mode 100644 index 0000000000000000000000000000000000000000..44b18e5264f2478858c3825c1f9963bd0cc23f1f --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738304220.huniiheart_pancakeflippies.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bacb300acc98cb1cd504a76b83184c4c40290917c72b3284dcd97dff46a92fa +size 2576220 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738475623.ninjasy2667_image_2025-02-01_235219157.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738475623.ninjasy2667_image_2025-02-01_235219157.png new file mode 100644 index 0000000000000000000000000000000000000000..bd24aba0c840f65815900b68b99a99b0e1c98e6a --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738475623.ninjasy2667_image_2025-02-01_235219157.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894247fc77a6ec972fe01aefaf83cbafbef053965aba1b404fdaa2d16e47d9f9 +size 690200 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738642703.tozeos_sprite-0002.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738642703.tozeos_sprite-0002.png new file mode 100644 index 0000000000000000000000000000000000000000..da46772d78f6956a6eb6ed5fa5633e3637a11f1a --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738642703.tozeos_sprite-0002.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd62b9e82dec451f62492913e34b8ad6db7fd3d0ad108dfc5a03b2d47562d63 +size 2425547 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738717812.bluezii_pancake.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738717812.bluezii_pancake.png new file mode 100644 index 0000000000000000000000000000000000000000..e44845237a3c763d6bec85fec1d550a4312a4ed0 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738717812.bluezii_pancake.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea5c432eac94ffa5d301bb044659408cdda362005fa2da834f8b1c6492fdb46 +size 330820 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738718973.throwawaynottaken2_screenshot_2025-02-04_202649.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738718973.throwawaynottaken2_screenshot_2025-02-04_202649.png new file mode 100644 index 0000000000000000000000000000000000000000..53f81fcafca14d8e12e05c508215d0a22304881b --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738718973.throwawaynottaken2_screenshot_2025-02-04_202649.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65be974695d17f3d6b6daa9dc4fee67e69eec6eb65b62e18747f172ed3facec6 +size 117678 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1738800231.crayonpubby_pancakeflip.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738800231.crayonpubby_pancakeflip.png new file mode 100644 index 0000000000000000000000000000000000000000..1732e6fd1b99b014175a22f0b17697b9956db8a6 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1738800231.crayonpubby_pancakeflip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:652874105a4d83c799dfb98bf2ac4e514205d507569608dab2311dbb5b7b7614 +size 707614 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1739207899.miguelthederg_migibuffmemesig.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739207899.miguelthederg_migibuffmemesig.png new file mode 100644 index 0000000000000000000000000000000000000000..7bcedbf01008bb8c18c8d2787054d4de09bb7ba3 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739207899.miguelthederg_migibuffmemesig.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f93d021a14bff911592d270271b49724d854db43271a883822930de98042e45 +size 754575 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1739271016.dunothewolf_pancake_fa.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739271016.dunothewolf_pancake_fa.png new file mode 100644 index 0000000000000000000000000000000000000000..88e00a42d4c2d643563c4fb26e5662fe2c85f638 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739271016.dunothewolf_pancake_fa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938e1309c30099d6deccdc4ca269a87725b4506aa68bad3614f4fafc052dbeae +size 753298 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1739547066.mothaus_povpancake_antwannabe_.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739547066.mothaus_povpancake_antwannabe_.png new file mode 100644 index 0000000000000000000000000000000000000000..90c59fc3a90a17876cd94154a8396958adcaf43c --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739547066.mothaus_povpancake_antwannabe_.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3bb200bd72b85289ac4d13d1e98e7eb0e23fcfddd20fd63f68cfb479914b1f +size 927203 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1739550422.r-n_photo_2025-02-08_02-04-51.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739550422.r-n_photo_2025-02-08_02-04-51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b857af8ae57326371059464c9009f9540b83db26 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739550422.r-n_photo_2025-02-08_02-04-51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c983a41ab612576b17f64e1dcbdd0b139110a601282919211f0bdfa29c467e87 +size 93142 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1739729464.chrispywolf_mordechaifliip.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739729464.chrispywolf_mordechaifliip.png new file mode 100644 index 0000000000000000000000000000000000000000..625420a503b4c16e8437c39f13ff31d9c2a6cbaa --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739729464.chrispywolf_mordechaifliip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4245e57d85a891266214a0b3dacd943ae56c0cf5caa707bc4b0372be7fadbc3f +size 1008300 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1739913003.chubsthewolff_chubs_pancake_meme.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739913003.chubsthewolff_chubs_pancake_meme.png new file mode 100644 index 0000000000000000000000000000000000000000..8b890b09f3565862f5913abe4f2e6ecaeb14572b --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1739913003.chubsthewolff_chubs_pancake_meme.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4f40778b9772329471c792fddf5ab7e85ad70ac5e170b4870487c8bb6545ad +size 858224 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1740491149.garphan95_img_3474.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1740491149.garphan95_img_3474.png new file mode 100644 index 0000000000000000000000000000000000000000..4dd8bf04359b791b8d0a189698eddf971d8c4426 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1740491149.garphan95_img_3474.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a32582cfe63e76177ca1f585d41d88da35db62f8f9b8c0cf0ed0cce50445619c +size 2346481 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1740503362.capitainebyakko_pov_pancake_ych_deveral_ld.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1740503362.capitainebyakko_pov_pancake_ych_deveral_ld.png new file mode 100644 index 0000000000000000000000000000000000000000..dfb3c8980b14f8c01d36a62e3ca7a48397545504 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1740503362.capitainebyakko_pov_pancake_ych_deveral_ld.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588cb4a6d2d11a5b2c2d0f202547eccf9ed699ccbb2a2683d6bb43d2987e2c01 +size 306693 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1740542718.s1ncitystudios_pancake_pov.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1740542718.s1ncitystudios_pancake_pov.png new file mode 100644 index 0000000000000000000000000000000000000000..8caa7fa98f28ab1b36072f2434734baddba1d07d --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1740542718.s1ncitystudios_pancake_pov.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62200416bd38d3c3bb593cd345f70bf1b48d093d559e335c8b18d573c60ef71 +size 2323407 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1743747435.lizblizzelixir_20250403_231257.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/1743747435.lizblizzelixir_20250403_231257.png new file mode 100644 index 0000000000000000000000000000000000000000..ccad1fbc5f4ee0b3e30fa533096113112e5fa6da --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1743747435.lizblizzelixir_20250403_231257.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990a27859479f947a7c94a50a29e80609a831d9a26447c59b7b0ebe2f464e0ce +size 516236 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/1744723195.ordinarymanner_that_one_meme.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/1744723195.ordinarymanner_that_one_meme.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ed48a0837d4ddcd121277a85a209ade099b65e9 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/1744723195.ordinarymanner_that_one_meme.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b95ff8997f76fd99573afe0bbc29f1c5fd92f1b9fd231b6215c56d9d5855c9 +size 164245 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/2025-02-15_17-27-56_UTC_1.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/2025-02-15_17-27-56_UTC_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a40c199a08332c5d87298b2a060eb29e0b0c97e --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/2025-02-15_17-27-56_UTC_1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11730a91c41f7d4b8916b7ebda47f51ef178317d78d6ab8001ec576f23489fc1 +size 180932 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/2025-02-23_08-04-21_UTC.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/2025-02-23_08-04-21_UTC.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5d4661780f0fcfbeb9c0f6d2ff2bbca1373fe99 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/2025-02-23_08-04-21_UTC.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33adabf5286dc2a9e4be80edcdd4b43cfe77d4c215dee0254c4d958c34b1452f +size 97687 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042510.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042510.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0838a3dfb3d0c024d254513ccae174ad2de7704 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67972859d8a432e1b471810a483cab5f5236f8959d75e85d790fa4e79960a1c3 +size 545143 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042514.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d49b964fb661460355b52be03b381a3be0f7558 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d68db8af25b87ccf753788a28f1d748b3768c85877ecc761fde6e370314316 +size 2921810 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042516.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042516.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9388b397cb193dec9e662c2e8e1561c11a383c34 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9c8dc8dfe35041b24e11a6d09f40c62287460defcb9f2d119a8aa5bf72cea6 +size 117307 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042520.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042520.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92d1cad878ba4ce01e62ec2719d5d8b9f80f0c1f --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f6d8f950921cc7df9eb0dd83b3ef4d05c72dcd303201d7d2138c8ac187adc4 +size 757914 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042523.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042523.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae452fbddb8bd8656e78d045bf07a72259f963c7 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567593a62d623edbc86020fa278e35042512d3dc2b500bef9abe3d135850c0c4 +size 251924 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042524.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042524.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f092bc8f24e6edbd35b686ccc419cd555887c490 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042524.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0cddb1f2c274e8195b3a5868d9751993b7b82dae709b0057667d9922ba76d8 +size 282980 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042527.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042527.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27b1d5e6db7ec83fb041f4dba742cc49375f49c6 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a6ca9db8963931b24a6515e089dc79f3ff085a4d7e0e1ff87e96b6d02fd8d3 +size 114091 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042532.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042532.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6cf740efef4dd80accc56c1d704c22aea47f932 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639eb51c4706233580e7da91a468bef10ba9f5ea72833ee6a58673ff32c5693b +size 232489 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042535.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042535.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f1ab0b4d1ef95ae8be113d330ff7306b938fb22 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042535.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e64c659b73983701516a1c5c5594a53407e31b57a5813ab8b5f3fdbf7fe12d5 +size 252380 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042542.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042542.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aaa0f7ff164aefc47ab981e7004b9dd33170c1bd --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8b2eb67087a72a1f4175a983588819df84f0a1926e4d1a16167c80efca5b88 +size 103695 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042549.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042549.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34904477d8b1260316c55f3234282dddbdbf2542 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_042549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c475ffb9f546d68dbaef51a128950749aeaf2e9151cc15bc65171823b92bfb7d +size 121113 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043643.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043643.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1dd68009a7e2ce970048c3b14e375ee8fd1c131 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8febbbe17d4ed72efe8e4c16891d7362e1ee20f74c8ef4f58fa232ce10399ceb +size 110504 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043700.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043700.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f357781c811af5171b7ff503c0007e2394f19345 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9cb96bd0404bc66d441a4d0b189158ff9032ec29bbafd6a5eb8266aa377a74 +size 84612 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043713.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043713.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3f26d1e2739fecd2888d350fc61bc0260f7239c --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a016268c0c56b3fe0ac25cf81659cf754ccf9d022d25b00c16bf4a2bf91e2e +size 86545 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043716.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043716.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0947a7fe07c9b190390aa56c44ed0b81b3254da9 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de28d279e6c258372b5d3f9667842b5e255b839daea862ca5203b14ef10bea42 +size 93372 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043721.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043721.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8911bffaaf38f20d669ceebee31e4ffac034f536 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_043721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee1f52b79e90968bcf838bb6bed281c6e5310d315502e514017e2375897a464 +size 259619 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052835.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052835.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64fddedb322f432712cdc01d7c3ecef0475503f7 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052835.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fda953a9d1fcbeb52b3614977e34c12a279cec9dad7c53ac6f162f93a2435e5b +size 257989 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052839.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052839.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42700d232b235fe90fd742049c378b85031a2586 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f6735dcd06cbba13a618001667714f2d6188910a4efa6476e9d7f6e265bed0 +size 252625 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052851.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052851.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcc64ce0372b835b21e4db8de13509ca74d8b709 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f796e94a7e5eae315e315999267f602769d40973666b87456b5a074f96db74c0 +size 617107 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052856.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052856.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4be66884b313027e0491a0acca369eb9b082808 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a74ea70c9c217069d275ec84938d1d022a96146f2a92b7760056e3b7e23f57ab +size 393387 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052906.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052906.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ca4c417a1f1f74bb51692c20850e30a6b46ba5d --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052906.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b03207ad77559388afab084d2e5358cb971e745a9342286f884cb35fe5fe40 +size 428929 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052919.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052919.jpg new file mode 100644 index 0000000000000000000000000000000000000000..811c906648704334b71a9a002fa08ab1a8be7af2 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a47567243924819c625c4d4df6034779577f2daead0da986e95c57b79f4b51 +size 414518 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052923.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052923.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18859ee4119f88f2370e6c6c7fe86a96c1191030 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde9666d65afd0d3019c48ce996d77888d9a451a103acf5d9f9ec9ae0b381d87 +size 413713 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052927.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052927.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91d6662dcce8cf7a86830a1dfca60cde427c05ff --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31b9308a7491dc303cb5bce39b336b4da58257ca9e583dbc42a9cf94cb447fb +size 402936 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052930.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052930.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e94e431114be25afe4034e5826a32131271a7cc --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a1ce63756ddba6ff328cb5394a4961f2af068c6ee128f35479d2dbb7404f94 +size 511780 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052934.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052934.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01b61c95552e1daef24b28bba9730dc3a6c514d9 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4794eab65836feac469b0240cc7de906a98faef872e72274ec06bc0d3dafaba +size 538304 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052947.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052947.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1df8c39c00f53daf63303f2c8c21b8f3d92fabd3 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052947.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:224c5fb2a3188293c7a9bee6bf2cf96078d6c691af3a586dbd8558046a063cb7 +size 153543 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052956.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052956.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35bdcaf234e839d7e530020b6e5c80725fcebd37 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf45edb244e0dfacf72535297fc221db0369afb9d7f7b27600b2df3da04f1326 +size 212820 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052959.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052959.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2481eee95d9efac1e9c33e5edf2ee0b38bb9e652 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_052959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9b4c504c4295e8088c9a9232cb82c08a9211400036fcb0a55b561d6e650d83 +size 297734 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_053011.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_053011.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae998e66e5156a043f81e414be0aec615ab26d8f --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_053011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5e6f05e4516d5308d059dc8ed655fe6810d78a1840c60cf9b1dd9e343ceccf +size 189596 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_053031.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_053031.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcfb76b0e4eb50328f82e1f0854db58e72b58981 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_053031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2560bf1bbc431de5212cf6cdac47847bc1130119cb87b2670ec34c1cd4ae22 +size 63833 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_054047.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_054047.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5b8db24c1b0441f6c804e8aa9d68022c084e0cb --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_054047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d8256974d21c4db49d1c6a01a861880ae4ea8f50db62d60732172f125542b4 +size 97705 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_054114.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_054114.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9f9f4f6142ca8f3c4e89e3177719de6c2ef505b --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/20250417_054114.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:177f43ef20d0a6d3b74cbfabff7a0cb7d9fae6f81d76938a88ffb3ecbd3b17fa +size 80010 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/6400314_1652755_jacketry_untitled-6400314.db5abf72c031216c6e76733d0ef85905.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/6400314_1652755_jacketry_untitled-6400314.db5abf72c031216c6e76733d0ef85905.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f61177ac459fab555485b136e5af49bdd5d22755 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/6400314_1652755_jacketry_untitled-6400314.db5abf72c031216c6e76733d0ef85905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d78935d1e0d2acde0b7dcf0ddf8e1110a5dbcfa57dfdcd285b5ed8a75dafbfb +size 102966 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh-Tl6aXMAENltk.jpg_large.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh-Tl6aXMAENltk.jpg_large.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b07241eac0cfa665cd6d49638bfff57411b4a64d --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh-Tl6aXMAENltk.jpg_large.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a77cde8a5fd960377af2d4b1c890995a16f3f202e5a25fa51149d63222af118 +size 125202 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh0hnpBaQAEQO9m.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh0hnpBaQAEQO9m.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14fb7b4ca52cec8e39599a531dc51e3fc7216cad --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh0hnpBaQAEQO9m.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3afe02f24024469b5a6763b15bdcc41e3875c754c946f59ba3305ab9da2c003d +size 69106 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh1rGa3WwAA0lZ4.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh1rGa3WwAA0lZ4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6f0b95d70927e2c3b8991f2a9aa05d8fd41d9e8 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh1rGa3WwAA0lZ4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c7a493ce6606db3ef2febf40fe97b2201779a0896a0385fad8f0af401494ab +size 100557 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh3Eto7XgAAA0iu.jpg_large.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh3Eto7XgAAA0iu.jpg_large.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6daede7d508e26e54fc0c041b70aacb796ad856f --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/Gh3Eto7XgAAA0iu.jpg_large.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebade431690aefada29b77f8f2ece04cb011499b3b2ae6ffabdaa1f90fe36e95 +size 175833 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/GhxTUNXWIAAwbHj.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/GhxTUNXWIAAwbHj.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7569264ee01de814eb9675a4af4cbe82cffbed5d --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/GhxTUNXWIAAwbHj.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1280d68b87ec5cfca613b7d3631660864aa248f6ee4fb3b904dc075a3bb3bca +size 122015 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/Ghy6TQAXgAA7xjo.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/Ghy6TQAXgAA7xjo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..146f61403f97d7c187b14258512163ba77f83f77 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/Ghy6TQAXgAA7xjo.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc5e7625072d60486c347d90b035baf6cc07afc1c9a64c863e84a39864edc91 +size 136048 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/GhzUp6TaIAA9131.jpg_large.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/GhzUp6TaIAA9131.jpg_large.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3518151d6582940595627e909b1f85c9c5f2640 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/GhzUp6TaIAA9131.jpg_large.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4740f8ee2189f21c21321585c46ccaf366f1196bf6c15c68d69e5a67657cc485 +size 227575 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/IMG_20250417_055443.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/IMG_20250417_055443.png new file mode 100644 index 0000000000000000000000000000000000000000..f49eb78257f0fa93e0cd4cfd4798308437870a4e --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/IMG_20250417_055443.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0350aa59455497aef4bade3682bd26d03493fc128c8ec0a872b986f14c339c +size 491062 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/__brody_original_drawn_by_plateforrat__829ff678ede5e6dc037af7913e177d86.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/__brody_original_drawn_by_plateforrat__829ff678ede5e6dc037af7913e177d86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b76cc06f610118686ccc0443c3d3a0933374f219 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/__brody_original_drawn_by_plateforrat__829ff678ede5e6dc037af7913e177d86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5225dca13db181c79b20df112b0377666924a593f04864b3c47ec94265d7c064 +size 1333955 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/__senshi_dungeon_meshi_and_1_more_drawn_by_krunnnnnch__be8f585bb45a505bcbb363a52cacdcb6.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/__senshi_dungeon_meshi_and_1_more_drawn_by_krunnnnnch__be8f585bb45a505bcbb363a52cacdcb6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f70b7240ba506649f4778fa49c31264048cd5fd0 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/__senshi_dungeon_meshi_and_1_more_drawn_by_krunnnnnch__be8f585bb45a505bcbb363a52cacdcb6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487412c0e525aa9224f48cabecc7c995cd6d11fc3cbad629a18214b9cb557b49 +size 600730 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/__wise_eous_and_ben_bigger_zenless_zone_zero_and_1_more_drawn_by_ezizekekiel__2f1f1e5fa8cafb7ce81bae14a2847520.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/__wise_eous_and_ben_bigger_zenless_zone_zero_and_1_more_drawn_by_ezizekekiel__2f1f1e5fa8cafb7ce81bae14a2847520.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb02dfd37ac1588f1d05c2afe85085cc4c4f3283 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/__wise_eous_and_ben_bigger_zenless_zone_zero_and_1_more_drawn_by_ezizekekiel__2f1f1e5fa8cafb7ce81bae14a2847520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec5c964cf340cba113e47a4f016c2387789b0d64b0d8dddd14d969ca5f1150e +size 2209508 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/d80f3be02e52f8acd14623262526408c.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/d80f3be02e52f8acd14623262526408c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0032848e164d042cf125d4e993dd82139dc41b1 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/d80f3be02e52f8acd14623262526408c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207307d07922a92dd6223c471cbb7c2f0b6446d5d1801dd169623a727d105a4f +size 72698 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/dj0b811-545f4fc5-0eb3-4a3a-90a8-d2788c37db35.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/dj0b811-545f4fc5-0eb3-4a3a-90a8-d2788c37db35.png new file mode 100644 index 0000000000000000000000000000000000000000..62ab4de1a0b4db0e510498dba3f0e5d0c77b4f44 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/dj0b811-545f4fc5-0eb3-4a3a-90a8-d2788c37db35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a9742ae3107e34a3e7895b5e999acf0a1f4b2b274b6cdd400841ef810bb634 +size 531739 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/meme_art_by_bunzab_dj1lv38.png b/pov_you_re_a_pancake_meme_Illustrious/dataset/meme_art_by_bunzab_dj1lv38.png new file mode 100644 index 0000000000000000000000000000000000000000..425c7c30b767f07db23ca96047e4489a588eedd8 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/meme_art_by_bunzab_dj1lv38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c391902da53aec88444d8366fdb1ee61417bf1efc708c79e7976aac4c9c274 +size 2687296 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/pov__you_re_a_pancake____by_vaynoo_dj2rp04-fullview.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/pov__you_re_a_pancake____by_vaynoo_dj2rp04-fullview.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b8f9682e5285c3f067a0b47456de86fac94abb9 --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/pov__you_re_a_pancake____by_vaynoo_dj2rp04-fullview.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf0e779c58eed2e49b48b4c1fead9a408e267daf4c9c5dc2579808a43a8ff9c +size 367830 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/pov__you_re_a_pancake_and_i_m_about_to_flip_you_by_thatgreenandfatcoon_dj2gids.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/pov__you_re_a_pancake_and_i_m_about_to_flip_you_by_thatgreenandfatcoon_dj2gids.jpg new file mode 100644 index 0000000000000000000000000000000000000000..002ff2cf1f96ef709408a03dbfec3235f676d54d --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/pov__you_re_a_pancake_and_i_m_about_to_flip_you_by_thatgreenandfatcoon_dj2gids.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8f8d617338af12637898f54c1bdae4f99226e77d0634685c5e9a868c16527a +size 142822 diff --git a/pov_you_re_a_pancake_meme_Illustrious/dataset/tumblr_22757fa5b2b4c2ac8bd120a6ad338a51_9f633cd3_1280.jpg b/pov_you_re_a_pancake_meme_Illustrious/dataset/tumblr_22757fa5b2b4c2ac8bd120a6ad338a51_9f633cd3_1280.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58ba990f5ce4b99d70372200e4aa2c3035d47e4b --- /dev/null +++ b/pov_you_re_a_pancake_meme_Illustrious/dataset/tumblr_22757fa5b2b4c2ac8bd120a6ad338a51_9f633cd3_1280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57dff18288e4a522556030e8d979ffcf678e8ba593ef9603467d75c7e94a55c +size 193910