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** | [](https://github.com/hollowstrawberry/kohya-colab) | | |\n","| ๐ **Dataset Maker** | [](https://github.com/hollowstrawberry/kohya-colab/blob/main/Dataset_Maker.ipynb) | [](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Dataset_Maker.ipynb) | [](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Spanish_Dataset_Maker.ipynb) |\n","| โญ **Lora Trainer** | [](https://github.com/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb) | [](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer.ipynb) | [](https://colab.research.google.com/github/hollowstrawberry/kohya-colab/blob/main/Spanish_Lora_Trainer.ipynb) |\n","| ๐ **XL Lora Trainer** | [](https://github.com/hollowstrawberry/kohya-colab/blob/main/Lora_Trainer_XL.ipynb) | [](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":[" \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