{ "cells": [ { "cell_type": "markdown", "id": "9b84b389", "metadata": { "id": "3FgedoPTwNIy", "papermill": { "duration": 0.02114, "end_time": "2026-04-09T14:15:04.157266+00:00", "exception": false, "start_time": "2026-04-09T14:15:04.136126+00:00", "status": "completed" }, "tags": [] }, "source": [ "To run this, press \"*Runtime*\" and press \"*Run all*\" on a Google Colab L4 instance!\n", "
\n", "\n", "\n", " Join Discord if you need help + ⭐ Star us on Github ⭐\n", "
\n", "\n", "To install Unsloth on your local device, follow [our guide](https://unsloth.ai/docs/get-started/install). This notebook is licensed [LGPL-3.0](https://github.com/unslothai/notebooks?tab=LGPL-3.0-1-ov-file#readme).\n", "\n", "You will learn how to do [data prep](#Data), how to [train](#Train), how to [run the model](#Inference), & how to save it" ] }, { "cell_type": "markdown", "id": "7bf3fc9f", "metadata": { "id": "kD8yWWE9wNIz", "papermill": { "duration": 0.017711, "end_time": "2026-04-09T14:15:04.192885+00:00", "exception": false, "start_time": "2026-04-09T14:15:04.175174+00:00", "status": "completed" }, "tags": [] }, "source": [ "### News" ] }, { "cell_type": "markdown", "id": "bc8ec7ab", "metadata": { "id": "dYFNULMnwNIz", "papermill": { "duration": 0.01829, "end_time": "2026-04-09T14:15:04.229560+00:00", "exception": false, "start_time": "2026-04-09T14:15:04.211270+00:00", "status": "completed" }, "tags": [] }, "source": [ "Introducing **Unsloth Studio** - a new open source, no-code web UI to train and run LLMs. [Blog](https://unsloth.ai/docs/new/studio) • [Notebook](https://colab.research.google.com/github/unslothai/unsloth/blob/main/studio/Unsloth_Studio_Colab.ipynb)\n", "\n", "\n", "\n", "\n", "
\"Unsloth
Train models — no code needed
\"Unsloth
Run GGUF models on Mac, Windows & Linux
\n", "\n", "Train MoEs - DeepSeek, GLM, Qwen and gpt-oss 12x faster with 35% less VRAM. [Blog](https://unsloth.ai/docs/new/faster-moe)\n", "\n", "Ultra Long-Context Reinforcement Learning is here with 7x more context windows! [Blog](https://unsloth.ai/docs/new/grpo-long-context)\n", "\n", "New in Reinforcement Learning: [FP8 RL](https://unsloth.ai/docs/new/fp8-reinforcement-learning) • [Vision RL](https://unsloth.ai/docs/new/vision-reinforcement-learning-vlm-rl) • [Standby](https://unsloth.ai/docs/basics/memory-efficient-rl) • [gpt-oss RL](https://unsloth.ai/docs/new/gpt-oss-reinforcement-learning)\n", "\n", "Visit our docs for all our [model uploads](https://unsloth.ai/docs/get-started/unsloth-model-catalog) and [notebooks](https://unsloth.ai/docs/get-started/unsloth-notebooks)." ] }, { "cell_type": "markdown", "id": "e7bd6a4f", "metadata": { "id": "DQ6w6D0UwNIz", "papermill": { "duration": 0.017554, "end_time": "2026-04-09T14:15:04.265115+00:00", "exception": false, "start_time": "2026-04-09T14:15:04.247561+00:00", "status": "completed" }, "tags": [] }, "source": [ "### Installation" ] }, { "cell_type": "code", "execution_count": 1, "id": "28bc6243", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:15:04.302392Z", "iopub.status.busy": "2026-04-09T14:15:04.301722Z", "iopub.status.idle": "2026-04-09T14:15:08.424803Z", "shell.execute_reply": "2026-04-09T14:15:08.423967Z" }, "id": "LSA1qFrKwNIz", "papermill": { "duration": 4.143759, "end_time": "2026-04-09T14:15:08.426762+00:00", "exception": false, "start_time": "2026-04-09T14:15:04.283003+00:00", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "%%capture\n", "try: import numpy, PIL; _numpy = f\"numpy=={numpy.__version__}\"; _pil = f\"pillow=={PIL.__version__}\"\n", "except: _numpy = \"numpy\"; _pil = \"pillow\"\n", "!uv pip install -qqq \\\n", " \"torch>=2.8.0\" \"triton>=3.4.0\" {_numpy} {_pil} torchvision bitsandbytes \\\n", " unsloth \"unsloth_zoo>=2026.4.5\" transformers==5.5.0 torchcodec timm" ] }, { "cell_type": "markdown", "id": "f6b4946d", "metadata": { "id": "TGMWlrRdzwgf", "papermill": { "duration": 0.018261, "end_time": "2026-04-09T14:15:08.464472+00:00", "exception": false, "start_time": "2026-04-09T14:15:08.446211+00:00", "status": "completed" }, "tags": [] }, "source": [ "### Unsloth\n", "\n", "`FastModel` supports loading nearly any model now! This includes Vision and Text models!" ] }, { "cell_type": "code", "execution_count": 2, "id": "0da09ebe", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:15:08.501803Z", "iopub.status.busy": "2026-04-09T14:15:08.501126Z", "iopub.status.idle": "2026-04-09T14:18:12.449859Z", "shell.execute_reply": "2026-04-09T14:18:12.449089Z" }, "id": "-Xbb0cuLzwgf", "outputId": "b1936459-858a-460f-d39c-fe4d41114da8", "papermill": { "duration": 183.969777, "end_time": "2026-04-09T14:18:12.451994+00:00", "exception": false, "start_time": "2026-04-09T14:15:08.482217+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "🦥 Unsloth: Will patch your computer to enable 2x faster free finetuning.\n", "🦥 Unsloth Zoo will now patch everything to make training faster!\n", "==((====))== Unsloth 2026.4.4: Fast Gemma4 patching. Transformers: 5.5.0.\n", " \\\\ /| Tesla T4. Num GPUs = 2. Max memory: 14.563 GB. Platform: Linux.\n", "O^O/ \\_/ \\ Torch: 2.10.0+cu128. CUDA: 7.5. CUDA Toolkit: 12.8. Triton: 3.6.0\n", "\\ / Bfloat16 = FALSE. FA [Xformers = 0.0.35. FA2 = False]\n", " \"-____-\" Free license: http://github.com/unslothai/unsloth\n", "Unsloth: Fast downloading is enabled - ignore downloading bars which are red colored!\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3f9356b907ff4aeb8a45acce1e82e41b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "model.safetensors: 0%| | 0.00/16.0G [00:00" ] }, { "cell_type": "code", "execution_count": 4, "id": "3991f051", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:18:12.637777Z", "iopub.status.busy": "2026-04-09T14:18:12.637023Z", "iopub.status.idle": "2026-04-09T14:18:56.352960Z", "shell.execute_reply": "2026-04-09T14:18:56.352104Z" }, "id": "9jGeSb9bWe0k", "outputId": "289205bd-b890-4659-8c82-8c7674befdfe", "papermill": { "duration": 43.740329, "end_time": "2026-04-09T14:18:56.354671+00:00", "exception": false, "start_time": "2026-04-09T14:18:12.614342+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "I am sorry, but I cannot answer that question. The image you provided is a photograph of a sloth, and it is not a film poster or a scene from a movie, so it does not feature in any films.\n" ] } ], "source": [ "sloth_link = \"https://files.worldwildlife.org/wwfcmsprod/images/Sloth_Sitting_iStock_3_12_2014/story_full_width/8l7pbjmj29_iStock_000011145477Large_mini__1_.jpg\"\n", "\n", "messages = [{\n", " \"role\" : \"user\",\n", " \"content\": [\n", " { \"type\": \"image\", \"image\" : sloth_link },\n", " { \"type\": \"text\", \"text\" : \"Which films does this animal feature in?\" }\n", " ]\n", "}]\n", "# You might have to wait 1 minute for Unsloth's auto compiler\n", "do_gemma_4_inference(messages, max_new_tokens = 256)" ] }, { "cell_type": "markdown", "id": "13c09053", "metadata": { "id": "eh0BzbZPWtRD", "papermill": { "duration": 0.021173, "end_time": "2026-04-09T14:18:56.397839+00:00", "exception": false, "start_time": "2026-04-09T14:18:56.376666+00:00", "status": "completed" }, "tags": [] }, "source": [ "Let's make a poem about sloths!" ] }, { "cell_type": "code", "execution_count": 5, "id": "f05f68d7", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:18:56.442084Z", "iopub.status.busy": "2026-04-09T14:18:56.441720Z", "iopub.status.idle": "2026-04-09T14:19:19.809135Z", "shell.execute_reply": "2026-04-09T14:19:19.808438Z" }, "id": "R3ExuK8cWuT3", "outputId": "d63b198a-00c6-49a5-d0e5-78cbd18d217f", "papermill": { "duration": 23.39163, "end_time": "2026-04-09T14:19:19.810646+00:00", "exception": false, "start_time": "2026-04-09T14:18:56.419016+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "## The Gentle Pace\n", "\n", "In emerald woods, where mosses softly cling,\n", "And dappled sunlight makes the shadows swing,\n", "There moves a creature, slow beneath the green,\n", "The sloth, a masterpiece of patient scene.\n", "\n", "A hanging silhouette, a mossy grace,\n", "Adorning time within its tranquil space.\n", "No hurried breath disturbs its languid guise,\n", "It moves as if the forest breathes through sighs.\n", "\n", "The world rushes by—a frantic, buzzing flight—\n", "Of birds in chorus, bathed in blinding light.\n", "But the sloth observes it with a knowing eye,\n", "Content within its slow eternity.\n" ] } ], "source": [ "messages = [{\n", " \"role\": \"user\",\n", " \"content\": [{ \"type\" : \"text\",\n", " \"text\" : \"Write a poem about sloths.\" }]\n", "}]\n", "do_gemma_4_inference(messages)" ] }, { "cell_type": "markdown", "id": "3b172504", "metadata": { "id": "wZrmFRZpZtGf", "papermill": { "duration": 0.025014, "end_time": "2026-04-09T14:19:19.861788+00:00", "exception": false, "start_time": "2026-04-09T14:19:19.836774+00:00", "status": "completed" }, "tags": [] }, "source": [ "# Gemma 4 can also hear!" ] }, { "cell_type": "code", "execution_count": 6, "id": "6285a30a", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:19:19.912674Z", "iopub.status.busy": "2026-04-09T14:19:19.912128Z", "iopub.status.idle": "2026-04-09T14:19:20.258124Z", "shell.execute_reply": "2026-04-09T14:19:20.257342Z" }, "id": "68crYajNZtw1", "outputId": "e8ffe42f-79d8-473c-8b2b-8d4d05acc549", "papermill": { "duration": 0.376154, "end_time": "2026-04-09T14:19:20.262661+00:00", "exception": false, "start_time": "2026-04-09T14:19:19.886507+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/html": [ "\n", " \n", " " ], "text/plain": [ "" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from IPython.display import Audio, display\n", "Audio(\"https://www.nasa.gov/wp-content/uploads/2015/01/591240main_JFKmoonspeech.mp3\")" ] }, { "cell_type": "code", "execution_count": 7, "id": "4fdc2f3c", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:19:20.323617Z", "iopub.status.busy": "2026-04-09T14:19:20.323336Z", "iopub.status.idle": "2026-04-09T14:19:20.800752Z", "shell.execute_reply": "2026-04-09T14:19:20.799625Z" }, "id": "k3vrdoa0Z01X", "papermill": { "duration": 0.509763, "end_time": "2026-04-09T14:19:20.802792+00:00", "exception": false, "start_time": "2026-04-09T14:19:20.293029+00:00", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "!wget -qqq https://www.nasa.gov/wp-content/uploads/2015/01/591240main_JFKmoonspeech.mp3 -O audio.mp3" ] }, { "cell_type": "code", "execution_count": 8, "id": "95b24a57", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:19:20.862299Z", "iopub.status.busy": "2026-04-09T14:19:20.861816Z", "iopub.status.idle": "2026-04-09T14:19:39.539296Z", "shell.execute_reply": "2026-04-09T14:19:39.538406Z" }, "id": "BJr_D4O9Z2Zh", "outputId": "d6517a81-1d77-41dc-b2dd-2e6ab1aa3a29", "papermill": { "duration": 18.708402, "end_time": "2026-04-09T14:19:39.540895+00:00", "exception": false, "start_time": "2026-04-09T14:19:20.832493+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "This audio is about the Apollo program.\n" ] } ], "source": [ "audio_file = \"audio.mp3\"\n", "\n", "messages = [{\n", " \"role\" : \"user\",\n", " \"content\": [\n", " { \"type\": \"audio\", \"audio\" : audio_file },\n", " { \"type\": \"text\", \"text\" : \"What is this audio about?\" }\n", " ]\n", "}]\n", "do_gemma_4_inference(messages, max_new_tokens = 256)" ] }, { "cell_type": "markdown", "id": "20e934e5", "metadata": { "id": "L15JuAmmaOkB", "papermill": { "duration": 0.027251, "end_time": "2026-04-09T14:19:39.597028+00:00", "exception": false, "start_time": "2026-04-09T14:19:39.569777+00:00", "status": "completed" }, "tags": [] }, "source": [ "# Let's combine all 3 modalities together!" ] }, { "cell_type": "code", "execution_count": 9, "id": "7d2bde68", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:19:39.653187Z", "iopub.status.busy": "2026-04-09T14:19:39.652613Z", "iopub.status.idle": "2026-04-09T14:19:56.511776Z", "shell.execute_reply": "2026-04-09T14:19:56.511109Z" }, "id": "is37bsDZaRwV", "outputId": "37235929-0289-4ba6-c352-da6d389cb5a0", "papermill": { "duration": 16.889309, "end_time": "2026-04-09T14:19:56.513361+00:00", "exception": false, "start_time": "2026-04-09T14:19:39.624052+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "This appears to be a snippet of a speech, likely from a historical or political context, given the formal language and the ambitious goal mentioned. The image is a picture of a sloth.\n", "\n", "**Relationship:**\n", "\n", "There is no apparent relationship between the audio and the image. The audio is a serious, goal-oriented statement about a national endeavor, while the image is a photograph of an animal.\n" ] } ], "source": [ "messages = [{\n", " \"role\" : \"user\",\n", " \"content\": [\n", " { \"type\": \"audio\", \"audio\" : audio_file },\n", " { \"type\": \"image\", \"image\" : sloth_link },\n", " { \"type\": \"text\", \"text\" : \"What is this audio and image about? \"\\\n", " \"How are they related?\" }\n", " ]\n", "}]\n", "do_gemma_4_inference(messages, max_new_tokens = 256)" ] }, { "cell_type": "markdown", "id": "17fa13a3", "metadata": { "id": "Bw5XPyYFajyM", "papermill": { "duration": 0.032942, "end_time": "2026-04-09T14:19:56.579220+00:00", "exception": false, "start_time": "2026-04-09T14:19:56.546278+00:00", "status": "completed" }, "tags": [] }, "source": [ "# Let's finetune Gemma 4!\n", "\n", "You can finetune the vision and text parts for now through selection - the audio part can also be finetuned - we're working to make it selectable as well!" ] }, { "cell_type": "markdown", "id": "3666efda", "metadata": { "id": "SXd9bTZd1aaL", "papermill": { "duration": 0.031294, "end_time": "2026-04-09T14:19:56.642703+00:00", "exception": false, "start_time": "2026-04-09T14:19:56.611409+00:00", "status": "completed" }, "tags": [] }, "source": [ "We now add LoRA adapters so we only need to update a small amount of parameters!" ] }, { "cell_type": "code", "execution_count": 10, "id": "eb65be92", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:19:56.719906Z", "iopub.status.busy": "2026-04-09T14:19:56.718703Z", "iopub.status.idle": "2026-04-09T14:20:02.557870Z", "shell.execute_reply": "2026-04-09T14:20:02.556932Z" }, "id": "6bZsfBuZDeCL", "papermill": { "duration": 5.88583, "end_time": "2026-04-09T14:20:02.559982+00:00", "exception": false, "start_time": "2026-04-09T14:19:56.674152+00:00", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "model = FastModel.get_peft_model(\n", " model,\n", " finetune_vision_layers = False, # Turn off for just text!\n", " finetune_language_layers = True, # Should leave on!\n", " finetune_attention_modules = True, # Attention good for GRPO\n", " finetune_mlp_modules = True, # Should leave on always!\n", "\n", " r = 8, # Larger = higher accuracy, but might overfit\n", " lora_alpha = 8, # Recommended alpha == r at least\n", " lora_dropout = 0,\n", " bias = \"none\",\n", " random_state = 3407,\n", ")" ] }, { "cell_type": "markdown", "id": "a1bf9b7c", "metadata": { "id": "vITh0KVJ10qX", "papermill": { "duration": 0.029681, "end_time": "2026-04-09T14:20:02.620946+00:00", "exception": false, "start_time": "2026-04-09T14:20:02.591265+00:00", "status": "completed" }, "tags": [] }, "source": [ "\n", "### Data Prep\n", "We now use the `Gemma-4` format for conversation style finetunes. We use [Maxime Labonne's FineTome-100k](https://huggingface.co/datasets/mlabonne/FineTome-100k) dataset in ShareGPT style. Gemma-4 renders multi turn conversations like below:\n", "\n", "```\n", "<|turn>user\n", "Hello\n", "<|turn>model\n", "Hey there!\n", "```\n", "We use our `get_chat_template` function to get the correct chat template. We support `zephyr, chatml, mistral, llama, alpaca, vicuna, vicuna_old, phi3, llama3, phi4, qwen2.5, gemma3, gemma-4` and more." ] }, { "cell_type": "code", "execution_count": 11, "id": "a1cb35e2", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:20:02.685772Z", "iopub.status.busy": "2026-04-09T14:20:02.685316Z", "iopub.status.idle": "2026-04-09T14:20:02.690342Z", "shell.execute_reply": "2026-04-09T14:20:02.689588Z" }, "id": "LjY75GoYUCB8", "papermill": { "duration": 0.039865, "end_time": "2026-04-09T14:20:02.691841+00:00", "exception": false, "start_time": "2026-04-09T14:20:02.651976+00:00", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "from unsloth.chat_templates import get_chat_template\n", "tokenizer = get_chat_template(\n", " tokenizer,\n", " chat_template = \"gemma-4\",\n", ")" ] }, { "cell_type": "markdown", "id": "f0482b8e", "metadata": { "id": "ZQkXuGYxbJ-e", "papermill": { "duration": 0.029969, "end_time": "2026-04-09T14:20:02.751701+00:00", "exception": false, "start_time": "2026-04-09T14:20:02.721732+00:00", "status": "completed" }, "tags": [] }, "source": [ "We get the first 3000 rows of the dataset" ] }, { "cell_type": "code", "execution_count": 12, "id": "3c26afca", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:20:02.811731Z", "iopub.status.busy": "2026-04-09T14:20:02.811310Z", "iopub.status.idle": "2026-04-09T14:20:06.302247Z", "shell.execute_reply": "2026-04-09T14:20:06.301342Z" }, "id": "Mkq4RvEq7FQr", "outputId": "e78c54dd-f931-4c00-a73d-e37f3eff19e8", "papermill": { "duration": 3.522975, "end_time": "2026-04-09T14:20:06.303736+00:00", "exception": false, "start_time": "2026-04-09T14:20:02.780761+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1bd2499e051c47fe835936333918511a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "README.md: 0%| | 0.00/982 [00:00` token using removeprefix(`''`) since we're finetuning. The Processor will add this token before training and the model expects only one." ] }, { "cell_type": "code", "execution_count": 15, "id": "2fd69cec", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:20:07.839111Z", "iopub.status.busy": "2026-04-09T14:20:07.838390Z", "iopub.status.idle": "2026-04-09T14:20:12.567650Z", "shell.execute_reply": "2026-04-09T14:20:12.566972Z" }, "id": "1ahE8Ys37JDJ", "outputId": "13973ed3-779d-485e-92aa-33b6925f1737", "papermill": { "duration": 4.762099, "end_time": "2026-04-09T14:20:12.569118+00:00", "exception": false, "start_time": "2026-04-09T14:20:07.807019+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65a0b27e6c4247a080a54ed6b18b656b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Map: 0%| | 0/3000 [00:00') for convo in convos]\n", " return { \"text\" : texts, }\n", "\n", "dataset = dataset.map(formatting_prompts_func, batched = True)" ] }, { "cell_type": "markdown", "id": "6fbe8d8f", "metadata": { "id": "ndDUB23CGAC5", "papermill": { "duration": 0.030617, "end_time": "2026-04-09T14:20:12.631702+00:00", "exception": false, "start_time": "2026-04-09T14:20:12.601085+00:00", "status": "completed" }, "tags": [] }, "source": [ "Let's see how the chat template did! Notice there is no `` token as the processor tokenizer will be adding one." ] }, { "cell_type": "code", "execution_count": 16, "id": "84476bb5", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:20:12.697330Z", "iopub.status.busy": "2026-04-09T14:20:12.696528Z", "iopub.status.idle": "2026-04-09T14:20:12.702078Z", "shell.execute_reply": "2026-04-09T14:20:12.701418Z" }, "id": "gGFzmplrEy9I", "outputId": "36882276-635b-45f5-f9d8-3764373dc35e", "papermill": { "duration": 0.03974, "end_time": "2026-04-09T14:20:12.703464+00:00", "exception": false, "start_time": "2026-04-09T14:20:12.663724+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "'<|turn>user\\nWhat is the modulus operator in programming and how can I use it to calculate the modulus of two given numbers?\\n<|turn>model\\nIn programming, the modulus operator is represented by the \\'%\\' symbol. It calculates the remainder when one number is divided by another. To calculate the modulus of two given numbers, you can use the modulus operator in the following way:\\n\\n```python\\n# Calculate the modulus\\nModulus = a % b\\n\\nprint(\"Modulus of the given numbers is: \", Modulus)\\n```\\n\\nIn this code snippet, the variables \\'a\\' and \\'b\\' represent the two given numbers for which you want to calculate the modulus. By using the modulus operator \\'%\\', we calculate the remainder when \\'a\\' is divided by \\'b\\'. The result is then stored in the variable \\'Modulus\\'. Finally, the modulus value is printed using the \\'print\\' statement.\\n\\nFor example, if \\'a\\' is 10 and \\'b\\' is 4, the modulus calculation would be 10 % 4, which equals 2. Therefore, the output of the above code would be:\\n\\n```\\nModulus of the given numbers is: 2\\n```\\n\\nThis means that the modulus of 10 and 4 is 2.\\n'" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "dataset[100][\"text\"]" ] }, { "cell_type": "markdown", "id": "029e0426", "metadata": { "id": "idAEIeSQ3xdS", "papermill": { "duration": 0.030334, "end_time": "2026-04-09T14:20:12.764440+00:00", "exception": false, "start_time": "2026-04-09T14:20:12.734106+00:00", "status": "completed" }, "tags": [] }, "source": [ "\n", "### Train the model\n", "Now let's train our model. We do 60 steps to speed things up, but you can set `num_train_epochs=1` for a full run, and turn off `max_steps=None`." ] }, { "cell_type": "code", "execution_count": 17, "id": "2063eb63", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:20:12.827234Z", "iopub.status.busy": "2026-04-09T14:20:12.826505Z", "iopub.status.idle": "2026-04-09T14:20:58.477258Z", "shell.execute_reply": "2026-04-09T14:20:58.476282Z" }, "id": "95_Nn-89DhsL", "outputId": "87503724-3283-49e4-fec6-4b2c4e084fca", "papermill": { "duration": 45.684477, "end_time": "2026-04-09T14:20:58.479229+00:00", "exception": false, "start_time": "2026-04-09T14:20:12.794752+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a7b3ac7349846deb9064be7c434d764", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Unsloth: Tokenizing [\"text\"] (num_proc=8): 0%| | 0/3000 [00:00user\\n\",\n", " response_part = \"<|turn>model\\n\",\n", ")" ] }, { "cell_type": "markdown", "id": "5b1a7cc7", "metadata": { "id": "Dv1NBUozV78l", "papermill": { "duration": 0.030613, "end_time": "2026-04-09T14:21:02.511624+00:00", "exception": false, "start_time": "2026-04-09T14:21:02.481011+00:00", "status": "completed" }, "tags": [] }, "source": [ "Let's verify masking the instruction part is done! Let's print the 100th row again. Notice how the sample only has a single `` as expected!" ] }, { "cell_type": "code", "execution_count": 19, "id": "9fb4df86", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:21:02.575287Z", "iopub.status.busy": "2026-04-09T14:21:02.574549Z", "iopub.status.idle": "2026-04-09T14:21:02.581906Z", "shell.execute_reply": "2026-04-09T14:21:02.581204Z" }, "id": "LtsMVtlkUhja", "outputId": "d3126757-2a14-4c6d-99f8-98b3bf91be55", "papermill": { "duration": 0.041188, "end_time": "2026-04-09T14:21:02.583417+00:00", "exception": false, "start_time": "2026-04-09T14:21:02.542229+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "'<|turn>user\\nWhat is the modulus operator in programming and how can I use it to calculate the modulus of two given numbers?\\n<|turn>model\\nIn programming, the modulus operator is represented by the \\'%\\' symbol. It calculates the remainder when one number is divided by another. To calculate the modulus of two given numbers, you can use the modulus operator in the following way:\\n\\n```python\\n# Calculate the modulus\\nModulus = a % b\\n\\nprint(\"Modulus of the given numbers is: \", Modulus)\\n```\\n\\nIn this code snippet, the variables \\'a\\' and \\'b\\' represent the two given numbers for which you want to calculate the modulus. By using the modulus operator \\'%\\', we calculate the remainder when \\'a\\' is divided by \\'b\\'. The result is then stored in the variable \\'Modulus\\'. Finally, the modulus value is printed using the \\'print\\' statement.\\n\\nFor example, if \\'a\\' is 10 and \\'b\\' is 4, the modulus calculation would be 10 % 4, which equals 2. Therefore, the output of the above code would be:\\n\\n```\\nModulus of the given numbers is: 2\\n```\\n\\nThis means that the modulus of 10 and 4 is 2.\\n'" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tokenizer.decode(trainer.train_dataset[100][\"input_ids\"])" ] }, { "cell_type": "markdown", "id": "f3972b9e", "metadata": { "id": "4Kyjy__m9KY3", "papermill": { "duration": 0.030403, "end_time": "2026-04-09T14:21:02.645269+00:00", "exception": false, "start_time": "2026-04-09T14:21:02.614866+00:00", "status": "completed" }, "tags": [] }, "source": [ "Now let's print the masked out example - you should see only the answer is present:" ] }, { "cell_type": "code", "execution_count": 20, "id": "165d2951", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:21:02.708036Z", "iopub.status.busy": "2026-04-09T14:21:02.707522Z", "iopub.status.idle": "2026-04-09T14:21:02.715319Z", "shell.execute_reply": "2026-04-09T14:21:02.714464Z" }, "id": "_rD6fl8EUxnG", "outputId": "e579a2b3-9df6-4c40-ef7c-98d7c9cd9d82", "papermill": { "duration": 0.041393, "end_time": "2026-04-09T14:21:02.716862+00:00", "exception": false, "start_time": "2026-04-09T14:21:02.675469+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "' In programming, the modulus operator is represented by the \\'%\\' symbol. It calculates the remainder when one number is divided by another. To calculate the modulus of two given numbers, you can use the modulus operator in the following way:\\n\\n```python\\n# Calculate the modulus\\nModulus = a % b\\n\\nprint(\"Modulus of the given numbers is: \", Modulus)\\n```\\n\\nIn this code snippet, the variables \\'a\\' and \\'b\\' represent the two given numbers for which you want to calculate the modulus. By using the modulus operator \\'%\\', we calculate the remainder when \\'a\\' is divided by \\'b\\'. The result is then stored in the variable \\'Modulus\\'. Finally, the modulus value is printed using the \\'print\\' statement.\\n\\nFor example, if \\'a\\' is 10 and \\'b\\' is 4, the modulus calculation would be 10 % 4, which equals 2. Therefore, the output of the above code would be:\\n\\n```\\nModulus of the given numbers is: 2\\n```\\n\\nThis means that the modulus of 10 and 4 is 2.\\n'" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tokenizer.decode([tokenizer.pad_token_id if x == -100 else x for x in trainer.train_dataset[100][\"labels\"]]).replace(tokenizer.pad_token, \" \")" ] }, { "cell_type": "code", "execution_count": 21, "id": "73ec0163", "metadata": { "cellView": "form", "execution": { "iopub.execute_input": "2026-04-09T14:21:02.783682Z", "iopub.status.busy": "2026-04-09T14:21:02.783109Z", "iopub.status.idle": "2026-04-09T14:21:02.788999Z", "shell.execute_reply": "2026-04-09T14:21:02.788020Z" }, "id": "2ejIt2xSNKKp", "outputId": "2ecea13f-2faa-4c7d-e006-a0a1cb90612a", "papermill": { "duration": 0.039208, "end_time": "2026-04-09T14:21:02.790686+00:00", "exception": false, "start_time": "2026-04-09T14:21:02.751478+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "GPU = Tesla T4. Max memory = 14.563 GB.\n", "9.891 GB of memory reserved.\n" ] } ], "source": [ "# @title Show current memory stats\n", "gpu_stats = torch.cuda.get_device_properties(0)\n", "start_gpu_memory = round(torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3)\n", "max_memory = round(gpu_stats.total_memory / 1024 / 1024 / 1024, 3)\n", "print(f\"GPU = {gpu_stats.name}. Max memory = {max_memory} GB.\")\n", "print(f\"{start_gpu_memory} GB of memory reserved.\")" ] }, { "cell_type": "markdown", "id": "eee6fad9", "metadata": { "id": "CNP1Uidk9mrz", "papermill": { "duration": 0.030451, "end_time": "2026-04-09T14:21:02.852194+00:00", "exception": false, "start_time": "2026-04-09T14:21:02.821743+00:00", "status": "completed" }, "tags": [] }, "source": [ "# Let's train the model!\n", "\n", "To resume a training run, set `trainer.train(resume_from_checkpoint = True)`" ] }, { "cell_type": "code", "execution_count": 22, "id": "d83b4edc", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:21:02.917281Z", "iopub.status.busy": "2026-04-09T14:21:02.916648Z", "iopub.status.idle": "2026-04-09T14:27:25.935388Z", "shell.execute_reply": "2026-04-09T14:27:25.934474Z" }, "id": "yqxqAZ7KJ4oL", "outputId": "180092e1-ae76-449a-9f2d-0dbc3894b8f8", "papermill": { "duration": 383.053463, "end_time": "2026-04-09T14:27:25.937341+00:00", "exception": false, "start_time": "2026-04-09T14:21:02.883878+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "The tokenizer has new PAD/BOS/EOS tokens that differ from the model config and generation config. The model config and generation config were aligned accordingly, being updated with the tokenizer's values. Updated tokens: {'bos_token_id': 2}.\n", "==((====))== Unsloth - 2x faster free finetuning | Num GPUs used = 1\n", " \\\\ /| Num examples = 2,991 | Num Epochs = 1 | Total steps = 60\n", "O^O/ \\_/ \\ Batch size per device = 1 | Gradient accumulation steps = 4\n", "\\ / Data Parallel GPUs = 1 | Total batch size (1 x 4 x 1) = 4\n", " \"-____-\" Trainable parameters = 18,350,080 of 8,014,506,528 (0.23% trained)\n", "Caching is incompatible with gradient checkpointing in Gemma4TextDecoderLayer. Setting `past_key_values=None`.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Unsloth: Will smartly offload gradients to save VRAM!\n" ] }, { "data": { "text/html": [ "\n", "
\n", " \n", " \n", " [60/60 05:53, Epoch 0/1]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
StepTraining Loss
110.523083
210.053993
312.042599
49.989523
510.095123
610.694252
710.365056
89.754820
98.308989
107.331110
117.254261
126.173282
136.381964
144.963476
155.690104
164.411693
174.552224
184.913744
195.021698
204.934382
213.959793
223.978175
234.443007
244.595473
253.987100
263.831797
273.935458
283.008995
293.504218
303.710511
313.277609
323.731925
333.324703
343.664254
353.287769
363.606441
373.251672
383.009572
393.222754
402.543038
413.437666
423.372575
432.745370
442.456408
452.818116
463.419305
472.893388
483.205531
492.713997
502.372560
512.854839
522.170771
533.100059
542.641205
552.271563
562.701172
572.765497
582.787446
592.603349
602.821406

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "trainer_stats = trainer.train()" ] }, { "cell_type": "code", "execution_count": 23, "id": "ba3079a2", "metadata": { "cellView": "form", "execution": { "iopub.execute_input": "2026-04-09T14:27:26.004799Z", "iopub.status.busy": "2026-04-09T14:27:26.004480Z", "iopub.status.idle": "2026-04-09T14:27:26.012023Z", "shell.execute_reply": "2026-04-09T14:27:26.011040Z" }, "id": "pCqnaKmlO1U9", "outputId": "585888de-dbd8-4562-c6e5-a5f0dbf26dc7", "papermill": { "duration": 0.042476, "end_time": "2026-04-09T14:27:26.013461+00:00", "exception": false, "start_time": "2026-04-09T14:27:25.970985+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "379.4784 seconds used for training.\n", "6.32 minutes used for training.\n", "Peak reserved memory = 10.715 GB.\n", "Peak reserved memory for training = 0.824 GB.\n", "Peak reserved memory % of max memory = 73.577 %.\n", "Peak reserved memory for training % of max memory = 5.658 %.\n" ] } ], "source": [ "# @title Show final memory and time stats\n", "used_memory = round(torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3)\n", "used_memory_for_lora = round(used_memory - start_gpu_memory, 3)\n", "used_percentage = round(used_memory / max_memory * 100, 3)\n", "lora_percentage = round(used_memory_for_lora / max_memory * 100, 3)\n", "print(f\"{trainer_stats.metrics['train_runtime']} seconds used for training.\")\n", "print(\n", " f\"{round(trainer_stats.metrics['train_runtime']/60, 2)} minutes used for training.\"\n", ")\n", "print(f\"Peak reserved memory = {used_memory} GB.\")\n", "print(f\"Peak reserved memory for training = {used_memory_for_lora} GB.\")\n", "print(f\"Peak reserved memory % of max memory = {used_percentage} %.\")\n", "print(f\"Peak reserved memory for training % of max memory = {lora_percentage} %.\")" ] }, { "cell_type": "markdown", "id": "78fe5ece", "metadata": { "id": "ekOmTR1hSNcr", "papermill": { "duration": 0.031646, "end_time": "2026-04-09T14:27:26.078664+00:00", "exception": false, "start_time": "2026-04-09T14:27:26.047018+00:00", "status": "completed" }, "tags": [] }, "source": [ "\n", "### Inference\n", "Let's run the model via Unsloth native inference! According to the `Gemma-4` team, the recommended settings for inference are `temperature = 1.0, top_p = 0.95, top_k = 64`" ] }, { "cell_type": "code", "execution_count": 24, "id": "789f3453", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:27:26.144119Z", "iopub.status.busy": "2026-04-09T14:27:26.143382Z", "iopub.status.idle": "2026-04-09T14:27:38.238264Z", "shell.execute_reply": "2026-04-09T14:27:38.237354Z" }, "id": "kR3gIAX-SM2q", "outputId": "42097560-b2b6-4d32-a9f8-160db24434cc", "papermill": { "duration": 12.129782, "end_time": "2026-04-09T14:27:38.240040+00:00", "exception": false, "start_time": "2026-04-09T14:27:26.110258+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "['<|turn>user\\nContinue the sequence: 1, 1, 2, 3, 5, 8,\\n<|turn>model\\n13, 21, 34, 55, 89, ...\\n\\nThis is the **Fibonacci sequence**, where each number is the sum of the two preceding ones.']" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from unsloth.chat_templates import get_chat_template\n", "tokenizer = get_chat_template(\n", " tokenizer,\n", " chat_template = \"gemma-4\",\n", ")\n", "messages = [{\n", " \"role\": \"user\",\n", " \"content\": [{\n", " \"type\" : \"text\",\n", " \"text\" : \"Continue the sequence: 1, 1, 2, 3, 5, 8,\",\n", " }]\n", "}]\n", "inputs = tokenizer.apply_chat_template(\n", " messages,\n", " add_generation_prompt = True, # Must add for generation\n", " return_tensors = \"pt\",\n", " tokenize = True,\n", " return_dict = True,\n", ").to(\"cuda\")\n", "outputs = model.generate(\n", " **inputs,\n", " max_new_tokens = 64, # Increase for longer outputs!\n", " # Recommended Gemma-4 settings!\n", " temperature = 1.0, top_p = 0.95, top_k = 64,\n", ")\n", "tokenizer.batch_decode(outputs)" ] }, { "cell_type": "markdown", "id": "d14c972d", "metadata": { "id": "CrSvZObor0lY", "papermill": { "duration": 0.03125, "end_time": "2026-04-09T14:27:38.303897+00:00", "exception": false, "start_time": "2026-04-09T14:27:38.272647+00:00", "status": "completed" }, "tags": [] }, "source": [ " You can also use a `TextStreamer` for continuous inference - so you can see the generation token by token, instead of waiting the whole time!" ] }, { "cell_type": "code", "execution_count": 25, "id": "80b77f9d", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:27:38.368840Z", "iopub.status.busy": "2026-04-09T14:27:38.367877Z", "iopub.status.idle": "2026-04-09T14:27:53.797997Z", "shell.execute_reply": "2026-04-09T14:27:53.797095Z" }, "id": "e2pEuRb1r2Vg", "outputId": "a648ff4f-3762-44d5-eb8b-5045a5c01a50", "papermill": { "duration": 15.464494, "end_time": "2026-04-09T14:27:53.799621+00:00", "exception": false, "start_time": "2026-04-09T14:27:38.335127+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The sky appears blue primarily due to a phenomenon called **Rayleigh scattering**. Here's a breakdown of how this works:\n", "\n", "1. **Sunlight is composed of different wavelengths:** Sunlight, which comes from the sun, is made up of various colors, each with a different wavelength. Blue light has a shorter wavelength\n" ] } ], "source": [ "messages = [{\n", " \"role\": \"user\",\n", " \"content\": [{\"type\" : \"text\", \"text\" : \"Why is the sky blue?\",}]\n", "}]\n", "inputs = tokenizer.apply_chat_template(\n", " messages,\n", " add_generation_prompt = True, # Must add for generation\n", " return_tensors = \"pt\",\n", " tokenize = True,\n", " return_dict = True,\n", ").to(\"cuda\")\n", "\n", "from transformers import TextStreamer\n", "_ = model.generate(\n", " **inputs,\n", " max_new_tokens = 64, # Increase for longer outputs!\n", " # Recommended Gemma-4 settings!\n", " temperature = 1.0, top_p = 0.95, top_k = 64,\n", " streamer = TextStreamer(tokenizer, skip_prompt = True),\n", ")" ] }, { "cell_type": "markdown", "id": "ec07e9bd", "metadata": { "id": "uMuVrWbjAzhc", "papermill": { "duration": 0.035117, "end_time": "2026-04-09T14:27:53.868536+00:00", "exception": false, "start_time": "2026-04-09T14:27:53.833419+00:00", "status": "completed" }, "tags": [] }, "source": [ "\n", "### Saving, loading finetuned models\n", "To save the final model as LoRA adapters, either use Hugging Face's `push_to_hub` for an online save or `save_pretrained` for a local save.\n", "\n", "**[NOTE]** This ONLY saves the LoRA adapters, and not the full model. To save to 16bit or GGUF, scroll down!" ] }, { "cell_type": "code", "execution_count": 26, "id": "c841a798", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:27:53.936332Z", "iopub.status.busy": "2026-04-09T14:27:53.935832Z", "iopub.status.idle": "2026-04-09T14:27:57.309758Z", "shell.execute_reply": "2026-04-09T14:27:57.308857Z" }, "id": "upcOlWe7A1vc", "outputId": "b38635d3-0eae-40ed-93f1-771f04c205c0", "papermill": { "duration": 3.410314, "end_time": "2026-04-09T14:27:57.311357+00:00", "exception": false, "start_time": "2026-04-09T14:27:53.901043+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "['gemma_4_lora/processor_config.json']" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "model.save_pretrained(\"gemma_4_lora\") # Local saving\n", "tokenizer.save_pretrained(\"gemma_4_lora\")\n", "# model.push_to_hub(\"HF_ACCOUNT/gemma_4_lora\", token = \"YOUR_HF_TOKEN\") # Online saving\n", "# tokenizer.push_to_hub(\"HF_ACCOUNT/gemma_4_lora\", token = \"YOUR_HF_TOKEN\") # Online saving" ] }, { "cell_type": "markdown", "id": "c0280a59", "metadata": { "id": "AEEcJ4qfC7Lp", "papermill": { "duration": 0.03305, "end_time": "2026-04-09T14:27:57.379393+00:00", "exception": false, "start_time": "2026-04-09T14:27:57.346343+00:00", "status": "completed" }, "tags": [] }, "source": [ "Now if you want to load the LoRA adapters we just saved for inference, set `False` to `True`:" ] }, { "cell_type": "code", "execution_count": 27, "id": "4e76e14f", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:27:57.446364Z", "iopub.status.busy": "2026-04-09T14:27:57.445610Z", "iopub.status.idle": "2026-04-09T14:28:03.411741Z", "shell.execute_reply": "2026-04-09T14:28:03.411099Z" }, "id": "MKX_XKs_BNZR", "outputId": "c6380f12-92c3-44da-ee71-c6895cb19a95", "papermill": { "duration": 6.001005, "end_time": "2026-04-09T14:28:03.413384+00:00", "exception": false, "start_time": "2026-04-09T14:27:57.412379+00:00", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "I am Gemma 4, a Large Language Model developed by Google DeepMind. I am an open weights model.\n" ] } ], "source": [ "if False:\n", " from unsloth import FastModel\n", " model, tokenizer = FastModel.from_pretrained(\n", " model_name = \"gemma_4_lora\", # YOUR MODEL YOU USED FOR TRAINING\n", " max_seq_length = 2048,\n", " load_in_4bit = True,\n", " )\n", "\n", "messages = [{\n", " \"role\": \"user\",\n", " \"content\": [{\"type\" : \"text\", \"text\" : \"What is Gemma-4?\",}]\n", "}]\n", "inputs = tokenizer.apply_chat_template(\n", " messages,\n", " add_generation_prompt = True, # Must add for generation\n", " return_tensors = \"pt\",\n", " tokenize = True,\n", " return_dict = True,\n", ").to(\"cuda\")\n", "\n", "from transformers import TextStreamer\n", "_ = model.generate(\n", " **inputs,\n", " max_new_tokens = 128, # Increase for longer outputs!\n", " # Recommended Gemma-4 settings!\n", " temperature = 1.0, top_p = 0.95, top_k = 64,\n", " streamer = TextStreamer(tokenizer, skip_prompt = True),\n", ")" ] }, { "cell_type": "markdown", "id": "2c10654e", "metadata": { "id": "f422JgM9sdVT", "papermill": { "duration": 0.033782, "end_time": "2026-04-09T14:28:03.482906+00:00", "exception": false, "start_time": "2026-04-09T14:28:03.449124+00:00", "status": "completed" }, "tags": [] }, "source": [ "### Saving to float16 for VLLM\n", "\n", "We also support saving to `float16` directly for deployment! We save it in the folder `gemma-4-finetune`. Set `if False` to `if True` to let it run!" ] }, { "cell_type": "code", "execution_count": 28, "id": "b579db68", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:28:03.553382Z", "iopub.status.busy": "2026-04-09T14:28:03.552682Z", "iopub.status.idle": "2026-04-09T14:28:03.556813Z", "shell.execute_reply": "2026-04-09T14:28:03.555982Z" }, "id": "iHjt_SMYsd3P", "papermill": { "duration": 0.040718, "end_time": "2026-04-09T14:28:03.558346+00:00", "exception": false, "start_time": "2026-04-09T14:28:03.517628+00:00", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "if False: # Change to True to save finetune!\n", " model.save_pretrained_merged(\"gemma-4-finetune\", tokenizer)" ] }, { "cell_type": "markdown", "id": "ec2d7240", "metadata": { "id": "z6O48DbNIAr0", "papermill": { "duration": 0.033577, "end_time": "2026-04-09T14:28:03.626993+00:00", "exception": false, "start_time": "2026-04-09T14:28:03.593416+00:00", "status": "completed" }, "tags": [] }, "source": [ "If you want to upload / push to your Hugging Face account, set `if False` to `if True` and add your Hugging Face token and upload location!" ] }, { "cell_type": "code", "execution_count": 29, "id": "301ea027", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:28:03.695829Z", "iopub.status.busy": "2026-04-09T14:28:03.695545Z", "iopub.status.idle": "2026-04-09T14:28:03.699618Z", "shell.execute_reply": "2026-04-09T14:28:03.698865Z" }, "id": "ZV-CiKPrIFG0", "papermill": { "duration": 0.040418, "end_time": "2026-04-09T14:28:03.700987+00:00", "exception": false, "start_time": "2026-04-09T14:28:03.660569+00:00", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "if False: # Change to True to upload finetune\n", " model.push_to_hub_merged(\n", " \"HF_ACCOUNT/gemma-4-finetune\", tokenizer,\n", " token = \"YOUR_HF_TOKEN\"\n", " )" ] }, { "cell_type": "markdown", "id": "f1580211", "metadata": { "id": "TCv4vXHd61i7", "papermill": { "duration": 0.034175, "end_time": "2026-04-09T14:28:03.769687+00:00", "exception": false, "start_time": "2026-04-09T14:28:03.735512+00:00", "status": "completed" }, "tags": [] }, "source": [ "### GGUF / llama.cpp Conversion\n", "To save to `GGUF` / `llama.cpp`, we support it natively now for all models! For now, you can convert easily to `Q8_0, F16 or BF16` precision. `Q4_K_M` for 4bit will come later!" ] }, { "cell_type": "code", "execution_count": 30, "id": "a11309e2", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:28:03.838541Z", "iopub.status.busy": "2026-04-09T14:28:03.837824Z", "iopub.status.idle": "2026-04-09T14:28:03.842150Z", "shell.execute_reply": "2026-04-09T14:28:03.841298Z" }, "id": "FqfebeAdT073", "papermill": { "duration": 0.040287, "end_time": "2026-04-09T14:28:03.843691+00:00", "exception": false, "start_time": "2026-04-09T14:28:03.803404+00:00", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "if False: # Change to True to save to GGUF\n", " model.save_pretrained_gguf(\n", " \"gemma_4_finetune\",\n", " tokenizer,\n", " quantization_method = \"Q8_0\", # For now only Q8_0, BF16, F16 supported\n", " )" ] }, { "cell_type": "markdown", "id": "a9ac86d1", "metadata": { "id": "Q974YEVPI7JS", "papermill": { "duration": 0.033488, "end_time": "2026-04-09T14:28:03.911272+00:00", "exception": false, "start_time": "2026-04-09T14:28:03.877784+00:00", "status": "completed" }, "tags": [] }, "source": [ "Likewise, if you want to instead push to GGUF to your Hugging Face account, set `if False` to `if True` and add your Hugging Face token and upload location!" ] }, { "cell_type": "code", "execution_count": 31, "id": "163597b1", "metadata": { "execution": { "iopub.execute_input": "2026-04-09T14:28:03.982798Z", "iopub.status.busy": "2026-04-09T14:28:03.982206Z", "iopub.status.idle": "2026-04-09T14:28:03.986398Z", "shell.execute_reply": "2026-04-09T14:28:03.985558Z" }, "id": "ZgcJIhJ0I_es", "papermill": { "duration": 0.041947, "end_time": "2026-04-09T14:28:03.988402+00:00", "exception": false, "start_time": "2026-04-09T14:28:03.946455+00:00", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "if False: # Change to True to upload GGUF\n", " model.push_to_hub_gguf(\n", " \"HF_ACCOUNT/gemma_4_finetune\",\n", " tokenizer,\n", " quantization_method = \"Q8_0\", # Only Q8_0, BF16, F16 supported\n", " token = \"YOUR_HF_TOKEN\",\n", " )" ] }, { "cell_type": "markdown", "id": "bedaf816", "metadata": { "id": "pnz9QOYTMvbH", "papermill": { "duration": 0.03474, "end_time": "2026-04-09T14:28:04.058824+00:00", "exception": false, "start_time": "2026-04-09T14:28:04.024084+00:00", "status": "completed" }, "tags": [] }, "source": [ "Now, use the `gemma-4-finetune.gguf` file or `gemma-4-finetune-Q4_K_M.gguf` file in llama.cpp.\n", "\n", "And we're done! If you have any questions on Unsloth, we have a [Discord](https://discord.gg/unsloth) channel! If you find any bugs or want to keep updated with the latest LLM stuff, or need help, join projects etc, feel free to join our Discord!\n", "\n", "Some other resources:\n", "1. Train your own reasoning model - Llama GRPO notebook [Free Colab](https://colab.research.google.com/github/unslothai/notebooks/blob/main/nb/Llama3.1_(8B)-GRPO.ipynb)\n", "2. Saving finetunes to Ollama. [Free notebook](https://colab.research.google.com/github/unslothai/notebooks/blob/main/nb/Llama3_(8B)-Ollama.ipynb)\n", "3. Llama 3.2 Vision finetuning - Radiography use case. [Free Colab](https://colab.research.google.com/github/unslothai/notebooks/blob/main/nb/Llama3.2_(11B)-Vision.ipynb)\n", "4. See notebooks for DPO, ORPO, Continued pretraining, conversational finetuning and more on our [documentation](https://unsloth.ai/docs/get-started/unsloth-notebooks)!\n", "\n", "

\n", " \n", " \n", " \n", "\n", " Join Discord if you need help + ⭐️ Star us on Github ⭐️\n", "
\n", "\n", " This notebook and all Unsloth notebooks are licensed [LGPL-3.0](https://github.com/unslothai/notebooks?tab=LGPL-3.0-1-ov-file#readme)." ] } ], "metadata": { "accelerator": "GPU", "colab": { "gpuType": "T4", "provenance": [] }, "kaggle": { "accelerator": "nvidiaTeslaT4", "dataSources": [ { "databundleVersionId": 16421787, "sourceId": 134561, "sourceType": "competition" } ], "dockerImageVersionId": 31329, "isGpuEnabled": true, "isInternetEnabled": true, "language": "python", "sourceType": "notebook" }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.12" }, "papermill": { "default_parameters": {}, "duration": 785.802226, "end_time": "2026-04-09T14:28:07.416534+00:00", "environment_variables": {}, "exception": null, "input_path": "__notebook__.ipynb", "output_path": "__notebook__.ipynb", "parameters": {}, "start_time": "2026-04-09T14:15:01.614308+00:00", "version": "2.7.0" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "001d2358ac194ff387ff44a9976849e1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_1fef92fd286340aabaa41cad92ac64c3", "placeholder": "​", "style": "IPY_MODEL_552f08ce4c064e61b7b50d29ac4d7d44", "tabbable": null, "tooltip": null, "value": "Unsloth: Tokenizing ["text"] (num_proc=8): 100%" } }, "05ad56c561f04666b5ee42e3fd0e62c5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "05c0091537e34df0a0f90e665ecc82a7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e5c6e31d8a7943be90673e5034f1acf0", "placeholder": "​", "style": "IPY_MODEL_a20ca0892f964e25ba1586d4a5bbd9dd", "tabbable": null, "tooltip": null, "value": " 11.9k/? [00:00<00:00, 1.16MB/s]" } }, "08bda2f90dc847dea5b45b609709f40c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "08fe8b4959d14bb5a67ba9da42040d43": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_a00778e41580422394e4e0280bfd2f82", "IPY_MODEL_f4e8817005d044fb9fed3ba2035ebf6c", "IPY_MODEL_e368e10eff6a4d77b3dcbec79b579e82" ], "layout": "IPY_MODEL_38fea064eac74561b71c0265acdf1614", "tabbable": null, "tooltip": null } }, "09962f62cce94f56a8c39ba832b2d765": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_e79bc28cc65b4095bcdcce0706c34f32", "placeholder": "​", "style": "IPY_MODEL_ef66db03235441e49e3a28e8f7f142ea", "tabbable": null, "tooltip": null, "value": "data/train-00000-of-00001.parquet: 100%" } }, "0befc317ff8643628a499907eea0c38d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0d99defc025f44daab34d0c575b350c2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "0fa2f8b8168e4406b46fb1825f7d4292": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "106b68972ccb43c58b5029bf218ab1d5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_3b84f78ce4d14ef9b1bd5b85f2c82aa7", "max": 982.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_a0f0d065f65248e98aa3a31493911932", "tabbable": null, "tooltip": null, "value": 982.0 } }, "1134f408212e435db3a3f077c3fba26d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "12b6d1753927475682f8702ca4cada4f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "13630bf3f7be48c9b687ccff4e6b639f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "188a2acc11d34429a8b534511676a75f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_2e117d94f0414890968b9b9128d0bd83", "IPY_MODEL_d4037b70f52e4d998c56578de7c79774", "IPY_MODEL_d7a1b908d01841bd863d9763faaecf19" ], "layout": "IPY_MODEL_2d9fb98979364652b7b22d23db520b8e", "tabbable": null, "tooltip": null } }, "198057887a0b463aaa5008f568be4b88": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_d4ace70caa0b427ebeb42e173962e4a6", "placeholder": "​", "style": "IPY_MODEL_803ef0c370ea4b768c955c2ccf60ef9f", "tabbable": null, "tooltip": null, "value": " 3000/3000 [00:00<00:00, 10398.55 examples/s]" } }, "1a5639acc2c940c6953598272c4b2e69": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_d6182709ee8042188c1784721434f68c", "placeholder": "​", "style": "IPY_MODEL_768634c4bf8142adb559389539b93592", "tabbable": null, "tooltip": null, "value": " 16.0G/16.0G [01:10<00:00, 322MB/s]" } }, "1bd2499e051c47fe835936333918511a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_f416c1e959ee4745bc8a272345480d0d", "IPY_MODEL_106b68972ccb43c58b5029bf218ab1d5", "IPY_MODEL_61788d01c4fc4cae83947b486bc89ffb" ], "layout": "IPY_MODEL_7d5975865cb8442989a4e7b6cdcd47a6", "tabbable": null, "tooltip": null } }, "1fef92fd286340aabaa41cad92ac64c3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "20fe61bf6b394ba89a2e59acf77cdce5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "211d2ae3785141c59d4e415a0b5b11df": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "26fbb43053db4a2eb73f900bcfb61f14": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "287fbc35965645beb41b4ce8a70770f4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2a5a818e39724e57b299536662a4210d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "2b882452251c443fa8c8fa2c9feb7b46": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2d9fb98979364652b7b22d23db520b8e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2e117d94f0414890968b9b9128d0bd83": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_64b87ca879094043b28c55f5e1809699", "placeholder": "​", "style": "IPY_MODEL_e6eae91cecb14392a0af9398937b2fbc", "tabbable": null, "tooltip": null, "value": "Computing checksums: 100%" } }, "2e5c5a5f83e24ec9b55d3ac973a1e191": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_32d6aea2c6d54fe7bffba1aa32ed1d13", "IPY_MODEL_940db0f1f9ed402db0925d693d85df02", "IPY_MODEL_05c0091537e34df0a0f90e665ecc82a7" ], "layout": "IPY_MODEL_d92b9a6eb55b482fa1de1bc6ef01c2fe", "tabbable": null, "tooltip": null } }, "2f9c9391a52749148984920f1880ff58": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "32d6aea2c6d54fe7bffba1aa32ed1d13": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_05ad56c561f04666b5ee42e3fd0e62c5", "placeholder": "​", "style": "IPY_MODEL_1134f408212e435db3a3f077c3fba26d", "tabbable": null, "tooltip": null, "value": "chat_template.jinja: " } }, "3584c90d6b27469cb2780c6fc618f146": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "38fea064eac74561b71c0265acdf1614": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3951f3ffff774384acdfde89992fd0dd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3b84f78ce4d14ef9b1bd5b85f2c82aa7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3c6e58fc816741e7b1321e9bf0ee80a0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3d028f45e72344c1a42519245f58a8ae": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "3f80b23d09b84265bbea8d3caa05b940": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "3f9356b907ff4aeb8a45acce1e82e41b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_eb1f0cb5250a460195a57ae36b2d1648", "IPY_MODEL_682793ef605b4942a6e2299be26823c5", "IPY_MODEL_1a5639acc2c940c6953598272c4b2e69" ], "layout": "IPY_MODEL_ce0953daab7c4cb290ce36a31350dadc", "tabbable": null, "tooltip": null } }, "40a44625b8d54fbca680049dfe1ddd1c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_d75f4d2d03ae4247a54732e952674931", "placeholder": "​", "style": "IPY_MODEL_2a5a818e39724e57b299536662a4210d", "tabbable": null, "tooltip": null, "value": "tokenizer.json: 100%" } }, "41824be3f8014c7bb2dac828e792bae8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_c7641a7d1ad24f5ca33469ae18fdac68", "placeholder": "​", "style": "IPY_MODEL_cbe4683fe14945e18dd7161a2c454500", "tabbable": null, "tooltip": null, "value": " 3000/3000 [00:40<00:00, 79.59 examples/s]" } }, "45de381897e74b69b1d4f46db5d36291": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "4c52050f012045e7b6980b51c672547d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4cc728ba782043c0910331789fd4ce96": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "4f34e17e884648bab833dd7e006e6287": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_f2c4809b20c84e7a96d9b67a3d8ac09f", "IPY_MODEL_87f56a4df31f499b886dd2b3a392892b", "IPY_MODEL_553cc00c3bd348b5b5326c399d974a24" ], "layout": "IPY_MODEL_b6bde48c056745dda54e0d1420a78519", "tabbable": null, "tooltip": null } }, "5382be602e5a42b29c026e90f7a5e585": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "552f08ce4c064e61b7b50d29ac4d7d44": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "553cc00c3bd348b5b5326c399d974a24": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_b3e6ffa744ed4549a25ddaf5e459cb6a", "placeholder": "​", "style": "IPY_MODEL_8db9010ceefb4493a303c361fce31d91", "tabbable": null, "tooltip": null, "value": " 3000/3000 [00:01<00:00, 3853.33 examples/s]" } }, "5553cc1760b043f3b82b87db8f8fc570": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "57574cc040184d2b8a4395b3287a8ef1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "59f259377ce840c6b1d6f7477b4f74fb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "5a7b3ac7349846deb9064be7c434d764": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_001d2358ac194ff387ff44a9976849e1", "IPY_MODEL_84014c285cd34142887259eae7e1c518", "IPY_MODEL_41824be3f8014c7bb2dac828e792bae8" ], "layout": "IPY_MODEL_d127ada24d82403e826fd8cc2be96aae", "tabbable": null, "tooltip": null } }, "5fc156df253a4accaa09963954145a6b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "61788d01c4fc4cae83947b486bc89ffb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a31ce646c53140a1bb1ccd7777de20e7", "placeholder": "​", "style": "IPY_MODEL_5fc156df253a4accaa09963954145a6b", "tabbable": null, "tooltip": null, "value": " 982/982 [00:00<00:00, 106kB/s]" } }, "61e6c04c874f45e387821539981f2e76": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "62c1945a264749d7b0906cbca3d15350": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_6cb531ed8c234011bd0f06ae73690115", "placeholder": "​", "style": "IPY_MODEL_c423948df5c1410d80bc29d975e87492", "tabbable": null, "tooltip": null, "value": "generation_config.json: 100%" } }, "6307099d3c25460ba6bee80edd1d1a09": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_acf4cc08f5654424a995921b867414bd", "max": 32169626.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_0fa2f8b8168e4406b46fb1825f7d4292", "tabbable": null, "tooltip": null, "value": 32169626.0 } }, "647a740f72ee4c319784610a86dae503": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_4c52050f012045e7b6980b51c672547d", "placeholder": "​", "style": "IPY_MODEL_45de381897e74b69b1d4f46db5d36291", "tabbable": null, "tooltip": null, "value": " 208/208 [00:00<00:00, 22.5kB/s]" } }, "64b87ca879094043b28c55f5e1809699": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "65a0b27e6c4247a080a54ed6b18b656b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_82ddb8eff0d24c57b66a23958ff8c248", "IPY_MODEL_68426c295d0f41c582174dd4a5d2523f", "IPY_MODEL_198057887a0b463aaa5008f568be4b88" ], "layout": "IPY_MODEL_5553cc1760b043f3b82b87db8f8fc570", "tabbable": null, "tooltip": null } }, "65dec59f62c1480cb6bca2268f2a403a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_dd6c5df2d2c34be880470f6fd5fc297e", "placeholder": "​", "style": "IPY_MODEL_99ca530944db40c688cc2e2167672d99", "tabbable": null, "tooltip": null, "value": "Filter (num_proc=8): 100%" } }, "65e41393d19847bb86101d4a4d6b46d4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_8e8ccf63de5b4a7f9ce88b529c4cd59b", "placeholder": "​", "style": "IPY_MODEL_904ca5e14e8d4c339aa31e466f2eb2d6", "tabbable": null, "tooltip": null, "value": " 100000/100000 [00:00<00:00, 123190.86 examples/s]" } }, "66cdc617906c4996b55384b1e8a907fd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "682793ef605b4942a6e2299be26823c5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_8b24bd733ab54b019cb26c3157e41758", "max": 15992595884.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_4cc728ba782043c0910331789fd4ce96", "tabbable": null, "tooltip": null, "value": 15992595884.0 } }, "68426c295d0f41c582174dd4a5d2523f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ece07379e5f3496f9950ad425026ca5f", "max": 3000.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_59f259377ce840c6b1d6f7477b4f74fb", "tabbable": null, "tooltip": null, "value": 3000.0 } }, "68b87a00770d4fa0856a5a4ffbf343e5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6cb531ed8c234011bd0f06ae73690115": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6cebc0e67c664e059e14fb481985a383": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6d4f64faf10d4cd2bf1d4d7bfb7fd1b4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_2b882452251c443fa8c8fa2c9feb7b46", "placeholder": "​", "style": "IPY_MODEL_e39ab592e86c4190bbbd488bcd85d99e", "tabbable": null, "tooltip": null, "value": " 3000/3000 [00:02<00:00, 1114.52 examples/s]" } }, "6e11e1ff8e7a4246a38d6143ac8daa6f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "747599c76bbb4fc7b1c565b8dd4e1317": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_78d696ad36834f32aadb2db6f783cc29", "max": 3000.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_f26c344426984a1a93868519dabb45bc", "tabbable": null, "tooltip": null, "value": 3000.0 } }, "75205816cf7f4c50b9eee6478a4ed98a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_c5fc3eba43d74cb2acea114cc65139e2", "placeholder": "​", "style": "IPY_MODEL_08bda2f90dc847dea5b45b609709f40c", "tabbable": null, "tooltip": null, "value": "Unsloth: Standardizing formats (num_proc=8): 100%" } }, "760b0d5e9a9d44e386477ba3806fe69a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_287fbc35965645beb41b4ce8a70770f4", "max": 2130.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_b91f8b142c3b48cf9f08d2df6eda1978", "tabbable": null, "tooltip": null, "value": 2130.0 } }, "768634c4bf8142adb559389539b93592": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "78d696ad36834f32aadb2db6f783cc29": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "790136d7d63b4531b07d2ae73e8bd6af": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "7c2a23b31d77497e9ecc8128f038398b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_62c1945a264749d7b0906cbca3d15350", "IPY_MODEL_f3fe3589911a40ebbfae2bd3596a935d", "IPY_MODEL_647a740f72ee4c319784610a86dae503" ], "layout": "IPY_MODEL_6e11e1ff8e7a4246a38d6143ac8daa6f", "tabbable": null, "tooltip": null } }, "7d01a45f2b68423396448afb5789db26": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "7d0812636bda4a41b39233e82f705cc3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_b051a523cdd34fd180668215334d080c", "placeholder": "​", "style": "IPY_MODEL_61e6c04c874f45e387821539981f2e76", "tabbable": null, "tooltip": null, "value": " 117M/117M [00:01<00:00, 583MB/s]" } }, "7d5975865cb8442989a4e7b6cdcd47a6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7d78ab46e4754acfb5915b3a0741817e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "7e9050fcebb9454cb5e2c85353d93756": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_20fe61bf6b394ba89a2e59acf77cdce5", "placeholder": "​", "style": "IPY_MODEL_2f9c9391a52749148984920f1880ff58", "tabbable": null, "tooltip": null, "value": "tokenizer_config.json: " } }, "7ed39adaaf9646ed8b9eaac7c64e4e26": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "803ef0c370ea4b768c955c2ccf60ef9f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "80eb316b1b1c49a28f7e8c01d97ab526": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_211d2ae3785141c59d4e415a0b5b11df", "max": 116531415.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_b864c84037eb417e872fdcfeaa55bc8d", "tabbable": null, "tooltip": null, "value": 116531415.0 } }, "82ddb8eff0d24c57b66a23958ff8c248": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_68b87a00770d4fa0856a5a4ffbf343e5", "placeholder": "​", "style": "IPY_MODEL_3f80b23d09b84265bbea8d3caa05b940", "tabbable": null, "tooltip": null, "value": "Map: 100%" } }, "84014c285cd34142887259eae7e1c518": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ac4e9c906b1b46d4bd7c712e7e9412aa", "max": 3000.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_898c5d16a65f4922bb48389354bf156a", "tabbable": null, "tooltip": null, "value": 3000.0 } }, "85771c35b1354a02a5da2c6fac955977": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "86852c7625d6454888e1e037ed765a70": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a79151a924304732b6c49e43ebd01838", "max": 100000.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_92975d32f5954dfd9f4eedde77125e53", "tabbable": null, "tooltip": null, "value": 100000.0 } }, "868b0d680f2e4ec983d25229a3196e61": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "87f56a4df31f499b886dd2b3a392892b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_0befc317ff8643628a499907eea0c38d", "max": 3000.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_f8edf29ad3514c31a53cab5b3f04f2da", "tabbable": null, "tooltip": null, "value": 3000.0 } }, "898c5d16a65f4922bb48389354bf156a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "8b24bd733ab54b019cb26c3157e41758": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8db9010ceefb4493a303c361fce31d91": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "8e8ccf63de5b4a7f9ce88b529c4cd59b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8fc1b1d31b414d7f8c68676ac0dfa064": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ea1195f4e1494cd1b0188cb79e0812a7", "placeholder": "​", "style": "IPY_MODEL_e58ddbc47ea34e1b9b3ece0738cf296b", "tabbable": null, "tooltip": null, "value": " 32.2M/32.2M [00:00<00:00, 160MB/s]" } }, "904ca5e14e8d4c339aa31e466f2eb2d6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "92975d32f5954dfd9f4eedde77125e53": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "940db0f1f9ed402db0925d693d85df02": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_fcebf1670b43483d8324d101283307c5", "max": 1.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_7d78ab46e4754acfb5915b3a0741817e", "tabbable": null, "tooltip": null, "value": 1.0 } }, "98d18f12362a44f48acbc5fa8d7973e1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "99ca530944db40c688cc2e2167672d99": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "9cc696acfaa24029a19aac32db80080a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9e839d76d2fe4c42a7caf2d809cfa215": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9fcc1b0d5e7e47b38e0025c24aa8c329": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_09962f62cce94f56a8c39ba832b2d765", "IPY_MODEL_80eb316b1b1c49a28f7e8c01d97ab526", "IPY_MODEL_7d0812636bda4a41b39233e82f705cc3" ], "layout": "IPY_MODEL_ab3a91cb5e314145903e065d581c9be7", "tabbable": null, "tooltip": null } }, "a00778e41580422394e4e0280bfd2f82": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_aec5f94e1ea64dc39eb51936779a81d2", "placeholder": "​", "style": "IPY_MODEL_5382be602e5a42b29c026e90f7a5e585", "tabbable": null, "tooltip": null, "value": "processor_config.json: " } }, "a0f0d065f65248e98aa3a31493911932": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "a20ca0892f964e25ba1586d4a5bbd9dd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "a2465290c940413bbd0c5059e9207d8e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "a25564c9cd6844539a80ba11ab305b89": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_7e9050fcebb9454cb5e2c85353d93756", "IPY_MODEL_a853a0f5e14345868bfe0433a96990b0", "IPY_MODEL_a8aa4963126647ae974557a5df08688b" ], "layout": "IPY_MODEL_12b6d1753927475682f8702ca4cada4f", "tabbable": null, "tooltip": null } }, "a31ce646c53140a1bb1ccd7777de20e7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a79151a924304732b6c49e43ebd01838": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a853a0f5e14345868bfe0433a96990b0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_a2465290c940413bbd0c5059e9207d8e", "max": 1.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_c9ebc137214a4d48aa437ec8ab4efccd", "tabbable": null, "tooltip": null, "value": 1.0 } }, "a8aa4963126647ae974557a5df08688b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_9cc696acfaa24029a19aac32db80080a", "placeholder": "​", "style": "IPY_MODEL_f9b35e10980c481ebb2e68ff6bd086ec", "tabbable": null, "tooltip": null, "value": " 14.9k/? [00:00<00:00, 1.36MB/s]" } }, "ab3a91cb5e314145903e065d581c9be7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "abba5ca8b9c24aa5ad4834264bdd0bfc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_75205816cf7f4c50b9eee6478a4ed98a", "IPY_MODEL_c06835d0e1084b16811cf1678fa6a9bf", "IPY_MODEL_bec3af9e58e84d829633e69b53bc80d1" ], "layout": "IPY_MODEL_d819c83dbe194834abe4485e51a61fcc", "tabbable": null, "tooltip": null } }, "ac4e9c906b1b46d4bd7c712e7e9412aa": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "acf4cc08f5654424a995921b867414bd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "aec5f94e1ea64dc39eb51936779a81d2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b051a523cdd34fd180668215334d080c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b05797a38c9041d7a4fd977b6b66ca13": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_40a44625b8d54fbca680049dfe1ddd1c", "IPY_MODEL_6307099d3c25460ba6bee80edd1d1a09", "IPY_MODEL_8fc1b1d31b414d7f8c68676ac0dfa064" ], "layout": "IPY_MODEL_66cdc617906c4996b55384b1e8a907fd", "tabbable": null, "tooltip": null } }, "b074bfe33e75427b96014c838dd4a42a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "b12e94ba51934a4097da47d981948854": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b3e6ffa744ed4549a25ddaf5e459cb6a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b6bde48c056745dda54e0d1420a78519": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b864c84037eb417e872fdcfeaa55bc8d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "b91f8b142c3b48cf9f08d2df6eda1978": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "bb0ac6fd692944548351a5c2efd31ea5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "bec3af9e58e84d829633e69b53bc80d1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_cdde474a35044655bd1693145eb1cba9", "placeholder": "​", "style": "IPY_MODEL_57574cc040184d2b8a4395b3287a8ef1", "tabbable": null, "tooltip": null, "value": " 3000/3000 [00:01<00:00, 534.28 examples/s]" } }, "c06835d0e1084b16811cf1678fa6a9bf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_85771c35b1354a02a5da2c6fac955977", "max": 3000.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_790136d7d63b4531b07d2ae73e8bd6af", "tabbable": null, "tooltip": null, "value": 3000.0 } }, "c382838d589c4320b7bbc41684168893": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_d8edddbcbf70493b8bfdff63602782b7", "placeholder": "​", "style": "IPY_MODEL_13630bf3f7be48c9b687ccff4e6b639f", "tabbable": null, "tooltip": null, "value": "Generating train split: 100%" } }, "c423948df5c1410d80bc29d975e87492": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "c5e70f486b134264911fa70a74fb3d19": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "c5fc3eba43d74cb2acea114cc65139e2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c7641a7d1ad24f5ca33469ae18fdac68": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c9ebc137214a4d48aa437ec8ab4efccd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "ca6689b7b9d1446c9f09e3dcf5125ae8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_65dec59f62c1480cb6bca2268f2a403a", "IPY_MODEL_747599c76bbb4fc7b1c565b8dd4e1317", "IPY_MODEL_6d4f64faf10d4cd2bf1d4d7bfb7fd1b4" ], "layout": "IPY_MODEL_3c6e58fc816741e7b1321e9bf0ee80a0", "tabbable": null, "tooltip": null } }, "cbe4683fe14945e18dd7161a2c454500": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "cdde474a35044655bd1693145eb1cba9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ce0953daab7c4cb290ce36a31350dadc": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d127ada24d82403e826fd8cc2be96aae": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d15e935af71e48bf9eb16c54fd039cb4": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_c382838d589c4320b7bbc41684168893", "IPY_MODEL_86852c7625d6454888e1e037ed765a70", "IPY_MODEL_65e41393d19847bb86101d4a4d6b46d4" ], "layout": "IPY_MODEL_3951f3ffff774384acdfde89992fd0dd", "tabbable": null, "tooltip": null } }, "d4037b70f52e4d998c56578de7c79774": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_26fbb43053db4a2eb73f900bcfb61f14", "max": 1.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_0d99defc025f44daab34d0c575b350c2", "tabbable": null, "tooltip": null, "value": 1.0 } }, "d4ace70caa0b427ebeb42e173962e4a6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d6182709ee8042188c1784721434f68c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d75f4d2d03ae4247a54732e952674931": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d7664d8a987847b983fdda73512050a7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "d7a1b908d01841bd863d9763faaecf19": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_f0233eb685774716b42a86884e43593b", "placeholder": "​", "style": "IPY_MODEL_c5e70f486b134264911fa70a74fb3d19", "tabbable": null, "tooltip": null, "value": " 1/1 [00:00<00:00, 142.45it/s]" } }, "d819c83dbe194834abe4485e51a61fcc": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d8edddbcbf70493b8bfdff63602782b7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d92b9a6eb55b482fa1de1bc6ef01c2fe": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dbdfb3f2528c4473bac00ebd848220a1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dd6c5df2d2c34be880470f6fd5fc297e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dfeb0d920b4a491d85062ee2f62db17d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e368e10eff6a4d77b3dcbec79b579e82": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_ea4d607d803845d199352d6247ca844f", "placeholder": "​", "style": "IPY_MODEL_d7664d8a987847b983fdda73512050a7", "tabbable": null, "tooltip": null, "value": " 1.69k/? [00:00<00:00, 146kB/s]" } }, "e39ab592e86c4190bbbd488bcd85d99e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "e58ddbc47ea34e1b9b3ece0738cf296b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "e5c6e31d8a7943be90673e5034f1acf0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e6eae91cecb14392a0af9398937b2fbc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "e79bc28cc65b4095bcdcce0706c34f32": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e94a7c81af474a4c9ada6310f0fa71f2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "e9a732ae54f9464092bf38e35c644619": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_3584c90d6b27469cb2780c6fc618f146", "placeholder": "​", "style": "IPY_MODEL_7ed39adaaf9646ed8b9eaac7c64e4e26", "tabbable": null, "tooltip": null, "value": "Loading weights: 100%" } }, "ea1195f4e1494cd1b0188cb79e0812a7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ea4d607d803845d199352d6247ca844f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "eb1f0cb5250a460195a57ae36b2d1648": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_9e839d76d2fe4c42a7caf2d809cfa215", "placeholder": "​", "style": "IPY_MODEL_868b0d680f2e4ec983d25229a3196e61", "tabbable": null, "tooltip": null, "value": "model.safetensors: 100%" } }, "ece07379e5f3496f9950ad425026ca5f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ef66db03235441e49e3a28e8f7f142ea": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "f0233eb685774716b42a86884e43593b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f26c344426984a1a93868519dabb45bc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "f2c4809b20c84e7a96d9b67a3d8ac09f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_dfeb0d920b4a491d85062ee2f62db17d", "placeholder": "​", "style": "IPY_MODEL_98d18f12362a44f48acbc5fa8d7973e1", "tabbable": null, "tooltip": null, "value": "Map (num_proc=8): 100%" } }, "f3fe3589911a40ebbfae2bd3596a935d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_f74b38a069ee4a1f84435f2a7fe3919e", "max": 208.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_7d01a45f2b68423396448afb5789db26", "tabbable": null, "tooltip": null, "value": 208.0 } }, "f416c1e959ee4745bc8a272345480d0d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_dbdfb3f2528c4473bac00ebd848220a1", "placeholder": "​", "style": "IPY_MODEL_e94a7c81af474a4c9ada6310f0fa71f2", "tabbable": null, "tooltip": null, "value": "README.md: 100%" } }, "f4b411dee72341d7ba6ee61660534490": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_e9a732ae54f9464092bf38e35c644619", "IPY_MODEL_760b0d5e9a9d44e386477ba3806fe69a", "IPY_MODEL_fd3f63178dc444dfb32884cccb020faf" ], "layout": "IPY_MODEL_6cebc0e67c664e059e14fb481985a383", "tabbable": null, "tooltip": null } }, "f4e8817005d044fb9fed3ba2035ebf6c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_bb0ac6fd692944548351a5c2efd31ea5", "max": 1.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_3d028f45e72344c1a42519245f58a8ae", "tabbable": null, "tooltip": null, "value": 1.0 } }, "f74b38a069ee4a1f84435f2a7fe3919e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f8edf29ad3514c31a53cab5b3f04f2da": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "f9b35e10980c481ebb2e68ff6bd086ec": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "fcebf1670b43483d8324d101283307c5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": "20px" } }, "fd3f63178dc444dfb32884cccb020faf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_b12e94ba51934a4097da47d981948854", "placeholder": "​", "style": "IPY_MODEL_b074bfe33e75427b96014c838dd4a42a", "tabbable": null, "tooltip": null, "value": " 2130/2130 [00:53<00:00, 377.03it/s]" } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }