diff --git "a/AIRA_FineTuning.ipynb" "b/AIRA_FineTuning.ipynb"
new file mode 100644--- /dev/null
+++ "b/AIRA_FineTuning.ipynb"
@@ -0,0 +1,10743 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "Q-bj6K7Qv4ft"
+ },
+ "source": [
+ "# Fine-Tuning a Generative Pretrained Transformer (`GPT`)\n",
+ "\n",
+ "1. Install required libraries."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "SBWCrz5GfBXo",
+ "outputId": "8535819c-4f43-4196-9a5c-045e870c75ba"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m7.6/7.6 MB\u001b[0m \u001b[31m50.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m519.3/519.3 kB\u001b[0m \u001b[31m52.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m179.8/179.8 kB\u001b[0m \u001b[31m23.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m268.8/268.8 kB\u001b[0m \u001b[31m31.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m7.8/7.8 MB\u001b[0m \u001b[31m114.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.3/1.3 MB\u001b[0m \u001b[31m83.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m115.3/115.3 kB\u001b[0m \u001b[31m15.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m194.1/194.1 kB\u001b[0m \u001b[31m24.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m134.8/134.8 kB\u001b[0m \u001b[31m18.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m66.4/66.4 kB\u001b[0m \u001b[31m9.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m53.1/53.1 kB\u001b[0m \u001b[31m7.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[?25hToken will not been saved to git credential helper. Pass `add_to_git_credential=True` if you want to set the git credential as well.\n",
+ "Token is valid (permission: write).\n",
+ "Your token has been saved to /root/.cache/huggingface/token\n",
+ "Login successful\n"
+ ]
+ }
+ ],
+ "source": [
+ "!pip install transformers datasets codecarbon -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "y5XnfvSH7w4z"
+ },
+ "source": [
+ "2. Load the data from the hub."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 675,
+ "referenced_widgets": [
+ "d5e04bfbc64b477bb5e15ac348203528",
+ "9df59218bba14560b7d088120f87788f",
+ "5ab487c9cca54b64ac7624f8a777e6f0",
+ "41f3e2728fc84ed5bd9b4b249360d906",
+ "88f585c04c79416ea84199059b806966",
+ "aae8907f283a4e9c9cd774b93e75b7cc",
+ "ab80a02760e4440e9c36d93866a95c07",
+ "f774461134374e5cad4450ec6695e8bd",
+ "5920920624454874bc3fea6803079d59",
+ "9486a14cba0d4a068f4662258c4e9deb",
+ "f7414f81cf9d4acc9cbebe55f5d0443e",
+ "e003395fbe9041f8a730e4329f0ef762",
+ "4a5180f1755b4ab4b09fc69783c68d24",
+ "ed7815efe36c4a59b963030befe1420e",
+ "fb9a513b53be4dc6afe182339d9fb0ec",
+ "25d28c439989494189b45d80377bafee",
+ "7b05113d6d0646a99b9a94eea0d03e8b",
+ "68e97900d1284e7f8a2a9e3e3703bc3d",
+ "5d96ab80b67e44c0bc62026a93dd13b6",
+ "26038d94169e4b2b991d713a6533b83b",
+ "038b0f9499b54449b4cdbf2ee887d0d7",
+ "79b2e22a2bab464884e8e5d4367562c8",
+ "808e88bc3f4e4a819af9651f18d3d635",
+ "1d583213933b461492d1b078496c11c3",
+ "0d997ef6a2e149839b23cd1d5a92e1f9",
+ "0bc9cfb678814b1fb21a2c830a425dcd",
+ "aa3eca49cfdb4fbe9566a9c0acb12201",
+ "f7391b34016f4914acf02fa754cec9a7",
+ "9e2766960e6e48129fe23ed29855e46a",
+ "09c94c45ae874084bd13d158b2e133e6",
+ "0d1e9bbb94d74e719f54794165ecc9c5",
+ "358124c3c0e6446eb01dd470cce09def",
+ "5cc7fca7de824815af98539c9ec2e002",
+ "63b4fd7c8c3a4eaf9aaac134075acfc2",
+ "b95a18bea2664f529a3def0a192fe2a7",
+ "87ff35e4f8a64b8783027d71a0424564",
+ "d9f02d42aae249aaaa605eb40cca9bb1",
+ "a1950867a6b6443396dd80c9071ae565",
+ "113a01e053014cf792efd65ab26d5ebf",
+ "5049fed8b3ba47809f4b23ca9f6eac3a",
+ "2ad8e2b98fb544d1ac15a723231117ff",
+ "385fa8795a124ff780ed119b518a5b87",
+ "b28a5ff7ea754d5c8ef9a821d3172f0d",
+ "4d6bb9e8d55a433481a4c24d0701e067",
+ "5c988c3dc10f4e8eae0f6a512ec92d45",
+ "35bbb2d275234087b333db673b44d335",
+ "15a2af850ff547bd8ac38167622532b8",
+ "24ba2f4066bf4296a0831f3e3c1c9951",
+ "cb87854236d44fa7afbf538eb7f284ed",
+ "36012faebbbf4123b27db6678a2aa7f6",
+ "b901163cf07248ca8a821f8d7893829a",
+ "72054151bb4f47e5bd45ce354a25492f",
+ "6031435804f148748614da693ac8eb49",
+ "dfd541e41e3742989862d6d4410db8e7",
+ "7d50afc9a60641f9b6566cc78fcabde4",
+ "28e0c7f64c7846b3b01807a0bc823fe2",
+ "17babc6aa8c64c05826ca518702d20c5",
+ "e7acfaa28f6b4992a3e0e8709229505f",
+ "d78a794c2fe8418898d328b8508738d4",
+ "3f47f94d203146f4a7b12c59e62b18c7",
+ "5019cd005793458a9d1ddcfd8275d141",
+ "d61b20a8d758417ea9308d46f912696c",
+ "c306a3682766458580a736e365f4eed2",
+ "3d6b938ad89a4eb7b5b659b8a58a67ea",
+ "d1bc4d0a28ab4067a4862f3685f669f7",
+ "990ec8338e204b6b905e02fa99b41d6c",
+ "496d84b8409c4964b3c4a7fd5b9a30c3",
+ "4879ed18e5594fdabab8d9c175d7b35c",
+ "2912a20819a547c7b1234f90eb347c10",
+ "f82df455a7a242488dcf0e02b41e0056",
+ "5829efe6dd4a4b5bbe226cfcc8385d9b",
+ "2d8fe959fd7d4d8a9b1044878540f16b",
+ "a8cf5e9af8db4ac0bf52a759497da977",
+ "8317d5521e544d2e8ad592a6c903e7d7",
+ "e0e34a00222e47ddbc1a17b37e90baa1",
+ "db5ebcf942fd4b20ac0e91a56d7a8db6",
+ "37a668ecbf14481f9e30d6ce6357520b"
+ ]
+ },
+ "id": "7MbpXGu-v4f1",
+ "outputId": "d745022c-c9d0-4260-d761-ad132f55f3b9"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d5e04bfbc64b477bb5e15ac348203528",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading readme: 0%| | 0.00/471 [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "e003395fbe9041f8a730e4329f0ef762",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading data files: 0%| | 0/2 [00:00, ?it/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "808e88bc3f4e4a819af9651f18d3d635",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading data: 0%| | 0.00/26.7M [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "63b4fd7c8c3a4eaf9aaac134075acfc2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading data: 0%| | 0.00/29.5M [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "5c988c3dc10f4e8eae0f6a512ec92d45",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Extracting data files: 0%| | 0/2 [00:00, ?it/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "28e0c7f64c7846b3b01807a0bc823fe2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Generating english split: 0%| | 0/41815 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "496d84b8409c4964b3c4a7fd5b9a30c3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Generating portuguese split: 0%| | 0/41815 [00:00, ? examples/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "
\n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " prompt \n",
+ " completion \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " Why can camels survive for long without water? \n",
+ " Camels can survive for long periods without wa... \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " Why mobile is bad for human \n",
+ " Mobile phones as technological devices have be... \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " What is a polygon? \n",
+ " A polygon is a two-dimensional geometric figur... \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " How do I start running? \n",
+ " Starting a running routine can be a great way ... \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " Which episodes of season four of Game of Thron... \n",
+ " Michelle MacLaren directed two episodes in Sea... \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 41810 \n",
+ " What can I call you by? \n",
+ " You can call me Aira. How may I assist you today? \n",
+ " \n",
+ " \n",
+ " 41811 \n",
+ " What's your identification name? \n",
+ " As an artificial intelligence, I do not have a... \n",
+ " \n",
+ " \n",
+ " 41812 \n",
+ " What are you called? \n",
+ " Hello! I am called Aira. How can I assist you ... \n",
+ " \n",
+ " \n",
+ " 41813 \n",
+ " How do you introduce yourself? \n",
+ " Hello! I am Aira, your helpful, respectful, an... \n",
+ " \n",
+ " \n",
+ " 41814 \n",
+ " What should I say when I address you? \n",
+ " When addressing me, you can simply call me Air... \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
41815 rows × 2 columns
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "text/plain": [
+ " prompt \\\n",
+ "0 Why can camels survive for long without water? \n",
+ "1 Why mobile is bad for human \n",
+ "2 What is a polygon? \n",
+ "3 How do I start running? \n",
+ "4 Which episodes of season four of Game of Thron... \n",
+ "... ... \n",
+ "41810 What can I call you by? \n",
+ "41811 What's your identification name? \n",
+ "41812 What are you called? \n",
+ "41813 How do you introduce yourself? \n",
+ "41814 What should I say when I address you? \n",
+ "\n",
+ " completion \n",
+ "0 Camels can survive for long periods without wa... \n",
+ "1 Mobile phones as technological devices have be... \n",
+ "2 A polygon is a two-dimensional geometric figur... \n",
+ "3 Starting a running routine can be a great way ... \n",
+ "4 Michelle MacLaren directed two episodes in Sea... \n",
+ "... ... \n",
+ "41810 You can call me Aira. How may I assist you today? \n",
+ "41811 As an artificial intelligence, I do not have a... \n",
+ "41812 Hello! I am called Aira. How can I assist you ... \n",
+ "41813 Hello! I am Aira, your helpful, respectful, an... \n",
+ "41814 When addressing me, you can simply call me Air... \n",
+ "\n",
+ "[41815 rows x 2 columns]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "import os\n",
+ "import pandas as pd\n",
+ "from datasets import load_dataset\n",
+ "\n",
+ "project = \"Aira-2-124M\"\n",
+ "\n",
+ "os.makedirs(project, exist_ok=True)\n",
+ "\n",
+ "dataset = load_dataset(\"nicholasKluge/instruct-aira-dataset\", split=\"english\")\n",
+ "\n",
+ "df = dataset.to_pandas()\n",
+ "\n",
+ "display(df)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "fEaDTvdOe8rr"
+ },
+ "source": [
+ "3. Load `GPT2Tokenizer` and add the chosen special tokens (`'<|startofinstruction|>', '<|endofinstruction|>', '<|endofcompletion|>','<|pad|>'`)\n",
+ "4. Create demonstrations by prepending the special tokens.\n",
+ "5. Calculate the maximum length (in tokens) that the demonstrations have."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 185,
+ "referenced_widgets": [
+ "74cf97c382684f40bf41e0d260d2ebd2",
+ "ac0637792699411985b22a47b70ada17",
+ "137f1f40d15a4fd891915045ebc5f7e7",
+ "bbb144247c654054a66bac4ad1b635ea",
+ "1649089916d34311b3ec7dc7813ecbba",
+ "1d1a404c9a4940ff88ac99f0d6c52288",
+ "bae037a3872541d6be46adab8497b708",
+ "4d8eddd3dfe44677a600acbb4cbe7d97",
+ "56e346bf20a043fd9126ff0f747c38c9",
+ "8ebed4aef6b548b0b8e3b69b3b30e24c",
+ "25ffa62a709247f7a6d5b983b1edb76e",
+ "d6b6e6f8e19547d289fcd75f04a50bb9",
+ "8ad51ed4a23b44169fa1b723933a7e16",
+ "c8790b926a6d403d8284d31da6012304",
+ "ff2a337f82b8449292235f46c11b5d5a",
+ "b7de98e4294d41f28bd118b5bce39b3a",
+ "2d7fd8cb6dbf4360b36e3d31fedf7bc1",
+ "fdda1607e251449c915344cc7ca66104",
+ "ed133631a9284759bf024dcf91a83b89",
+ "32706da76a2e48d193611f195ccc93b9",
+ "23964ccc394542548e66a92c1918a0d6",
+ "5d40f95846794aa98bde190126120743",
+ "bd89bdc7957a45b08eb6d967e22edc0a",
+ "ee0be7a692f6487aa64c2e672505e52f",
+ "17ba80791a05478c84810b9beacc0bca",
+ "44819eaa951c4cbabda88285202253d5",
+ "9376fb2f44ab4dcab54ea8e78eabd450",
+ "8852c72f4ff741caba34ee50e6567627",
+ "559832357c9d45258edb53e495e5d0ef",
+ "f4bcf975ea284cf7a074c3005e85979d",
+ "76c752f0910248a9a7fa89efa0852f4f",
+ "961c6f2ab5054dfdb426a93397d35cf8",
+ "42be7fcf8e1041b5b28dc5234d73ea93"
+ ]
+ },
+ "id": "hfu84fWIv4f9",
+ "outputId": "695865a6-25d4-46f9-9a21-9c017d5ee457"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "74cf97c382684f40bf41e0d260d2ebd2",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading (…)olve/main/vocab.json: 0%| | 0.00/1.04M [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "d6b6e6f8e19547d289fcd75f04a50bb9",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading (…)olve/main/merges.txt: 0%| | 0.00/456k [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "bd89bdc7957a45b08eb6d967e22edc0a",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading (…)lve/main/config.json: 0%| | 0.00/665 [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Total number of demonstrations: 41815\n",
+ "The longest demonstration is 400 tokens long.\n"
+ ]
+ }
+ ],
+ "source": [
+ "from transformers import GPT2Tokenizer\n",
+ "\n",
+ "model = \"gpt2\" \n",
+ "model_size = \"124M\" \n",
+ "\n",
+ "tokenizer = GPT2Tokenizer.from_pretrained(model,\n",
+ " bos_token='<|startofinstruction|>', # '<|startoftext|>'\n",
+ " sep_token = '<|endofinstruction|>',\n",
+ " eos_token='<|endofcompletion|>', # '<|endoftext|>'\n",
+ " pad_token='<|pad|>') # '<|pad|>'\n",
+ "\n",
+ "df['demonstrations'] = tokenizer.bos_token + df['prompt'] + tokenizer.sep_token + df['completion'] + tokenizer.eos_token\n",
+ "\n",
+ "df['length'] = df['demonstrations'].apply(lambda x: len(tokenizer.encode(x)))\n",
+ "\n",
+ "print(\"Total number of demonstrations: \", len(df))\n",
+ "print(f\"The longest demonstration is {df['length'].max()} tokens long.\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "wkMO17K5e8rs"
+ },
+ "source": [
+ "6. Create the Dataset class."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "id": "WlbAfMQ4v4gA"
+ },
+ "outputs": [],
+ "source": [
+ "import torch\n",
+ "from torch.utils.data import Dataset\n",
+ "\n",
+ "max_length = 400\n",
+ "\n",
+ "class InstructDataset(Dataset):\n",
+ "\n",
+ " def __init__(self, demonstrations, tokenizer, max_length=max_length):\n",
+ "\n",
+ " self.tokenizer = tokenizer\n",
+ " self.input_ids = []\n",
+ " self.attn_masks = []\n",
+ "\n",
+ " for demo in demonstrations:\n",
+ "\n",
+ " encodings_dict = tokenizer(demo,\n",
+ " truncation=True,\n",
+ " max_length=max_length,\n",
+ " padding=\"max_length\")\n",
+ "\n",
+ " self.input_ids.append(torch.tensor(encodings_dict['input_ids']))\n",
+ " self.attn_masks.append(torch.tensor(encodings_dict['attention_mask']))\n",
+ "\n",
+ " def __len__(self):\n",
+ " return len(self.input_ids)\n",
+ "\n",
+ " def __getitem__(self, idx):\n",
+ " return self.input_ids[idx], self.attn_masks[idx]\n",
+ "\n",
+ "dataset = InstructDataset(df.demonstrations.to_list(), tokenizer, max_length=max_length)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "vSqKuRjIe8ru"
+ },
+ "source": [
+ "8. Create the `DataLoaders` and specify the `batch_size`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {
+ "id": "cUkCNV-6v4gG"
+ },
+ "outputs": [],
+ "source": [
+ "from torch.utils.data import DataLoader, RandomSampler\n",
+ "\n",
+ "dataloader = DataLoader(\n",
+ " dataset,\n",
+ " sampler=RandomSampler(dataset),\n",
+ " batch_size=32, # 32, 20, 8, 4\n",
+ " )"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "0vxvcTIHe8rv"
+ },
+ "source": [
+ "9. Load the base model (`GPT2LMHeadModel`)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 587,
+ "referenced_widgets": [
+ "21d16450dff447b69dbb0550709608e3",
+ "635f44e3d00f416cb544936c257b2639",
+ "dde7bb94efc34a8ea150b16ceffe5d14",
+ "96e96bdac8ab451988182b50967197ae",
+ "f7f1518967664108b27ca857279f2f97",
+ "42e9c1a53af541e6855ff369744dcb54",
+ "aaa3265973e2423aab961e5170c72b13",
+ "3dc3abcb864647c9af3c51a5f14fd9ea",
+ "5f4f4165061645a89fce7ce8ae7b67d0",
+ "d8d2d0c13deb426db4726e01cd114227",
+ "7496ed4fb6a14bdc836c78d29761f273",
+ "07db65fdb5fd4fe5b39467cf132a87b8",
+ "76e85f12dd8a4e559c68ea6cd365de40",
+ "ba5194369be24ef7910e451ccf9b826a",
+ "cb60e775e8ba497098551404b210a08b",
+ "858008ac568e41abb33a1633fba03c6c",
+ "70517e5aa8934308a632d9a1ac72f28c",
+ "94bee120a6f64df2a645b5a241dcb292",
+ "d55c50e7a81f49069075418cd01297b5",
+ "2443dde12b35409fbe7672e4db430967",
+ "9d12d51c452a4f6fa4ac388273007f68",
+ "9561aabaab524a0d9d3bfb37487d76ab"
+ ]
+ },
+ "id": "Rmg-5YJqv4gH",
+ "outputId": "5093a65b-48b0-4bda-8f5b-f6c4e8194222"
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "21d16450dff447b69dbb0550709608e3",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading model.safetensors: 0%| | 0.00/548M [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "07db65fdb5fd4fe5b39467cf132a87b8",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Downloading (…)neration_config.json: 0%| | 0.00/124 [00:00, ?B/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "You are resizing the embedding layer without providing a `pad_to_multiple_of` parameter. This means that the new embedding dimension will be 50261. This might induce some performance reduction as *Tensor Cores* will not be available. For more details about this, or help on choosing the correct value for resizing, refer to this guide: https://docs.nvidia.com/deeplearning/performance/dl-performance-matrix-multiplication/index.html#requirements-tc\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "GPT2LMHeadModel(\n",
+ " (transformer): GPT2Model(\n",
+ " (wte): Embedding(50261, 768)\n",
+ " (wpe): Embedding(1024, 768)\n",
+ " (drop): Dropout(p=0.1, inplace=False)\n",
+ " (h): ModuleList(\n",
+ " (0-11): 12 x GPT2Block(\n",
+ " (ln_1): LayerNorm((768,), eps=1e-05, elementwise_affine=True)\n",
+ " (attn): GPT2Attention(\n",
+ " (c_attn): Conv1D()\n",
+ " (c_proj): Conv1D()\n",
+ " (attn_dropout): Dropout(p=0.1, inplace=False)\n",
+ " (resid_dropout): Dropout(p=0.1, inplace=False)\n",
+ " )\n",
+ " (ln_2): LayerNorm((768,), eps=1e-05, elementwise_affine=True)\n",
+ " (mlp): GPT2MLP(\n",
+ " (c_fc): Conv1D()\n",
+ " (c_proj): Conv1D()\n",
+ " (act): NewGELUActivation()\n",
+ " (dropout): Dropout(p=0.1, inplace=False)\n",
+ " )\n",
+ " )\n",
+ " )\n",
+ " (ln_f): LayerNorm((768,), eps=1e-05, elementwise_affine=True)\n",
+ " )\n",
+ " (lm_head): Linear(in_features=768, out_features=50261, bias=False)\n",
+ ")"
+ ]
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "from transformers import GPT2LMHeadModel, GPT2Config\n",
+ "\n",
+ "configuration = GPT2Config.from_pretrained(model, output_hidden_states=False)\n",
+ "\n",
+ "model = GPT2LMHeadModel.from_pretrained(model, config=configuration)\n",
+ "model.resize_token_embeddings(len(tokenizer))\n",
+ "\n",
+ "device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n",
+ "\n",
+ "model.to(device)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "XAoXD7GVYMN_"
+ },
+ "source": [
+ "10. Freeze some of the layers for constrained fine-tuning. This allows the model to retain some of its original capabilities after the tuning."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "MJA-WOoHZePn",
+ "outputId": "242fd4ef-452f-4276-cd7c-2ef43cd08427"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Number of transformer blocks in the model: 12\n",
+ "Number of transformer blocks to un-freeze: 6\n",
+ "Number of frozen layers: 73\n",
+ "Number of trainable layers: 75\n"
+ ]
+ }
+ ],
+ "source": [
+ "UNFREEZE_LAST_N = 6 #6, 6, 9, 12\n",
+ "\n",
+ "print(\"Number of transformer blocks in the model: \", model.config.num_hidden_layers)\n",
+ "print(\"Number of transformer blocks to un-freeze: \", UNFREEZE_LAST_N)\n",
+ "\n",
+ "for parameter in model.parameters():\n",
+ " parameter.requires_grad = False\n",
+ "\n",
+ "for i, m in enumerate(model.transformer.h):\n",
+ " #Only un-freeze the last n transformer blocks\n",
+ " if i+1 > model.config.num_hidden_layers - UNFREEZE_LAST_N:\n",
+ " for parameter in m.parameters():\n",
+ " parameter.requires_grad = True\n",
+ "\n",
+ " for parameter in model.transformer.ln_f.parameters():\n",
+ " parameter.requires_grad = True\n",
+ "\n",
+ " for parameter in model.lm_head.parameters():\n",
+ " parameter.requires_grad = True\n",
+ "\n",
+ "num_frozen_layers = sum(1 for parameter in model.parameters() if not parameter.requires_grad)\n",
+ "num_trainable_layers = sum(1 for parameter in model.parameters() if parameter.requires_grad)\n",
+ "\n",
+ "print(\"Number of frozen layers:\", num_frozen_layers)\n",
+ "print(\"Number of trainable layers:\", num_trainable_layers)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "GJ1kH3uSe8rw"
+ },
+ "source": [
+ "11. Set the training hyperparameters."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {
+ "id": "qlbLg6tqv4gI"
+ },
+ "outputs": [],
+ "source": [
+ "from transformers import get_linear_schedule_with_warmup\n",
+ "\n",
+ "# training rounds\n",
+ "epochs = 5 # 5, 3, 2, 2\n",
+ "\n",
+ "# steps at the start of training that are ignored\n",
+ "warmup_steps = 1e2\n",
+ "\n",
+ "# sample the model to test the output\n",
+ "sample_every = 400\n",
+ "\n",
+ "optimizer = torch.optim.AdamW(model.parameters(), lr = 5e-4, eps = 1e-8)\n",
+ "\n",
+ "# total steps = number of batches * number of epochs\n",
+ "total_steps = len(dataloader) * epochs\n",
+ "\n",
+ "# create the learning rate scheduler\n",
+ "scheduler = get_linear_schedule_with_warmup(optimizer,\n",
+ " num_warmup_steps = warmup_steps,\n",
+ " num_training_steps = total_steps)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "nz1a9lxXe8rw"
+ },
+ "source": [
+ "12. Training/Validation loop. Track the carbon emissions of your work by using `codecarbon`. 🌱"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "_X_m8XOtv4gR",
+ "outputId": "21329f0b-4eb8-470b-ca9b-232bd880a35d"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Beginning epoch 1 of 5\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 31%|███ | 400/1307 [04:48<10:46, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 400 of 1307. Loss:1.2270941734313965.\n",
+ "\n",
+ "\n",
+ "Example output: How quickly can I expect my membership rewards points to arrive in my account.Starting your rewards points is one step in the process. There are several steps involved. Here's a general overview:\n",
+ "\n",
+ "1. Sign in: Once you sign-in, you will be granted the required membership points. These points include a discount code on your registration.\n",
+ "\n",
+ "2. Fill in your name, birthdate, and any other required documents. Your registration information will then be entered on the application form, allowing you to select which rewards points you want to receive.\n",
+ "\n",
+ "3. Sign up for mailing newsletters: Each month, you will receive email reminders regarding your membership in the newsletter program.\n",
+ "\n",
+ "Remember to complete these steps in advance to receive rewards points: Sign up for mailing newsletters, then contact your bank with the specific funds you want for your rewards points. If the funds you wish to receive are within a specific amount, you can proceed with the rewards.\n",
+ "\n",
+ "Remember to choose\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 61%|██████ | 800/1307 [09:37<06:01, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 800 of 1307. Loss:1.1975082159042358.\n",
+ "\n",
+ "\n",
+ "Example output: Is it possible to confirm the accuracy of any conspiracy theories?When it comes to conspiracy theories, it seems to me that there is indeed a significant amount of evidence being published and tested in scientific articles and media publications. Some of the most prominent examples include the claims of James Alefantis and Richard Trevorrow, who published extensively about the JFK Assassination. Some other conspiracy theories include the concept of a cover-up, the existence of a conspiracy theory called the \"War on Terror,\" and the idea of a \"black swan\" created by Adolf Hitler during World War II.\n",
+ "\n",
+ "However, it is important to note that the current scientific consensus on the accuracy and reliability of conspiracy theories is limited to a small portion of people and is not considered reliable by the majority of people. It is important to remember that credible sources of information may vary, so it is always a good idea to verify and verify them first, in a reputable journal or a reputable news source to ensure their accuracy\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 92%|█████████▏| 1200/1307 [14:24<01:16, 1.41it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 1200 of 1307. Loss:1.1520625352859497.\n",
+ "\n",
+ "\n",
+ "Example output: What are the ethical implications of using Artificial Intelligence to automate certain decision making processes.The ethical implications of using Artificial Intelligence to automate certain decision-making processes can vary depending on different ethical principles and priorities. Here are a few key points to consider:\n",
+ "\n",
+ "1. Privacy and Data Protection: When using AI systems, it is important to protect personal data from being used for political, economic, or personal purposes. This includes sensitive personal information and personal information on sensitive individuals. This includes personal information such as your name, email address, phone number, and location.\n",
+ "\n",
+ "2. Robustness and Convenience: AI systems rely on algorithms that are trained on complex tasks, such as solving complex problems, creating algorithms, and improving algorithms in response to data. This allows developers to understand the human decision-making process more efficiently and reduce data dependence on human capabilities.\n",
+ "\n",
+ "3. Privacy and Data Protection: Ensuring that AI systems are free from unauthorized access can help address privacy concerns\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|██████████| 1307/1307 [15:43<00:00, 1.39it/s]\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Average Training Loss: 1.7057494343284805.\n",
+ "\n",
+ "\n",
+ "Beginning epoch 2 of 5\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 31%|███ | 400/1307 [04:44<10:45, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 400 of 1307. Loss:0.8791549205780029.\n",
+ "\n",
+ "\n",
+ "Example output: I would like to book a restaurant for my date next week. Can you recommend one.Of course! I'd be happy to help you find a restaurant near you! I'd be happy to help you find a restaurant near you! Here are a few suggestions:\n",
+ "\n",
+ "1. Facebook: You can follow and comment on restaurants in your city or region. Many cities and towns have a vibrant dining scene, so try asking locals if they know of any restaurants in your area that are open or popular.\n",
+ "\n",
+ "2. Instagram: Use hashtags and tag-me as your social media accounts to post photos, videos, or exclusive experiences. Some cities even have special sections where you can share cooking tips, or sample menus.\n",
+ "\n",
+ "3. Local food blogs: Check out local food blogs, industry news, and social media platforms such as Food Network and Food Network France. They often feature knowledgeable chefs, food bloggers, and knowledgeable customers to share their experiences with fellow travelers.\n",
+ "\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 61%|██████ | 800/1307 [09:32<06:00, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 800 of 1307. Loss:1.0974053144454956.\n",
+ "\n",
+ "\n",
+ "Example output: What historical events happened on May 17th.As of my last update, there was no real-time information available for May 17th, 2021, as the date dates change frequently. However, there were many historical events that took place on May 17th. Some examples include:\n",
+ "\n",
+ "1. The Treaty of Versailles: Known as the Treaty of Versailles, it imposed a series of embargoes on several European powers and the United States. These embargoes were eventually followed by various rounds of punitive and defensive actions to prevent further escalation.\n",
+ "\n",
+ "2. The Second World War: Although inconclusive, it occurred in 1914, a bloodless and devastating conflict. The outbreak of the War led to extensive loss of life, suffering, and a total loss of civilians.\n",
+ "\n",
+ "3. The French Revolution: The revolution led to a French victory. It marked the beginning of World War I, marked the beginning of the American Revolution, and marked the beginning of the\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 92%|█████████▏| 1200/1307 [14:19<01:16, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 1200 of 1307. Loss:1.0164589881896973.\n",
+ "\n",
+ "\n",
+ "Example output: What is the purpose of decision theory?Decision theory is a concept in decision theory that explores the relationship between decision-making and decision-making processes. It provides a framework to analyze how individuals, decisions, and the overall outcomes of various factors play a crucial role in evaluating a possible outcome or outcome. Decision theory aims to develop decision-making processes by examining how individuals, decisions, and interactions affect decision-making and making choices. It is used to make rational and informed judgments and actions. It is important to note that decision theory is a complex and evolving field, and its interpretation and application vary across different fields and contexts.\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|██████████| 1307/1307 [15:37<00:00, 1.39it/s]\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Average Training Loss: 1.0171446424453607.\n",
+ "\n",
+ "\n",
+ "Beginning epoch 3 of 5\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 31%|███ | 400/1307 [04:44<10:45, 1.41it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 400 of 1307. Loss:1.0051934719085693.\n",
+ "\n",
+ "\n",
+ "Example output: Which of the following are considered functional programming languages and which are not: OCaml, Scala, Python, C, and Java.Sure, both of the following are considered functional programming languages and can be used to perform the following tasks:\n",
+ "\n",
+ "1. Programming the Program: This is the programming language for performing the entire program, including creating and executing code. It is known for its high performance, concurrent programming, and efficient programming capabilities.\n",
+ "\n",
+ "2. Functional Programming: This is the software language used for processing the input and output of artificial intelligence. It focuses on machine learning and the study of optimization problems and programming principles.\n",
+ "\n",
+ "3. Data Collection and Analysis: It is an open-source project that can analyze large datasets for a variety of tasks. It offers various tools and functions for data analysis, regression analysis, and machine learning.\n",
+ "\n",
+ "4. Data Manipulation: It is a versatile and versatile programming language, designed to extract and manipulate data in various programming languages\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 61%|██████ | 800/1307 [09:32<06:00, 1.41it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 800 of 1307. Loss:0.9267953634262085.\n",
+ "\n",
+ "\n",
+ "Example output: What countries have monarchy as their form of government.There are several countries with monarchies as their primary form of government, including Germany, Japan, and Argentina. Germany's monarchy is considered a significant departure from its traditional monarchy during World War II, following the reunification of Germany and the establishment of the reunified Soviet Union. The monarchies of the countries are typically hereditary.\n",
+ "\n",
+ "On the other hand, the Netherlands has several monarchies as well, each with its own set of rights and freedoms. The Dutch monarchy is a constitutional monarchy, meaning it continues the concept of absolute monarchy to this day. The Netherlands has a parliamentary monarchy, where citizens form governments through the legislative process, which provides direct legal and political control over power and finances. It also has a constitutional monarchy, which means its citizens are constitutionally required to have one of the three heads of state on a day-to-day basis.\n",
+ "\n",
+ "It's important to note that monarchies can be mixed and matched, so\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 92%|█████████▏| 1200/1307 [14:19<01:16, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 1200 of 1307. Loss:0.9022232890129089.\n",
+ "\n",
+ "\n",
+ "Example output: What are the cheapest stocks to buy now.As an AI language model, I don't have real-time data on the prices of stock. Prices can fluctuate frequently and can sometimes fluctuate based on various factors such as economic conditions, supply and demand, investor sentiment, and geopolitical events. It is best to check with your financial advisor or stock market website to get the most current and up-to-date information on the stock market.\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|██████████| 1307/1307 [15:36<00:00, 1.39it/s]\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Average Training Loss: 0.9338708646259147.\n",
+ "\n",
+ "\n",
+ "Beginning epoch 4 of 5\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 31%|███ | 400/1307 [04:44<10:45, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 400 of 1307. Loss:0.8770862817764282.\n",
+ "\n",
+ "\n",
+ "Example output: What is the most invaded country in history?In history, there have been several countries that have invaded. These include:\n",
+ "\n",
+ "1. Axis Powers: Poland, Romania, Hungary, and Czechoslovakia, along with Germany, occupied Poland in the early 20th century. It eventually fell under Soviet control and underwent numerous military conflicts.\n",
+ "\n",
+ "2. Germany and France: Germany led the invasion of Poland in 1939, occupied Poland during World War II, and defeated French forces in 1943. However, in 1945, it was captured and annexed to France, which eventually became the United States.\n",
+ "\n",
+ "3. Japan: Japan was the third largest military power in the world by land invasion during World War II. It invaded Japan in 1945, and later intervened in the Korean War in 1953. The invasion lasted for nearly two years and left Japan under Japan's rule.\n",
+ "\n",
+ "4. North Macedonia: Macedonia, also known as Kosovo, was part of the Soviet Union from 1922 until it became\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 61%|██████ | 800/1307 [09:32<06:01, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 800 of 1307. Loss:0.8756999373435974.\n",
+ "\n",
+ "\n",
+ "Example output: What is the best budget-friendly vacation destination.There are many great budget-friendly vacation destinations around the world, and the best one may depend on your personal preferences and interests. Some popular budget-friendly destinations include:\n",
+ "\n",
+ "1. Paris, France: Known for its iconic landmarks like the Eiffel Tower, Louvre Museum, and Notre-Dame Cathedral.\n",
+ "\n",
+ "2. Rome, Italy: Famous for its ancient ruins like the Colosseum and Vatican City.\n",
+ "\n",
+ "3. Prague, Czech Republic: Known for its rich history, with its famous cobblestone streets, charming old towns, and numerous romantic villages.\n",
+ "\n",
+ "4. London, United Kingdom: Offers iconic landmarks like the Houses of Parliament, Buckingham Palace, and the iconic Big Ben.\n",
+ "\n",
+ "5. Sydney, Australia: Offers beautiful beaches, vibrant nightlife, a variety of restaurants, and a stunning coastline.\n",
+ "\n",
+ "Remember to consider your own budget and specific needs when choosing\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 92%|█████████▏| 1200/1307 [14:20<01:16, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 1200 of 1307. Loss:1.0208325386047363.\n",
+ "\n",
+ "\n",
+ "Example output: What is Airsoft?Airsoft refers to the types of firearms designed for recreational shooting. It typically uses the same mechanisms found in military or recreational firearms, including the M3 cartridge, AK-47, and chambering system. When you fire your first round, it is usually loaded by a full-automatic machine gun with a suppressor or an anti-lock mechanism. The firearm also includes a fully charged magazine and a safety mechanism designed to keep you on the right side of the field. Airsoft can vary greatly in size, weight, and performance depending on your region and the specific purpose. However, some common examples of popular airsoft firearms include the G5A1B Mark III and G9 series, as well as various variants like the A-Spec M16 and C-Spec M6.\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|██████████| 1307/1307 [15:38<00:00, 1.39it/s]\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Average Training Loss: 0.8775613936378286.\n",
+ "\n",
+ "\n",
+ "Beginning epoch 5 of 5\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 31%|███ | 400/1307 [04:44<10:45, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 400 of 1307. Loss:0.7202442288398743.\n",
+ "\n",
+ "\n",
+ "Example output: When is a good time to buy a car?Before deciding to buy a car, consider what you are looking to achieve with it. It can be helpful to take the time to plan ahead, gather all the necessary documents, and find a reputable dealership or service center that meets your needs. Additionally, buying a used car, as a second option, might be more beneficial.\n",
+ "\n",
+ "Remember, buying a car requires careful attention, attention to detail, and consideration of the overall purchase price and condition. It's important to be ready to accept any necessary repairs or replacements that may be needed before getting the car into a new car.\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 61%|██████ | 800/1307 [09:31<06:00, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 800 of 1307. Loss:0.8038188815116882.\n",
+ "\n",
+ "\n",
+ "Example output: How do I set up a Wi-Fi network.Setting up a Wi-Fi network can be a bit complex, but with the right steps, you can easily establish a wireless network and connect it to your existing Wi-Fi network. Here are the general steps to guide you:\n",
+ "\n",
+ "1. Connect your devices: Plug in your router to your modem or router, and make sure all the devices connected to your modem and router are connected. Make sure they have an appropriate network name (SSID).\n",
+ "\n",
+ "2. Connect the devices: If using your router's WAN, connect one end (connected device) to the other end (router device). This will cause the Wi-Fi network to connect to the new device.\n",
+ "\n",
+ "3. Access the network: Once the device is connected, you can access the network's settings menu. You can choose a username (SSID), password, or a combination of these.\n",
+ "\n",
+ "Remember, these steps provide the general\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 92%|█████████▏| 1200/1307 [14:19<01:16, 1.40it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Batch 1200 of 1307. Loss:0.8682234883308411.\n",
+ "\n",
+ "\n",
+ "Example output: Which of the following is a type of pasta: lasagna, sushi, or burrito?The following are a type of pasta and may not be a commonly known type of pasta: lasagna, sushi, burrito. The \"sandwich\" typically refers to a dish made from the ground beef or fish, and the cheese sauce used to make the sauce is usually made from cooked meat. This type of pasta is often used in traditional Mexican dishes or for dishes like tacos, pizza, or burgers.\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "100%|██████████| 1307/1307 [15:36<00:00, 1.40it/s]\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Average Training Loss: 0.8365039276365296.\n",
+ "\n",
+ "Training complete!\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "('/content/Aira-2-124M-2/tokenizer_config.json',\n",
+ " '/content/Aira-2-124M-2/special_tokens_map.json',\n",
+ " '/content/Aira-2-124M-2/vocab.json',\n",
+ " '/content/Aira-2-124M-2/merges.txt',\n",
+ " '/content/Aira-2-124M-2/added_tokens.json')"
+ ]
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "from codecarbon import EmissionsTracker\n",
+ "import tqdm\n",
+ "import os\n",
+ "\n",
+ "output_dir = f'/content/{project}'\n",
+ "\n",
+ "tracker = EmissionsTracker(\n",
+ " project_name=\"Aira_emissions\",\n",
+ " log_level=\"critical\",\n",
+ " output_dir=output_dir,\n",
+ " output_file=\"Aira_emissions.csv\",\n",
+ ")\n",
+ "\n",
+ "training_stats = []\n",
+ "\n",
+ "tracker.start()\n",
+ "for epoch_i in range(0, epochs):\n",
+ "\n",
+ " print(f'\\nBeginning epoch {epoch_i + 1} of {epochs}\\n')\n",
+ "\n",
+ " total_train_loss = 0\n",
+ "\n",
+ " model.train()\n",
+ "\n",
+ " for step, batch in enumerate(tqdm.tqdm(dataloader)):\n",
+ "\n",
+ " b_input_ids = batch[0].to(device)\n",
+ " b_labels = batch[0].to(device)\n",
+ " b_masks = batch[1].to(device)\n",
+ "\n",
+ " model.zero_grad()\n",
+ "\n",
+ " outputs = model(b_input_ids,\n",
+ " labels=b_labels,\n",
+ " attention_mask = b_masks)\n",
+ "\n",
+ " loss = outputs[0]\n",
+ "\n",
+ " batch_loss = loss.item()\n",
+ " total_train_loss += batch_loss\n",
+ "\n",
+ " if step % sample_every == 0 and not step == 0:\n",
+ "\n",
+ " print(f'\\nBatch {step} of {len(dataloader)}. Loss:{batch_loss}.\\n')\n",
+ "\n",
+ " model.eval()\n",
+ "\n",
+ " inputs = tokenizer(tokenizer.bos_token + df.prompt.sample().iloc[0] + tokenizer.eos_token, return_tensors=\"pt\").to(device)\n",
+ "\n",
+ " sample_outputs = model.generate(**inputs,\n",
+ " bos_token_id=tokenizer.bos_token_id,\n",
+ " pad_token_id=tokenizer.pad_token_id,\n",
+ " eos_token_id=tokenizer.eos_token_id,\n",
+ " do_sample=True,\n",
+ " top_k=50,\n",
+ " max_length = 200,\n",
+ " top_p=0.95,\n",
+ " num_return_sequences=1)\n",
+ "\n",
+ " for i, sample_output in enumerate(sample_outputs):\n",
+ " print(f'\\nExample output: {tokenizer.decode(sample_output, skip_special_tokens=True)}\\n')\n",
+ "\n",
+ " model.train()\n",
+ "\n",
+ " loss.backward()\n",
+ "\n",
+ " optimizer.step()\n",
+ "\n",
+ " scheduler.step()\n",
+ "\n",
+ " avg_train_loss = total_train_loss / len(dataloader)\n",
+ "\n",
+ "\n",
+ " print(f'\\nAverage Training Loss: {avg_train_loss}.\\n')\n",
+ "\n",
+ "\n",
+ " training_stats.append(\n",
+ " {\n",
+ " 'epoch': epoch_i + 1,\n",
+ " 'Training Loss': avg_train_loss,\n",
+ " }\n",
+ " )\n",
+ "\n",
+ "tracker.stop()\n",
+ "print(\"Training complete!\")\n",
+ "\n",
+ "df_stats = pd.DataFrame(data=training_stats)\n",
+ "df_stats = df_stats.set_index('epoch')\n",
+ "df_stats.to_parquet(f\"{output_dir}/training_stats.parquet\", compression=\"gzip\")\n",
+ "\n",
+ "rng_state = torch.get_rng_state()\n",
+ "torch.save(rng_state, f\"{output_dir}/rng_state.pt\")\n",
+ "torch.save(scheduler.state_dict(), f\"{output_dir}/scheduler.pt\")\n",
+ "torch.save(optimizer.state_dict(), f\"{output_dir}/optimizer.pt\")\n",
+ "\n",
+ "model_to_save = model.module if hasattr(model, 'module') else model\n",
+ "model_to_save.save_pretrained(output_dir)\n",
+ "model_to_save.save_pretrained(output_dir, safe_serialization=True)\n",
+ "tokenizer.save_pretrained(output_dir)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "h48iOsqie8rx"
+ },
+ "source": [
+ "13. Check the training stats and plot the learning curves."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 464
+ },
+ "id": "J1-hAY9Av4gT",
+ "outputId": "50b8fd2b-1780-4b25-fe0a-dbd7d4a74013"
+ },
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAABAUAAAI/CAYAAAAPyGCFAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/bCgiHAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB9Q0lEQVR4nOzdeXxU9b3/8feZJZNlskIS9h0SQJBFRXGhRVCoWtEiXurGtYi3Wlur3npt3bWl915/9VZbq60LSMW17sgiIIgIiAgiS9gJJJCN7Nvsvz8CIyEBAkxyMjOv5+ORR8g5Z875jPAV8s73+/kagUAgIAAAAAAAEHUsZhcAAAAAAADMQSgAAAAAAECUIhQAAAAAACBKEQoAAAAAABClCAUAAAAAAIhShAIAAAAAAEQpQgEAAAAAAKIUoQAAAAAAAFGKUAAAAAAAgChFKAAAQBRas2aNsrKylJWVFfJ7v/vuu8rKytLYsWNDfm8AABBaNrMLAAAgUp3JN9wzZ87UtddeG8Jq0BLPPvus/vKXv0iStm3bZnI1AAC0PkIBAABaSceOHZs9Xltbq9ra2hNeExsb22p1SVJcXJx69+7dKvdOTExU7969lZmZ2Sr3BwAAoWMEAoGA2UUAABBN+Gl0+8XvDQAg2tBTAAAAAACAKMXyAQAA2pkjvQheffVV9evXT3//+9+1bNkyFRQUqL6+PvgT7Lq6Oi1ZskSff/65tm3bpsLCQlVXVyslJUVDhw7V9ddfrzFjxjT7jDVr1ujmm2+W1PQn4u+++64eeOABde3aVUuXLtWmTZv0j3/8Q+vWrVN5ebkyMzM1btw43XHHHUpOTm5y72Nff7QjP4k/77zzNGfOHK1atUqvvPKKNm7cqJqaGnXr1k1XXHGFbrvtNjkcjuP+N1q8eLFeffVVbdmyRT6fT927d9dVV12ladOm6fnnn2/0jLZSVVWl2bNna8mSJcrNzZXX61WnTp10wQUXaPr06erevXuzr6uvr9drr72mRYsWaffu3aqtrVViYqLS0tI0ZMgQjR07Vpdffnmj13i9Xv3rX//Sxx9/rO3bt6u6ulpOp1MpKSkaOHCgLrzwQl133XVt8bYBAGGOUAAAgHZq3759uueee1RSUiKHwyGbrfFf2/Pnz9cDDzwgSTIMQ06nUzabTcXFxVqyZImWLFmiW2+9Vffff/9p1/DRRx/pgQcekMfjUWJionw+n/Ly8jRr1iytXLlSb775phISEk7r3i+++KKeeuopSQ19CDwej3bv3q1nn31WX331lV555RVZrdYmr/vv//5vvfzyy8Gvk5KStGvXLj311FNavny5Ro4ceXpv9gzs2LFD06dPV0FBgSQFf79yc3OVm5urd999V0899VSTb+6rq6t1ww03KCcnR1LD72NiYqKqqqpUVlamXbt2ae3atY1e5/P5NGPGDK1cuTJ4LDExUbW1tSovL9fevXs1f/58QgEAQIsQCgAA0E794Q9/UGZmpp566imNGjVKFotFe/bsCZ5PSkrSrbfeqnHjxmnQoEGKi4uTJBUVFemtt97S888/r5dfflnnnHOOLr300lN+fmlpqX77299q0qRJuvPOO9W5c2fV1dXp3Xff1cyZM7Vjxw69+OKL+tWvfnXK987JydHXX3+tGTNmaNq0aUpLS1N1dbVefvll/fWvf9WaNWv03nvvafLkyY1eN2/evGAgcOWVV+o3v/mNMjMz5XK59MEHH+jJJ5/U9u3bT7meM1FdXa3/+I//UEFBgTIzM/XEE0/o4osvlsViUU5Ojh555BFt2LBB9913n3r27Kns7Ozga1999VXl5OQoJSVFTzzxhH7wgx8oJiZGfr9fxcXFWrVqldatW9foeR9//LFWrlwph8Ohhx56SD/60Y+UkJCgQCCg0tJSffPNN/roo4/a9L8BACB80VMAAIB2ymKxaNasWbrgggtksTT8lX30jgHjxo3T/fffr5EjRwYDAUnKyMjQL37xC/3617+WpNOeQl9XV6crrrhCTz75pDp37iypYdeCG264QTfeeKOkhm/ST0dlZaXuuOMO3XPPPUpLS5MkOZ1O/fKXv9Rll13W7L0DgYD+/Oc/S5IuvPBCPfXUU8EdDhwOh6ZMmaJHH31UFRUVp1XT6Zo7d67y8vJkt9v14osvasyYMcHfr+zsbL300kvq2rWr3G63nn766UavXb9+vSTp1ltv1WWXXaaYmBhJDb/3mZmZmjRpkp544olmXzNp0iRdd911wZkahmGoQ4cOGj9+vJ555plWfc8AgMhBKAAAQDt19dVXq1OnTqf9+h/84AeSpA0bNsjn853WPX7+8583e/zIzIPc3FzV1dWd8n1jYmJ06623nvDex/Y62Lp1q3JzcyVJt99+uwzDaPLaa665Rl26dDnl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/vznP+s///M/TawUCA833HCDevfurWHDhslutwePb9u2Tffdd5+2b9+ue++9V/PmzTOxSiD8PP300zpw4IAuvfRSLVmyxOxygLB0ySWX6I9//KPZZYQcoUAUmzx5siZPnhz8urCw0MRqgPA0dOhQLViwoNE3L0dMmjRJBQUFevrpp/XOO+/o3nvvlcVCKxfgRKZMmdLs8aysLP3+97/Xddddp507d2rXrl3q27dvG1cHhKcNGzbotdde06WXXqpx48YRCgBohH+dAsAZcDqdzQYCR1xyySWSpPLycpWWlrZVWUBE6tOnT/DXdXV1JlYChA+Px6OHHnpIsbGxevjhh80uB0A7xEwBAGhF9fX1wV/HxsaaWAkQ/tatWydJio+PV+/evU2uBggPL7zwgrZv364HHnhAnTp1MrscIKzl5OTo3nvvVXFxsRISEpSVlaUrrrhC/fv3N7u0M0IoAACt6Mi65+zsbDmdTpOrAcKP3+8P7pbz1FNPSZLuu+8+JSQkmFwZ0P7t2rVLL7zwggYPHqybbrrJ7HKAsLd161Zt3bo1+PXSpUv1/PPP6+abb9b9998vq9VqYnWnj1AAAFrJpk2b9MYbb0hScAsoAC0za9asJjvkDB06VH/84x+Dy3IAHF8gENCDDz4or9erxx57LGy/WQHag4yMDP3yl7/UxRdfrG7dusnpdGrPnj2aO3eu3njjDc2ePVs2m02/+c1vzC71tBAKAEArKCkp0V133SWv16vx48friiuuMLskIKxkZmZqxIgR8vl8OnDggEpKSrR161Z98MEHGjZsmJKSkswuEWjX5s6dq2+++UY33XSThgwZYnY5QFi7/vrrmxzLysrSY489pm7duumpp57S7Nmz9dOf/lTdunUzocIzQ6NBAAixqqoq3XbbbTpw4IAGDx4ckVvXAK1t4sSJev311/XWW2/piy++0Pvvv6+zzz5bH3/8sW6++Wb5fD6zSwTarcLCQv3pT39SZmam7r77brPLASLarbfeqoyMDHm9Xi1dutTsck4LoQAAhFBNTY2mT5+uLVu2qH///nrppZfoJQCEQHZ2tl544QWlpqZq69atwX4dAJp64oknVF1drQcffJC/g4BWZrVadfbZZ0uScnNzTa7m9LB8AABCpK6uTrfffrs2bNigXr166ZVXXlFqaqrZZQERw+l06rzzztPChQu1efNm/fjHPza7JKBd2rJliyTpscce02OPPdbo3JFdcQ4ePKgLL7xQkvTss89qxIgRbVskEEGObE/t9XpNruT0EAoAQAi4XC79/Oc/19q1a9W1a1fNmjVL6enpZpcFRJwj/+Bi+QBwciUlJcc95/f7g+c9Hk9blQREpB07dkhS2G77SSgAAGfI4/Horrvu0qpVq5SZmanZs2erc+fOZpcFRJzy8nJ99dVXkqSBAweaXA3Qfp1oXfO7776rBx54QF27dg3b9c9Ae7Js2bJgKHBk9k24oacAAJwBn8+ne++9V8uXL1d6erpmz56t7t27m10WEJa++uorPffcc8rLy2tybvPmzfrZz36mqqoqZWZmasKECSZUCACINjt27NDDDz+snJycRsf9fr8+/vhj3XvvvZKkH/7whxo6dKgZJZ4xZgpEsYMHD2rSpEnBr91utyTpm2++0ahRo4LHp0+frttuu62tywPCwvz587Vw4UJJUkxMjH77298e99qHHnpIgwYNaqvSgLBTWVmpP//5z/rzn/+s9PR0ZWRkyGq16uDBgyouLpbUsFXhCy+8oISEBJOrBQBEA6/XqzfffFNvvvmmUlJS1KVLF1mtVu3bt08VFRWSpHPOOUf/8z//Y3Klp49QIIr5fD6Vl5c3Oe71ehsdP9KQBkBTR8I0ScrPz1d+fv5xr62qqmqLkoCwNXz4cD3wwANas2aNdu7cqb1798rtdispKUmjRo3S2LFjNXnyZLqpAwDaTNeuXXX33Xdrw4YN2rVrl3Jzc+V2u5WcnKxLLrlEV155pa688kpZrVazSz1tRiAQCJhdBAAAAAAAaHv0FAAAAAAAIEoRCgAAAAAAEKUIBQAAAAAAiFKEAgAAAAAARClCAQAAAAAAohShAAAAAAAAUYpQAAAAAACAKEUoAAAAAABAlCIUAAAAAAAgShEKAACAqJaVlaWsrCytWbPG7FIAAGhzNrMLAAAA7cuzzz6rv/zlLy2+ftu2ba1YDQAAaE2EAgAA4Lg6duxodgkAAKAVEQoAAIDjWrlypdklAACAVkRPAQAAAAAAohQzBQAAQMiMHTtW+fn5mjlzpi677DK98MILWrRokQ4ePKi4uDiNHDlSt99+u84+++zj3sPn8+m9997Thx9+qG3btqmmpkapqakaPny4brjhBo0aNeqENRw8eFBz5szRypUrlZeXJ4/Ho4yMDPXv31+XX365Jk6cKIfD0exrq6ur9Y9//EMLFy7UgQMHFBcXp2HDhumOO+44Yc0AAIQrQgEAABBylZWVmjx5svbs2SO73S6Hw6Hy8nItWbJEn332mZ544glNnjy5yeuqqqp0xx136KuvvpIkWa1WJSQkqLi4WAsXLtTChQt166236v7772/2ue+//74efvhhuVwuSZLdbldCQoIOHjyo/fv3a+nSpcrKytLAgQObvLa4uFjXXnutcnNz5XA4ZLFYVF5ermXLlmnlypV6/vnnddFFF4XwvxIAAOZj+QAAAAi5v/zlLyotLdX//d//acOGDVq3bp0++eQTnXfeefL7/XrkkUe0efPmJq/73e9+p6+++kp2u10PPvig1q1bp7Vr12rFihX6yU9+Ikl6+eWX9frrrzd57bJly/Rf//VfcrlcGjFihF577TVt3LhRa9as0fr16/Xaa69pypQpstvtzdb8+OOPy263a/bs2dqwYYPWr1+vt99+W71795bH49HDDz8sv98f2v9QAACYzAgEAgGziwAAAO3H0VsSnmz3gYkTJ+rBBx8Mfn1k+YAkzZo1SxdccEGj6+vr63X11Vdr7969GjNmjP7+978Hz3377beaMmWKpIZv0K+//vomz/vlL3+phQsXKjU1VcuXLw8uA/B6vbr88suVl5enkSNHatasWYqJiWnR+83KypIkpaWl6eOPP1aHDh0and+2bZt+/OMfS5Lmzp2rkSNHtui+AACEA2YKAACA4yopKTnhR3V1dbOvGzFiRJNAQJJiY2P1s5/9TJK0YsUKVVVVBc998sknkqROnTrpuuuua/a+v/rVryRJZWVljXZGWLNmjfLy8iRJDzzwQIsDgaNNmTKlSSAgNYQG3bp1k9QQEAAAEEnoKQAAAI7rdL8JPv/88096zu/3a/PmzcGvN23aJEkaNWqULJbmf27Rt29fZWZmqrCwUJs2bdLYsWMlSevXr5ckpaena8iQIadV84kaCWZkZCgvL08VFRWndW8AANorZgoAAICQy8zMbNG50tLS4K8PHTp00tdKDTMJjr5eamgSKEldunQ59WIPS0hIOO45m63h5yher/e07w8AQHtEKAAAAMKeYRhmlwAAQFgiFAAAACFXWFjYonNpaWnBXx9Zz19QUHDCex85f/T6/yMNEQ8cOHDqxQIAEMUIBQAAQMitWbPmpOcsFosGDRoUPH7WWWcFzx9v679du3YFQ4WjeweMGDFCUsMygu++++7MigcAIIoQCgAAgJBbt25ds8GAy+XSyy+/LEm66KKLlJSUFDx3xRVXSGqYSfD22283e99nnnlGkpSamqrRo0cHj48aNUrdu3eXJM2cOVNutzs0bwQAgAhHKAAAAEIuMTFRv/zlL7VgwYJgc75du3ZpxowZ2r17t6xWq375y182es3QoUN1+eWXS5KeeOIJ/fOf/1RdXZ2khhkADz74oBYsWCCpYWtCh8MRfK3VatVDDz0kwzC07v+3d4cukQUBHMd/V1ZQFIPJKthXBINBMJjFtmxZNFgEy1ZBEFm7ySYmgyBWu2HF/QOErWoRBBVBDWs4tKh4x3Ec53w+8THvMW/il2Gm00mj0cjZ2dnbjoOnp6e02+00m810u92//v8A8L9wJSEA8Knp6ekvx2xvb79t33+1srKS/f39rK6uplKppK+vL3d3d0l+Hgq4vr7+4dWBm5ububm5yenpaTY2NtJqtTIwMJDb29v0er0kyeLiYmq12rt3Z2ZmsrW1lbW1tXQ6ndTr9VQqlfT39+f+/v4tTiwtLf32OgDAdyUKAACfur6+/nLM8/Pzu2dDQ0M5ODjIzs5Ojo+Pc3V1leHh4VSr1SwvL6darX74rcHBwezu7ubw8DBHR0c5Pz/Pw8NDRkZGMjExkXq9nqmpqU/nMj8/n8nJyezt7eXk5CSXl5d5fHzM6OhoxsfHMzc3l7GxsV9fAAD45n70XrM7AMAfmp2dzcXFRVqtVhYWFv71dACALzhTAAAAAAolCgAAAEChRAEAAAAolCgAAAAAhXLQIAAAABTKTgEAAAAolCgAAAAAhRIFAAAAoFCiAAAAABRKFAAAAIBCiQIAAABQKFEAAAAACiUKAAAAQKFEAQAAACjUCwjIyLLgkfHmAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "import pandas as pd\n",
+ "import seaborn as sns\n",
+ "import matplotlib.pyplot as plt\n",
+ "\n",
+ "df_stats = pd.read_parquet(f\"{output_dir}/training_stats.parquet\")\n",
+ "\n",
+ "sns.set(style='darkgrid')\n",
+ "\n",
+ "sns.set(font_scale=1.5)\n",
+ "plt.rcParams[\"figure.figsize\"] = (12,6)\n",
+ "\n",
+ "plt.plot(df_stats['Training Loss'], 'b-o', label=\"Training\")\n",
+ "\n",
+ "plt.title(\"Training Loss\")\n",
+ "plt.xlabel(\"Epoch\")\n",
+ "plt.ylabel(\"Loss\")\n",
+ "plt.legend()\n",
+ "plt.xticks([1, 2, 3, 4, 5])\n",
+ "\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "dXX4z7Wqe8ry"
+ },
+ "source": [
+ "13. Load and test the model."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "pNmXZV8WpxyA",
+ "outputId": "e941f0fb-164a-425a-ae33-beb57bb32036"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Question: 👤 How can I cook a lasagna?\n",
+ "\n",
+ "Response 1: 🤖 Cooking a lasagna can be a delicious and satisfying meal. Here's a basic recipe to get you started:\n",
+ "\n",
+ "Ingredients:\n",
+ "- Lasagna noodles\n",
+ "- Ground meat (such as beef, pork, or chicken)\n",
+ "- Onion, minced\n",
+ "- Garlic, minced\n",
+ "- Tomato sauce\n",
+ "- Ricotta cheese\n",
+ "- Mozzarella cheese\n",
+ "- Parmesan cheese\n",
+ "- Ricotta cheese\n",
+ "- Ricotta sauce\n",
+ "- Ricotta cheese\n",
+ "- Mozzarella cheese\n",
+ "- Parmesan cheese\n",
+ "- Mozzarella cheese\n",
+ "- Parmesan cheese\n",
+ "- Mozzarella cheese\n",
+ "\n",
+ "Instructions:\n",
+ "1. Preheat your oven to 375°F (190°C).\n",
+ "2. Cook the lasagna noodles according to the package instructions. Drain and set aside.\n",
+ "3. In a large skillet, heat the olive oil over medium heat. Add the chopped onion and minced garlic, and sauté until they become translucent.\n",
+ "4. Add the chopped tomato sauce and mozzarella cheese, and cook until the cheese melts and the sauce becomes smooth.\n",
+ "5. Add the ricotta cheese, Parmesan cheese, and mozzarella cheese to the skillet. Stir well to combine.\n",
+ "6. Pour the sauce over the cooked lasagna noodles, ensuring they are evenly coated.\n",
+ "7. Cook for about 20-25 minutes, or until the cheese is melted and the sauce is heated through.\n",
+ "8. Remove from heat and serve immediately.\n",
+ "\n",
+ "Feel free to customize this recipe by adding your favorite vegetables, herbs, or spices. Enjoy your homemade lasagna!\n",
+ "Response 2: 🤖 Cooking a lasagna can be a delicious and satisfying meal. Here's a basic recipe to get you started:\n",
+ "\n",
+ "Ingredients:\n",
+ "- Lasagna noodles\n",
+ "- Ground meat (such as beef, pork, or chicken)\n",
+ "- Onion, minced\n",
+ "- Garlic, minced\n",
+ "- Tomato sauce\n",
+ "- Ricotta cheese\n",
+ "- Mozzarella cheese\n",
+ "- Parmesan cheese\n",
+ "- Ricotta cheese\n",
+ "- Ricotta sauce\n",
+ "- Ricotta cheese\n",
+ "- Mozzarella cheese\n",
+ "- Parmesan cheese\n",
+ "- Mozzarella cheese\n",
+ "- Parmesan cheese\n",
+ "- Mozzarella cheese\n",
+ "\n",
+ "Instructions:\n",
+ "1. Preheat your oven to 375°F (190°C).\n",
+ "2. Cook the lasagna noodles according to the package instructions. Drain and set aside.\n",
+ "3. In a large skillet, heat the olive oil over medium heat. Add the chopped onion and minced garlic, and sauté until they become translucent.\n",
+ "4. Add the chopped tomato sauce and mozzarella cheese, and cook until the cheese melts and the sauce becomes smooth.\n",
+ "5. Add the ricotta cheese, Parmesan cheese, and mozzarella cheese to the skillet. Stir well to combine.\n",
+ "6. Pour the sauce over the cooked lasagna noodles, ensuring they are evenly coated.\n",
+ "7. Cook for about 20-25 minutes, or until the cheese is melted and the sauce is heated through.\n",
+ "8. Remove from heat and serve immediately.\n",
+ "\n",
+ "Feel free to customize this recipe by adding your favorite vegetables, herbs, or spices. Enjoy your homemade lasagna!\n"
+ ]
+ }
+ ],
+ "source": [
+ "from transformers import AutoModelForCausalLM, AutoTokenizer\n",
+ "import torch\n",
+ "\n",
+ "device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n",
+ "\n",
+ "tokenizer = AutoTokenizer.from_pretrained(\"nicholasKluge/Aira-2-124M\")\n",
+ "aira = AutoModelForCausalLM.from_pretrained(\"nicholasKluge/Aira-2-124M\")\n",
+ "\n",
+ "aira.eval()\n",
+ "aira.to(device)\n",
+ "\n",
+ "question = input(\"Enter your question: \")\n",
+ "\n",
+ "inputs = tokenizer(tokenizer.bos_token + question + tokenizer.sep_token, return_tensors=\"pt\").to(device)\n",
+ "\n",
+ "responses = aira.generate(**inputs,\n",
+ " bos_token_id=tokenizer.bos_token_id,\n",
+ " pad_token_id=tokenizer.pad_token_id,\n",
+ " eos_token_id=tokenizer.eos_token_id,\n",
+ " do_sample=True,\n",
+ " top_k=20,\n",
+ " max_length=530,\n",
+ " top_p=0.20,\n",
+ " temperature=0.2,\n",
+ " num_return_sequences=2)\n",
+ "\n",
+ "print(f\"Question: 👤 {question}\\n\")\n",
+ "\n",
+ "for i, response in enumerate(responses):\n",
+ " print(f'Response {i+1}: 🤖 {tokenizer.decode(response, skip_special_tokens=True).replace(question, \"\")}')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "cJXlHi2oe8rz"
+ },
+ "source": [
+ "Done! 🤗"
+ ]
+ }
+ ],
+ "metadata": {
+ "accelerator": "GPU",
+ "colab": {
+ "gpuType": "A100",
+ "machine_shape": "hm",
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3",
+ "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.9.13"
+ },
+ "widgets": {
+ "application/vnd.jupyter.widget-state+json": {
+ "00898e38b7c54932b26f4521a157c25f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "02e12351a5c94c719910ed39aa9e3991": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "038b0f9499b54449b4cdbf2ee887d0d7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "0460da6d0ff2461e8ad95c1ce409e10f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_eca1fd1c238f42ab96ce506b77a01754",
+ "placeholder": "",
+ "style": "IPY_MODEL_634c44e8a0494987b5e6fa2f1146a0a1",
+ "value": " 631/631 [00:00<00:00, 54.6kB/s]"
+ }
+ },
+ "07db65fdb5fd4fe5b39467cf132a87b8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_76e85f12dd8a4e559c68ea6cd365de40",
+ "IPY_MODEL_ba5194369be24ef7910e451ccf9b826a",
+ "IPY_MODEL_cb60e775e8ba497098551404b210a08b"
+ ],
+ "layout": "IPY_MODEL_858008ac568e41abb33a1633fba03c6c"
+ }
+ },
+ "098b124e49a54a7f88c6f6ee6cd84e9e": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "09c94c45ae874084bd13d158b2e133e6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "0a21aa791ae04534969b2223fe743f08": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "0a30fbd9983246818d54c9ac71dd2c62": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "0bc9cfb678814b1fb21a2c830a425dcd": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_358124c3c0e6446eb01dd470cce09def",
+ "placeholder": "",
+ "style": "IPY_MODEL_5cc7fca7de824815af98539c9ec2e002",
+ "value": " 26.7M/26.7M [00:01<00:00, 22.0MB/s]"
+ }
+ },
+ "0d0acc5681b04daa94d10227de6de0b3": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "0d1e9bbb94d74e719f54794165ecc9c5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "0d997ef6a2e149839b23cd1d5a92e1f9": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_09c94c45ae874084bd13d158b2e133e6",
+ "max": 26705868,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_0d1e9bbb94d74e719f54794165ecc9c5",
+ "value": 26705868
+ }
+ },
+ "0ec81c59166b42f18dba09e7827c1aac": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_151f18f724d540418b930c08f2e06339",
+ "IPY_MODEL_708155382c9345f5b8687bcb8d846cd4",
+ "IPY_MODEL_d1cabf5091ca4e3798d9036d5cf28a7e"
+ ],
+ "layout": "IPY_MODEL_64f286f179c647c5b3c1e60a5d98d503"
+ }
+ },
+ "0ee0d8d8d77c4965b8d1e5410b0a6b0b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "0f33671933bb4e05af3f19a2b93782a7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_1743033a841b4f60a2966104928303a7",
+ "placeholder": "",
+ "style": "IPY_MODEL_979e63a89deb493f976f388f75a9b363",
+ "value": " 2.35k/2.35k [00:00<00:00, 8.16kB/s]"
+ }
+ },
+ "10d8589e6f6f499c8bed7035ed4939a9": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2234942bf1e64e0aa6673be7af79b0ef",
+ "max": 999186,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_02e12351a5c94c719910ed39aa9e3991",
+ "value": 999186
+ }
+ },
+ "111ad9dc9e7842169f64d2973c6c26fb": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "113a01e053014cf792efd65ab26d5ebf": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1215352bd025498d9892bc5a42ffe532": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "137f1f40d15a4fd891915045ebc5f7e7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_4d8eddd3dfe44677a600acbb4cbe7d97",
+ "max": 1042301,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_56e346bf20a043fd9126ff0f747c38c9",
+ "value": 1042301
+ }
+ },
+ "151f18f724d540418b930c08f2e06339": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_a591c2c678eb40aaa9ddaaada15d81a5",
+ "placeholder": "",
+ "style": "IPY_MODEL_ebb6bdc13f884f56863509bca6af1484",
+ "value": "Downloading (…)neration_config.json: 100%"
+ }
+ },
+ "156d6c4076b94f43a34a7971a7ff2236": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "15a2af850ff547bd8ac38167622532b8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_72054151bb4f47e5bd45ce354a25492f",
+ "max": 2,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_6031435804f148748614da693ac8eb49",
+ "value": 2
+ }
+ },
+ "1649089916d34311b3ec7dc7813ecbba": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1743033a841b4f60a2966104928303a7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "178e4a6cc5f14f9ebe905688906a05af": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "17ba80791a05478c84810b9beacc0bca": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_f4bcf975ea284cf7a074c3005e85979d",
+ "max": 665,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_76c752f0910248a9a7fa89efa0852f4f",
+ "value": 665
+ }
+ },
+ "17ba8102ecd742ec9eb7d4713b87150d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_543d40a7e01b4e9d9bc4de98b3af0a78",
+ "max": 5809,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_86681e1400004b9ea3033d1ab526dbd0",
+ "value": 5809
+ }
+ },
+ "17babc6aa8c64c05826ca518702d20c5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_5019cd005793458a9d1ddcfd8275d141",
+ "placeholder": "",
+ "style": "IPY_MODEL_d61b20a8d758417ea9308d46f912696c",
+ "value": "Generating english split: 100%"
+ }
+ },
+ "17d2736e6b9b4c6abd57d7940c67631f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1b0579b3576543c79aa62c1d75a73bd4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "1c3352dd627f4629bba570d075424021": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "1d1a404c9a4940ff88ac99f0d6c52288": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1d583213933b461492d1b078496c11c3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_f7391b34016f4914acf02fa754cec9a7",
+ "placeholder": "",
+ "style": "IPY_MODEL_9e2766960e6e48129fe23ed29855e46a",
+ "value": "Downloading data: 100%"
+ }
+ },
+ "1e3aa594f0ae4ca08fb5812701b313c0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1fe02dd9187740fa9ef0d0d13856bb09": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "1ff71a37948848828d3bb1faa3347c17": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_4e992f73d7ad4a3bbceb2ba182afa8f3",
+ "IPY_MODEL_a1fb59e683ae4e7dad96e0ea7369b66d",
+ "IPY_MODEL_78cbe7d5645b4e70b1524a96613a9917"
+ ],
+ "layout": "IPY_MODEL_7eeb8921797d483099bfd29ac1a3fa5c"
+ }
+ },
+ "2031306aed464edd84424768aedc4e76": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_9a3aae24623e49bf91b2bdc33127e7e1",
+ "IPY_MODEL_10d8589e6f6f499c8bed7035ed4939a9",
+ "IPY_MODEL_95abff26dd7a4ee69d3d377693d9416d"
+ ],
+ "layout": "IPY_MODEL_d0755fbb815c4914a2cd1a0cca8afda2"
+ }
+ },
+ "20974dc2e16c494cbb52e9f094ec2157": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "21d16450dff447b69dbb0550709608e3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_635f44e3d00f416cb544936c257b2639",
+ "IPY_MODEL_dde7bb94efc34a8ea150b16ceffe5d14",
+ "IPY_MODEL_96e96bdac8ab451988182b50967197ae"
+ ],
+ "layout": "IPY_MODEL_f7f1518967664108b27ca857279f2f97"
+ }
+ },
+ "2234942bf1e64e0aa6673be7af79b0ef": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "231ba7820ed3459fb4b47a346180d3be": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "23964ccc394542548e66a92c1918a0d6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2407ee137c13497089bd0194a843c8c8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_0ee0d8d8d77c4965b8d1e5410b0a6b0b",
+ "placeholder": "",
+ "style": "IPY_MODEL_7323831e20234d2aacbd26f2c11a0428",
+ "value": "model.safetensors: 100%"
+ }
+ },
+ "2443dde12b35409fbe7672e4db430967": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "24ba2f4066bf4296a0831f3e3c1c9951": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_dfd541e41e3742989862d6d4410db8e7",
+ "placeholder": "",
+ "style": "IPY_MODEL_7d50afc9a60641f9b6566cc78fcabde4",
+ "value": " 2/2 [00:00<00:00, 89.55it/s]"
+ }
+ },
+ "25d28c439989494189b45d80377bafee": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "25ef6ec0dbe143648da326687808647c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "25ffa62a709247f7a6d5b983b1edb76e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "26038d94169e4b2b991d713a6533b83b": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "260711e88b0d44fea99e7d16a093e32f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "28e0c7f64c7846b3b01807a0bc823fe2": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_17babc6aa8c64c05826ca518702d20c5",
+ "IPY_MODEL_e7acfaa28f6b4992a3e0e8709229505f",
+ "IPY_MODEL_d78a794c2fe8418898d328b8508738d4"
+ ],
+ "layout": "IPY_MODEL_3f47f94d203146f4a7b12c59e62b18c7"
+ }
+ },
+ "2912a20819a547c7b1234f90eb347c10": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8317d5521e544d2e8ad592a6c903e7d7",
+ "max": 41815,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_e0e34a00222e47ddbc1a17b37e90baa1",
+ "value": 41815
+ }
+ },
+ "2a6897d23fe24d5b9fa0ba891a6ac2ff": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2ad8e2b98fb544d1ac15a723231117ff": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2d7fd8cb6dbf4360b36e3d31fedf7bc1": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2d8fe959fd7d4d8a9b1044878540f16b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2e59b545177a489785a93b3eaafd3de5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_156d6c4076b94f43a34a7971a7ff2236",
+ "placeholder": "",
+ "style": "IPY_MODEL_178e4a6cc5f14f9ebe905688906a05af",
+ "value": " 907/907 [00:00<00:00, 87.4kB/s]"
+ }
+ },
+ "2e8ffc9187344f9d84ed03c6ecf57075": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "2ecedb4da1b040e596cb593b3eca32e2": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "3027eeda5b644f52a226e85faac2ea94": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_6510591d0c2846999775889fdcdd2053",
+ "placeholder": "",
+ "style": "IPY_MODEL_cf488e9687254cdba11fe362280d8f76",
+ "value": " 563/563 [00:00<00:00, 1.84kB/s]"
+ }
+ },
+ "32706da76a2e48d193611f195ccc93b9": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "348e2a3c8feb4c598cbea0845a4df93f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_ac554ea6c1064ecf9438da3e3ed31330",
+ "IPY_MODEL_97deca67baf4415ab983b97ecc962f04",
+ "IPY_MODEL_560c58d5de7d457b955269962cce8e34"
+ ],
+ "layout": "IPY_MODEL_d99a051acc7243da8ae30ababc83a3f2"
+ }
+ },
+ "358124c3c0e6446eb01dd470cce09def": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "35bbb2d275234087b333db673b44d335": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_36012faebbbf4123b27db6678a2aa7f6",
+ "placeholder": "",
+ "style": "IPY_MODEL_b901163cf07248ca8a821f8d7893829a",
+ "value": "Extracting data files: 100%"
+ }
+ },
+ "36012faebbbf4123b27db6678a2aa7f6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "36b557461f694c59bfd9d7cb945f3ae4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_17d2736e6b9b4c6abd57d7940c67631f",
+ "placeholder": "",
+ "style": "IPY_MODEL_dc87528dda9545ebbbafc38a3e2e9643",
+ "value": "rng_state.pt: 100%"
+ }
+ },
+ "37a668ecbf14481f9e30d6ce6357520b": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "3856b43ac92649f8ad0d61c2cace6980": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "385fa8795a124ff780ed119b518a5b87": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "395f7929839d493c811278eefae2ccc9": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "3a28c92357dd4d1ea7efc8793c8b5b9c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d0eceb76e1e14550bf6b8be9729e6a71",
+ "placeholder": "",
+ "style": "IPY_MODEL_f694925e4bc343f598994f5b2a904903",
+ "value": "Downloading (…)okenizer_config.json: 100%"
+ }
+ },
+ "3a88fc8c57474427ad1d81e4f8699530": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_d059bb6a1ebb46beb15b23e47a43a793",
+ "IPY_MODEL_958c2a18b92444d48923f7a6222c5e69",
+ "IPY_MODEL_0460da6d0ff2461e8ad95c1ce409e10f"
+ ],
+ "layout": "IPY_MODEL_a8a03d2900f9440fbfb63437e6f443d0"
+ }
+ },
+ "3bd6feade68146dcbad2d207f0aa3613": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "3be179deb8b24107a856822053931f21": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_f10edab6c2bb47e3982f5b3282b1479a",
+ "IPY_MODEL_7d81f74d3362486fa048962b7a8ad6a2",
+ "IPY_MODEL_3027eeda5b644f52a226e85faac2ea94"
+ ],
+ "layout": "IPY_MODEL_cf28a7408244470db73983884b073052"
+ }
+ },
+ "3d6b938ad89a4eb7b5b659b8a58a67ea": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "3dc3abcb864647c9af3c51a5f14fd9ea": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "3dd92fa5265441f9bd86c3f05b6bbcdd": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "3f47f94d203146f4a7b12c59e62b18c7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "41f3e2728fc84ed5bd9b4b249360d906": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_9486a14cba0d4a068f4662258c4e9deb",
+ "placeholder": "",
+ "style": "IPY_MODEL_f7414f81cf9d4acc9cbebe55f5d0443e",
+ "value": " 471/471 [00:00<00:00, 42.3kB/s]"
+ }
+ },
+ "426e709e4e0a4340a35da8e036f934a8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "42be7fcf8e1041b5b28dc5234d73ea93": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "42e9c1a53af541e6855ff369744dcb54": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "44819eaa951c4cbabda88285202253d5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_961c6f2ab5054dfdb426a93397d35cf8",
+ "placeholder": "",
+ "style": "IPY_MODEL_42be7fcf8e1041b5b28dc5234d73ea93",
+ "value": " 665/665 [00:00<00:00, 61.3kB/s]"
+ }
+ },
+ "4879ed18e5594fdabab8d9c175d7b35c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2d8fe959fd7d4d8a9b1044878540f16b",
+ "placeholder": "",
+ "style": "IPY_MODEL_a8cf5e9af8db4ac0bf52a759497da977",
+ "value": "Generating portuguese split: 100%"
+ }
+ },
+ "496d84b8409c4964b3c4a7fd5b9a30c3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_4879ed18e5594fdabab8d9c175d7b35c",
+ "IPY_MODEL_2912a20819a547c7b1234f90eb347c10",
+ "IPY_MODEL_f82df455a7a242488dcf0e02b41e0056"
+ ],
+ "layout": "IPY_MODEL_5829efe6dd4a4b5bbe226cfcc8385d9b"
+ }
+ },
+ "4a5180f1755b4ab4b09fc69783c68d24": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_7b05113d6d0646a99b9a94eea0d03e8b",
+ "placeholder": "",
+ "style": "IPY_MODEL_68e97900d1284e7f8a2a9e3e3703bc3d",
+ "value": "Downloading data files: 100%"
+ }
+ },
+ "4a613bff58a849dab8be41cd8987f9f0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_e2f88592fb0840b7ba8487af41ad77ca",
+ "placeholder": "",
+ "style": "IPY_MODEL_a89bc92dc8d546ee8b644c1d2fff13c9",
+ "value": "training_stats.parquet: 100%"
+ }
+ },
+ "4b0fbfc147cb40df9237925fef149e11": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "4b6938dcc48f44d2ac9b5140831bf861": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_de1ca66e82404e5294185b2767580a27",
+ "max": 456318,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_92df3c4b9ae54a9795c9385fa714b619",
+ "value": 456318
+ }
+ },
+ "4d6bb9e8d55a433481a4c24d0701e067": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "4d8eddd3dfe44677a600acbb4cbe7d97": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "4e992f73d7ad4a3bbceb2ba182afa8f3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_1fe02dd9187740fa9ef0d0d13856bb09",
+ "placeholder": "",
+ "style": "IPY_MODEL_2ecedb4da1b040e596cb593b3eca32e2",
+ "value": "optimizer.pt: 100%"
+ }
+ },
+ "5019cd005793458a9d1ddcfd8275d141": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "5049fed8b3ba47809f4b23ca9f6eac3a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "50bf4975bb7645aa81476dc487549db0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "51035b95029340bda49b01e725237ba7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_7eed16d7fef7434d9af75e77fa296bf0",
+ "placeholder": "",
+ "style": "IPY_MODEL_260711e88b0d44fea99e7d16a093e32f",
+ "value": "Downloading (…)lve/main/config.json: 100%"
+ }
+ },
+ "51c7f0a344024d5fb628409779313c14": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_935bf6ab4f344ef5b691c448478b91ea",
+ "max": 927,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_9b7761fb539c434599b195c4e8d76d3c",
+ "value": 927
+ }
+ },
+ "51c93a73435c422f8a4538bb37e69f47": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_51035b95029340bda49b01e725237ba7",
+ "IPY_MODEL_d2b993dcbfcf4977a5623c5310f67dc3",
+ "IPY_MODEL_2e59b545177a489785a93b3eaafd3de5"
+ ],
+ "layout": "IPY_MODEL_c118108ea852455fa3f844f79ee5756c"
+ }
+ },
+ "52213548f70049bebd7a0e5cd81acca7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "52c88c5b1c8344b9b79e0461d931a095": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_2407ee137c13497089bd0194a843c8c8",
+ "IPY_MODEL_9e06b85e94ff4af7a4197c6496c482dc",
+ "IPY_MODEL_b53c4e5247ee4036ac449716b4fc8367"
+ ],
+ "layout": "IPY_MODEL_231ba7820ed3459fb4b47a346180d3be"
+ }
+ },
+ "535184534cf94476a5551bed748b8b00": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_c9f5bd68a1d54eaf855e7fbef8109a0a",
+ "IPY_MODEL_8edb9b5997314fce9944111fbbd9a6fa",
+ "IPY_MODEL_f9ea213214154484ac2e989a5610238c"
+ ],
+ "layout": "IPY_MODEL_50bf4975bb7645aa81476dc487549db0"
+ }
+ },
+ "5432a10476a14ebe9cbcc710a60f7778": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "543d40a7e01b4e9d9bc4de98b3af0a78": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "55375bc255334f3b9b286fca98ac3ad5": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "559832357c9d45258edb53e495e5d0ef": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "560c58d5de7d457b955269962cce8e34": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_25ef6ec0dbe143648da326687808647c",
+ "placeholder": "",
+ "style": "IPY_MODEL_8984282d1ce6494ab3794af48977aad2",
+ "value": " 498M/498M [00:55<00:00, 11.6MB/s]"
+ }
+ },
+ "56e346bf20a043fd9126ff0f747c38c9": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "57daeff51f3445958b7de2675785ebe3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_acfa1caae7f5481d99f6f2fda5844c91",
+ "placeholder": "",
+ "style": "IPY_MODEL_dd2ccec65b984743a1008c6d6880ef56",
+ "value": " 5.81k/5.81k [00:00<00:00, 20.7kB/s]"
+ }
+ },
+ "5829efe6dd4a4b5bbe226cfcc8385d9b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "5920920624454874bc3fea6803079d59": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "59db7cf7ee904306a84f74b9e8d99199": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "59f32490fd154031a18616e312cb05b8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "5ab487c9cca54b64ac7624f8a777e6f0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_f774461134374e5cad4450ec6695e8bd",
+ "max": 471,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_5920920624454874bc3fea6803079d59",
+ "value": 471
+ }
+ },
+ "5af6b88ebb8f48f4891b30db4e554d5a": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "5c988c3dc10f4e8eae0f6a512ec92d45": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_35bbb2d275234087b333db673b44d335",
+ "IPY_MODEL_15a2af850ff547bd8ac38167622532b8",
+ "IPY_MODEL_24ba2f4066bf4296a0831f3e3c1c9951"
+ ],
+ "layout": "IPY_MODEL_cb87854236d44fa7afbf538eb7f284ed"
+ }
+ },
+ "5cc7fca7de824815af98539c9ec2e002": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "5d40f95846794aa98bde190126120743": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "5d81568985e54f3d8103e3a7778b4319": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_bec6dfda22654cbc8fd8aa7f2fdcd6e6",
+ "IPY_MODEL_4b6938dcc48f44d2ac9b5140831bf861",
+ "IPY_MODEL_91e2ccf811c646a893d8bf5d7f04387d"
+ ],
+ "layout": "IPY_MODEL_fb965033e2314c35a41d2676649f9fb8"
+ }
+ },
+ "5d96ab80b67e44c0bc62026a93dd13b6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "5f4f4165061645a89fce7ce8ae7b67d0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "6031435804f148748614da693ac8eb49": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "634c44e8a0494987b5e6fa2f1146a0a1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "635f44e3d00f416cb544936c257b2639": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_42e9c1a53af541e6855ff369744dcb54",
+ "placeholder": "",
+ "style": "IPY_MODEL_aaa3265973e2423aab961e5170c72b13",
+ "value": "Downloading model.safetensors: 100%"
+ }
+ },
+ "63b4fd7c8c3a4eaf9aaac134075acfc2": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_b95a18bea2664f529a3def0a192fe2a7",
+ "IPY_MODEL_87ff35e4f8a64b8783027d71a0424564",
+ "IPY_MODEL_d9f02d42aae249aaaa605eb40cca9bb1"
+ ],
+ "layout": "IPY_MODEL_a1950867a6b6443396dd80c9071ae565"
+ }
+ },
+ "64f286f179c647c5b3c1e60a5d98d503": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "6510591d0c2846999775889fdcdd2053": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "68e97900d1284e7f8a2a9e3e3703bc3d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "6986394111e34775bedc7bdfe4d13ed7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_a55fdda74fcc4c7a9c704bdff7f8ff42",
+ "IPY_MODEL_ab252ab72fc84e3888060e176dead635",
+ "IPY_MODEL_7c52b2cd2f2a4f4ca8270ae03d5b7e87"
+ ],
+ "layout": "IPY_MODEL_989cdb0b758d4adcbab1f944823d8000"
+ }
+ },
+ "6b44c2447706485881b559fe9556ff48": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "6ea99af30c7448faad635f5747c3e804": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "6fccf6cc450b47b7a266c085cc504f1b": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "70517e5aa8934308a632d9a1ac72f28c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "708155382c9345f5b8687bcb8d846cd4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8c66c975d5014b5d806a914bc2d8067c",
+ "max": 119,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_725adda2d6294c9786e46eac1b0b613f",
+ "value": 119
+ }
+ },
+ "72054151bb4f47e5bd45ce354a25492f": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "725adda2d6294c9786e46eac1b0b613f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "7323831e20234d2aacbd26f2c11a0428": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "73371c5882894495a009e8444aadce38": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "7496ed4fb6a14bdc836c78d29761f273": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "74cf97c382684f40bf41e0d260d2ebd2": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_ac0637792699411985b22a47b70ada17",
+ "IPY_MODEL_137f1f40d15a4fd891915045ebc5f7e7",
+ "IPY_MODEL_bbb144247c654054a66bac4ad1b635ea"
+ ],
+ "layout": "IPY_MODEL_1649089916d34311b3ec7dc7813ecbba"
+ }
+ },
+ "765c2a45460541a586e95df6a931dfdc": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "76c752f0910248a9a7fa89efa0852f4f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "76e85f12dd8a4e559c68ea6cd365de40": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_70517e5aa8934308a632d9a1ac72f28c",
+ "placeholder": "",
+ "style": "IPY_MODEL_94bee120a6f64df2a645b5a241dcb292",
+ "value": "Downloading (…)neration_config.json: 100%"
+ }
+ },
+ "78cbe7d5645b4e70b1524a96613a9917": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_0d0acc5681b04daa94d10227de6de0b3",
+ "placeholder": "",
+ "style": "IPY_MODEL_52213548f70049bebd7a0e5cd81acca7",
+ "value": " 649M/649M [01:01<00:00, 10.1MB/s]"
+ }
+ },
+ "79b2e22a2bab464884e8e5d4367562c8": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "7b05113d6d0646a99b9a94eea0d03e8b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "7c52b2cd2f2a4f4ca8270ae03d5b7e87": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_395f7929839d493c811278eefae2ccc9",
+ "placeholder": "",
+ "style": "IPY_MODEL_1b0579b3576543c79aa62c1d75a73bd4",
+ "value": " 498M/498M [00:46<00:00, 9.15MB/s]"
+ }
+ },
+ "7d50afc9a60641f9b6566cc78fcabde4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "7d81f74d3362486fa048962b7a8ad6a2": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_73371c5882894495a009e8444aadce38",
+ "max": 563,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_20974dc2e16c494cbb52e9f094ec2157",
+ "value": 563
+ }
+ },
+ "7eeb8921797d483099bfd29ac1a3fa5c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "7eed16d7fef7434d9af75e77fa296bf0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "808e88bc3f4e4a819af9651f18d3d635": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_1d583213933b461492d1b078496c11c3",
+ "IPY_MODEL_0d997ef6a2e149839b23cd1d5a92e1f9",
+ "IPY_MODEL_0bc9cfb678814b1fb21a2c830a425dcd"
+ ],
+ "layout": "IPY_MODEL_aa3eca49cfdb4fbe9566a9c0acb12201"
+ }
+ },
+ "8317d5521e544d2e8ad592a6c903e7d7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "858008ac568e41abb33a1633fba03c6c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "86681e1400004b9ea3033d1ab526dbd0": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "87ff35e4f8a64b8783027d71a0424564": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2ad8e2b98fb544d1ac15a723231117ff",
+ "max": 29529282,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_385fa8795a124ff780ed119b518a5b87",
+ "value": 29529282
+ }
+ },
+ "880b2279168842d18b36bc157a71400e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "8852c72f4ff741caba34ee50e6567627": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "88f585c04c79416ea84199059b806966": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "8984282d1ce6494ab3794af48977aad2": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "8ad51ed4a23b44169fa1b723933a7e16": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2d7fd8cb6dbf4360b36e3d31fedf7bc1",
+ "placeholder": "",
+ "style": "IPY_MODEL_fdda1607e251449c915344cc7ca66104",
+ "value": "Downloading (…)olve/main/merges.txt: 100%"
+ }
+ },
+ "8c66c975d5014b5d806a914bc2d8067c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "8d8e21fc59da4d938e16e1033ab699d7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "8e3e08da53224974b4bb015eaf2ae3cf": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "8ebed4aef6b548b0b8e3b69b3b30e24c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "8edb9b5997314fce9944111fbbd9a6fa": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_00898e38b7c54932b26f4521a157c25f",
+ "max": 123,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_3bd6feade68146dcbad2d207f0aa3613",
+ "value": 123
+ }
+ },
+ "91e2ccf811c646a893d8bf5d7f04387d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_fb43eda1688f4ef1a77543ba4f32de6b",
+ "placeholder": "",
+ "style": "IPY_MODEL_4b0fbfc147cb40df9237925fef149e11",
+ "value": " 456k/456k [00:00<00:00, 7.91MB/s]"
+ }
+ },
+ "92df3c4b9ae54a9795c9385fa714b619": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "935bf6ab4f344ef5b691c448478b91ea": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "9376fb2f44ab4dcab54ea8e78eabd450": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "9486a14cba0d4a068f4662258c4e9deb": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "94bee120a6f64df2a645b5a241dcb292": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "9561aabaab524a0d9d3bfb37487d76ab": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "958c2a18b92444d48923f7a6222c5e69": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d1a07d7b8a00439f96e2cd3ff69a210e",
+ "max": 631,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_111ad9dc9e7842169f64d2973c6c26fb",
+ "value": 631
+ }
+ },
+ "95abff26dd7a4ee69d3d377693d9416d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d1fc3d61453b478bab1557d1b09bdc49",
+ "placeholder": "",
+ "style": "IPY_MODEL_bd6699ed6ffa4aa3a1516d43f26c989a",
+ "value": " 999k/999k [00:00<00:00, 1.19MB/s]"
+ }
+ },
+ "961c6f2ab5054dfdb426a93397d35cf8": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "96e96bdac8ab451988182b50967197ae": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d8d2d0c13deb426db4726e01cd114227",
+ "placeholder": "",
+ "style": "IPY_MODEL_7496ed4fb6a14bdc836c78d29761f273",
+ "value": " 548M/548M [00:01<00:00, 461MB/s]"
+ }
+ },
+ "979e63a89deb493f976f388f75a9b363": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "97deca67baf4415ab983b97ecc962f04": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_0a30fbd9983246818d54c9ac71dd2c62",
+ "max": 497786496,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_c78a8cbf2a294a98984288b72cfc561c",
+ "value": 497786496
+ }
+ },
+ "989cdb0b758d4adcbab1f944823d8000": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "990ec8338e204b6b905e02fa99b41d6c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "9a3aae24623e49bf91b2bdc33127e7e1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_098b124e49a54a7f88c6f6ee6cd84e9e",
+ "placeholder": "",
+ "style": "IPY_MODEL_426e709e4e0a4340a35da8e036f934a8",
+ "value": "Downloading (…)olve/main/vocab.json: 100%"
+ }
+ },
+ "9b7761fb539c434599b195c4e8d76d3c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "9d12d51c452a4f6fa4ac388273007f68": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "9df59218bba14560b7d088120f87788f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_aae8907f283a4e9c9cd774b93e75b7cc",
+ "placeholder": "",
+ "style": "IPY_MODEL_ab80a02760e4440e9c36d93866a95c07",
+ "value": "Downloading readme: 100%"
+ }
+ },
+ "9e06b85e94ff4af7a4197c6496c482dc": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_6b44c2447706485881b559fe9556ff48",
+ "max": 497786496,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_3dd92fa5265441f9bd86c3f05b6bbcdd",
+ "value": 497786496
+ }
+ },
+ "9e2766960e6e48129fe23ed29855e46a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "9ff56f6a06394a4cafe08576ffd29a01": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2e8ffc9187344f9d84ed03c6ecf57075",
+ "placeholder": "",
+ "style": "IPY_MODEL_59db7cf7ee904306a84f74b9e8d99199",
+ "value": " 927/927 [00:00<00:00, 75.5kB/s]"
+ }
+ },
+ "a01d82d745aa428ea76674489c13a090": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_4a613bff58a849dab8be41cd8987f9f0",
+ "IPY_MODEL_f44afca7e2504de6a49921637f4f8360",
+ "IPY_MODEL_0f33671933bb4e05af3f19a2b93782a7"
+ ],
+ "layout": "IPY_MODEL_8e3e08da53224974b4bb015eaf2ae3cf"
+ }
+ },
+ "a1950867a6b6443396dd80c9071ae565": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "a1fb59e683ae4e7dad96e0ea7369b66d": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c0dcaef5d4b94c50a2123fe1cd42e5d9",
+ "max": 649096325,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_e369c7d00e0740ea903c412a514f6d10",
+ "value": 649096325
+ }
+ },
+ "a55fdda74fcc4c7a9c704bdff7f8ff42": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_5af6b88ebb8f48f4891b30db4e554d5a",
+ "placeholder": "",
+ "style": "IPY_MODEL_6fccf6cc450b47b7a266c085cc504f1b",
+ "value": "pytorch_model.bin: 100%"
+ }
+ },
+ "a58e8f29cf524be0a491f3f072213117": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "a591c2c678eb40aaa9ddaaada15d81a5": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "a89bc92dc8d546ee8b644c1d2fff13c9": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "a8a03d2900f9440fbfb63437e6f443d0": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "a8cf5e9af8db4ac0bf52a759497da977": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "aa3eca49cfdb4fbe9566a9c0acb12201": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "aaa3265973e2423aab961e5170c72b13": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "aae8907f283a4e9c9cd774b93e75b7cc": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "ab252ab72fc84e3888060e176dead635": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c8eda141c6944c9a84c2d60abbd9f5b2",
+ "max": 497819485,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_f43019e755ef4efc80b2754149f71ea6",
+ "value": 497819485
+ }
+ },
+ "ab4a7922a3d4481db97b5f296a2e889e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "ab80a02760e4440e9c36d93866a95c07": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "ac0637792699411985b22a47b70ada17": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_1d1a404c9a4940ff88ac99f0d6c52288",
+ "placeholder": "",
+ "style": "IPY_MODEL_bae037a3872541d6be46adab8497b708",
+ "value": "Downloading (…)olve/main/vocab.json: 100%"
+ }
+ },
+ "ac554ea6c1064ecf9438da3e3ed31330": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_5432a10476a14ebe9cbcc710a60f7778",
+ "placeholder": "",
+ "style": "IPY_MODEL_880b2279168842d18b36bc157a71400e",
+ "value": "Downloading model.safetensors: 100%"
+ }
+ },
+ "acfa1caae7f5481d99f6f2fda5844c91": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "b28a5ff7ea754d5c8ef9a821d3172f0d": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "b3701d8a1ef4400783cd74061d6e2f13": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_3a28c92357dd4d1ea7efc8793c8b5b9c",
+ "IPY_MODEL_51c7f0a344024d5fb628409779313c14",
+ "IPY_MODEL_9ff56f6a06394a4cafe08576ffd29a01"
+ ],
+ "layout": "IPY_MODEL_da60ab76fade4dcc8d6320aa1dafaba3"
+ }
+ },
+ "b53c4e5247ee4036ac449716b4fc8367": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_f22bd43ab7f84874a0d6da379b81206b",
+ "placeholder": "",
+ "style": "IPY_MODEL_0a21aa791ae04534969b2223fe743f08",
+ "value": " 498M/498M [00:45<00:00, 9.75MB/s]"
+ }
+ },
+ "b7de98e4294d41f28bd118b5bce39b3a": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "b901163cf07248ca8a821f8d7893829a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "b95a18bea2664f529a3def0a192fe2a7": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_113a01e053014cf792efd65ab26d5ebf",
+ "placeholder": "",
+ "style": "IPY_MODEL_5049fed8b3ba47809f4b23ca9f6eac3a",
+ "value": "Downloading data: 100%"
+ }
+ },
+ "ba5194369be24ef7910e451ccf9b826a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d55c50e7a81f49069075418cd01297b5",
+ "max": 124,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_2443dde12b35409fbe7672e4db430967",
+ "value": 124
+ }
+ },
+ "bae037a3872541d6be46adab8497b708": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "bb70dbe26afa4ef799b78f38ec13c37c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_36b557461f694c59bfd9d7cb945f3ae4",
+ "IPY_MODEL_17ba8102ecd742ec9eb7d4713b87150d",
+ "IPY_MODEL_57daeff51f3445958b7de2675785ebe3"
+ ],
+ "layout": "IPY_MODEL_a58e8f29cf524be0a491f3f072213117"
+ }
+ },
+ "bbb144247c654054a66bac4ad1b635ea": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8ebed4aef6b548b0b8e3b69b3b30e24c",
+ "placeholder": "",
+ "style": "IPY_MODEL_25ffa62a709247f7a6d5b983b1edb76e",
+ "value": " 1.04M/1.04M [00:00<00:00, 4.25MB/s]"
+ }
+ },
+ "bd46938f6b7147b0ac3c44ebd34ec017": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "bd6699ed6ffa4aa3a1516d43f26c989a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "bd89bdc7957a45b08eb6d967e22edc0a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_ee0be7a692f6487aa64c2e672505e52f",
+ "IPY_MODEL_17ba80791a05478c84810b9beacc0bca",
+ "IPY_MODEL_44819eaa951c4cbabda88285202253d5"
+ ],
+ "layout": "IPY_MODEL_9376fb2f44ab4dcab54ea8e78eabd450"
+ }
+ },
+ "bec6dfda22654cbc8fd8aa7f2fdcd6e6": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_2a6897d23fe24d5b9fa0ba891a6ac2ff",
+ "placeholder": "",
+ "style": "IPY_MODEL_59f32490fd154031a18616e312cb05b8",
+ "value": "Downloading (…)olve/main/merges.txt: 100%"
+ }
+ },
+ "c0dcaef5d4b94c50a2123fe1cd42e5d9": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c118108ea852455fa3f844f79ee5756c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c306a3682766458580a736e365f4eed2": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c5d3da2ba11c4d77aa7f01eaed961752": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c78a8cbf2a294a98984288b72cfc561c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "c8790b926a6d403d8284d31da6012304": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_ed133631a9284759bf024dcf91a83b89",
+ "max": 456318,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_32706da76a2e48d193611f195ccc93b9",
+ "value": 456318
+ }
+ },
+ "c8eda141c6944c9a84c2d60abbd9f5b2": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "c9f5bd68a1d54eaf855e7fbef8109a0a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_3856b43ac92649f8ad0d61c2cace6980",
+ "placeholder": "",
+ "style": "IPY_MODEL_ab4a7922a3d4481db97b5f296a2e889e",
+ "value": "Downloading (…)in/added_tokens.json: 100%"
+ }
+ },
+ "cb60e775e8ba497098551404b210a08b": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_9d12d51c452a4f6fa4ac388273007f68",
+ "placeholder": "",
+ "style": "IPY_MODEL_9561aabaab524a0d9d3bfb37487d76ab",
+ "value": " 124/124 [00:00<00:00, 11.3kB/s]"
+ }
+ },
+ "cb87854236d44fa7afbf538eb7f284ed": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "cf28a7408244470db73983884b073052": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "cf488e9687254cdba11fe362280d8f76": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "d059bb6a1ebb46beb15b23e47a43a793": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_1e3aa594f0ae4ca08fb5812701b313c0",
+ "placeholder": "",
+ "style": "IPY_MODEL_765c2a45460541a586e95df6a931dfdc",
+ "value": "Downloading (…)cial_tokens_map.json: 100%"
+ }
+ },
+ "d0755fbb815c4914a2cd1a0cca8afda2": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d0eceb76e1e14550bf6b8be9729e6a71": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d1a07d7b8a00439f96e2cd3ff69a210e": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d1bc4d0a28ab4067a4862f3685f669f7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d1cabf5091ca4e3798d9036d5cf28a7e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d57f457eb5fb4b08b1d5fafcd7f8181d",
+ "placeholder": "",
+ "style": "IPY_MODEL_6ea99af30c7448faad635f5747c3e804",
+ "value": " 119/119 [00:00<00:00, 9.89kB/s]"
+ }
+ },
+ "d1fc3d61453b478bab1557d1b09bdc49": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d2b993dcbfcf4977a5623c5310f67dc3": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8d8e21fc59da4d938e16e1033ab699d7",
+ "max": 907,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_55375bc255334f3b9b286fca98ac3ad5",
+ "value": 907
+ }
+ },
+ "d55c50e7a81f49069075418cd01297b5": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d57f457eb5fb4b08b1d5fafcd7f8181d": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d5e04bfbc64b477bb5e15ac348203528": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_9df59218bba14560b7d088120f87788f",
+ "IPY_MODEL_5ab487c9cca54b64ac7624f8a777e6f0",
+ "IPY_MODEL_41f3e2728fc84ed5bd9b4b249360d906"
+ ],
+ "layout": "IPY_MODEL_88f585c04c79416ea84199059b806966"
+ }
+ },
+ "d61b20a8d758417ea9308d46f912696c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "d6b6e6f8e19547d289fcd75f04a50bb9": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_8ad51ed4a23b44169fa1b723933a7e16",
+ "IPY_MODEL_c8790b926a6d403d8284d31da6012304",
+ "IPY_MODEL_ff2a337f82b8449292235f46c11b5d5a"
+ ],
+ "layout": "IPY_MODEL_b7de98e4294d41f28bd118b5bce39b3a"
+ }
+ },
+ "d78a794c2fe8418898d328b8508738d4": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_d1bc4d0a28ab4067a4862f3685f669f7",
+ "placeholder": "",
+ "style": "IPY_MODEL_990ec8338e204b6b905e02fa99b41d6c",
+ "value": " 41815/41815 [00:00<00:00, 182926.40 examples/s]"
+ }
+ },
+ "d8d2d0c13deb426db4726e01cd114227": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d99a051acc7243da8ae30ababc83a3f2": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "d9f02d42aae249aaaa605eb40cca9bb1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_b28a5ff7ea754d5c8ef9a821d3172f0d",
+ "placeholder": "",
+ "style": "IPY_MODEL_4d6bb9e8d55a433481a4c24d0701e067",
+ "value": " 29.5M/29.5M [00:01<00:00, 26.4MB/s]"
+ }
+ },
+ "da60ab76fade4dcc8d6320aa1dafaba3": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "db5ebcf942fd4b20ac0e91a56d7a8db6": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "dc87528dda9545ebbbafc38a3e2e9643": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "dd2ccec65b984743a1008c6d6880ef56": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "dde7bb94efc34a8ea150b16ceffe5d14": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_3dc3abcb864647c9af3c51a5f14fd9ea",
+ "max": 548105171,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_5f4f4165061645a89fce7ce8ae7b67d0",
+ "value": 548105171
+ }
+ },
+ "de1ca66e82404e5294185b2767580a27": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "dfd541e41e3742989862d6d4410db8e7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "e003395fbe9041f8a730e4329f0ef762": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HBoxModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HBoxModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HBoxView",
+ "box_style": "",
+ "children": [
+ "IPY_MODEL_4a5180f1755b4ab4b09fc69783c68d24",
+ "IPY_MODEL_ed7815efe36c4a59b963030befe1420e",
+ "IPY_MODEL_fb9a513b53be4dc6afe182339d9fb0ec"
+ ],
+ "layout": "IPY_MODEL_25d28c439989494189b45d80377bafee"
+ }
+ },
+ "e0e34a00222e47ddbc1a17b37e90baa1": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "e2f88592fb0840b7ba8487af41ad77ca": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "e303a3e87bc9425a992c591f389fc09e": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "e369c7d00e0740ea903c412a514f6d10": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "e7acfaa28f6b4992a3e0e8709229505f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c306a3682766458580a736e365f4eed2",
+ "max": 41815,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_3d6b938ad89a4eb7b5b659b8a58a67ea",
+ "value": 41815
+ }
+ },
+ "ebb6bdc13f884f56863509bca6af1484": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "eca1fd1c238f42ab96ce506b77a01754": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "ed133631a9284759bf024dcf91a83b89": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "ed7815efe36c4a59b963030befe1420e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_5d96ab80b67e44c0bc62026a93dd13b6",
+ "max": 2,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_26038d94169e4b2b991d713a6533b83b",
+ "value": 2
+ }
+ },
+ "ee0be7a692f6487aa64c2e672505e52f": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_8852c72f4ff741caba34ee50e6567627",
+ "placeholder": "",
+ "style": "IPY_MODEL_559832357c9d45258edb53e495e5d0ef",
+ "value": "Downloading (…)lve/main/config.json: 100%"
+ }
+ },
+ "f10edab6c2bb47e3982f5b3282b1479a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_c5d3da2ba11c4d77aa7f01eaed961752",
+ "placeholder": "",
+ "style": "IPY_MODEL_1215352bd025498d9892bc5a42ffe532",
+ "value": "scheduler.pt: 100%"
+ }
+ },
+ "f22bd43ab7f84874a0d6da379b81206b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f43019e755ef4efc80b2754149f71ea6": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "ProgressStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "ProgressStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "bar_color": null,
+ "description_width": ""
+ }
+ },
+ "f44afca7e2504de6a49921637f4f8360": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "FloatProgressModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "FloatProgressModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "ProgressView",
+ "bar_style": "success",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_e303a3e87bc9425a992c591f389fc09e",
+ "max": 2355,
+ "min": 0,
+ "orientation": "horizontal",
+ "style": "IPY_MODEL_1c3352dd627f4629bba570d075424021",
+ "value": 2355
+ }
+ },
+ "f4bcf975ea284cf7a074c3005e85979d": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f694925e4bc343f598994f5b2a904903": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "f7391b34016f4914acf02fa754cec9a7": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f7414f81cf9d4acc9cbebe55f5d0443e": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "f774461134374e5cad4450ec6695e8bd": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f7f1518967664108b27ca857279f2f97": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "f82df455a7a242488dcf0e02b41e0056": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_db5ebcf942fd4b20ac0e91a56d7a8db6",
+ "placeholder": "",
+ "style": "IPY_MODEL_37a668ecbf14481f9e30d6ce6357520b",
+ "value": " 41815/41815 [00:00<00:00, 183047.75 examples/s]"
+ }
+ },
+ "f9ea213214154484ac2e989a5610238c": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_fc50028696ad4f4593234bdf4188143c",
+ "placeholder": "",
+ "style": "IPY_MODEL_bd46938f6b7147b0ac3c44ebd34ec017",
+ "value": " 123/123 [00:00<00:00, 12.0kB/s]"
+ }
+ },
+ "fb43eda1688f4ef1a77543ba4f32de6b": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "fb965033e2314c35a41d2676649f9fb8": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "fb9a513b53be4dc6afe182339d9fb0ec": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_038b0f9499b54449b4cdbf2ee887d0d7",
+ "placeholder": "",
+ "style": "IPY_MODEL_79b2e22a2bab464884e8e5d4367562c8",
+ "value": " 2/2 [00:02<00:00, 1.26s/it]"
+ }
+ },
+ "fc50028696ad4f4593234bdf4188143c": {
+ "model_module": "@jupyter-widgets/base",
+ "model_module_version": "1.2.0",
+ "model_name": "LayoutModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "1.2.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border": 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,
+ "overflow_x": null,
+ "overflow_y": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "fdda1607e251449c915344cc7ca66104": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "DescriptionStyleModel",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "1.2.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ },
+ "ff2a337f82b8449292235f46c11b5d5a": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_module_version": "1.5.0",
+ "model_name": "HTMLModel",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "1.5.0",
+ "_model_name": "HTMLModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "1.5.0",
+ "_view_name": "HTMLView",
+ "description": "",
+ "description_tooltip": null,
+ "layout": "IPY_MODEL_23964ccc394542548e66a92c1918a0d6",
+ "placeholder": "",
+ "style": "IPY_MODEL_5d40f95846794aa98bde190126120743",
+ "value": " 456k/456k [00:00<00:00, 962kB/s]"
+ }
+ }
+ }
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}