diff --git "a/langchain_retreival.ipynb" "b/langchain_retreival.ipynb" new file mode 100644--- /dev/null +++ "b/langchain_retreival.ipynb" @@ -0,0 +1,5336 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1695395317315 + }, + "id": "RRYSu48huSUW" + }, + "outputs": [], + "source": [ + "pip -q install -U langchain huggingface_hub tiktoken PyPDF2 pypdf sentence_transformers together FlagEmbedding faiss-gpu openai text-generation" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "gvIjaK53dP5l" + }, + "source": [ + "## RetrievalQA with LLaMA 2-70B on Together API" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1695395317576 + }, + "id": "dNA4TsHpu6OM" + }, + "outputs": [], + "source": [ + "import os\n", + "\n", + "os.environ[\"TOGETHER_API_KEY\"] = \"53b21bdab47f250b23da974391f9c0e7fb07ec242aec6c1e17d329c931edfa38\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "J-KFB7J_u_3L", + "outputId": "1f31d8b5-5491-47bc-8342-b4f48aa70a9e" + }, + "outputs": [], + "source": [ + "pip install asyncpg" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "HqwsGJDhvAQ5" + }, + "source": [ + "# Setting up Together API\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1695395321792 + }, + "id": "B3pqftc7nacA" + }, + "outputs": [], + "source": [ + "import together\n", + "\n", + "# set your API key\n", + "together.api_key = os.environ[\"TOGETHER_API_KEY\"]\n", + "\n", + "# list available models and descriptons\n", + "# models = together.Models.list()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "gather": { + "logged": 1695395322559 + }, + "id": "mdFedq669R1D", + "outputId": "8a5fc3d6-57a6-48af-eb96-058dea32dd70" + }, + "outputs": [], + "source": [ + "# together.Models.start(\"togethercomputer/llama-2-70b-chat\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1695395325479 + }, + "id": "RgbLVmf-o4j7" + }, + "outputs": [], + "source": [ + "import together\n", + "\n", + "import logging\n", + "from typing import Any, Dict, List, Mapping, Optional\n", + "\n", + "from pydantic import Extra, Field, root_validator\n", + "\n", + "from langchain.callbacks.manager import CallbackManagerForLLMRun\n", + "from langchain.llms.base import LLM\n", + "from langchain.llms.utils import enforce_stop_tokens\n", + "from langchain.utils import get_from_dict_or_env\n", + "\n", + "\n", + "from gradio_client import Client\n", + "\n", + "client = Client(\"https://073695670dbd200693.gradio.live/\")\n", + "\n", + "class TogetherLLM(LLM):\n", + " \"\"\"Together large language models.\"\"\"\n", + "\n", + " model: str = \"togethercomputer/llama-2-70b-chat\"\n", + " \"\"\"model endpoint to use\"\"\"\n", + "\n", + " together_api_key: str = os.environ[\"TOGETHER_API_KEY\"]\n", + " \"\"\"Together API key\"\"\"\n", + "\n", + " temperature: float = 0.7\n", + " \"\"\"What sampling temperature to use.\"\"\"\n", + "\n", + " max_tokens: int = 512\n", + " \"\"\"The maximum number of tokens to generate in the completion.\"\"\"\n", + "\n", + " class Config:\n", + " extra = Extra.forbid\n", + "\n", + " @root_validator()\n", + " def validate_environment(cls, values: Dict) -> Dict:\n", + " \"\"\"Validate that the API key is set.\"\"\"\n", + " api_key = get_from_dict_or_env(\n", + " values, \"together_api_key\", \"TOGETHER_API_KEY\"\n", + " )\n", + " values[\"together_api_key\"] = api_key\n", + " return values\n", + "\n", + " @property\n", + " def _llm_type(self) -> str:\n", + " \"\"\"Return type of LLM.\"\"\"\n", + " return \"together\"\n", + "\n", + " def _call(\n", + " self,\n", + " prompt: str,\n", + " **kwargs: Any,\n", + " ) -> str:\n", + " \"\"\"Call to Together endpoint.\"\"\"\n", + " # together.api_key = self.together_api_key\n", + " # output = together.Complete.create(prompt,\n", + " # model=self.model,\n", + " # max_tokens=self.max_tokens,\n", + " # temperature=self.temperature,\n", + " # )\n", + " # text = output['output']['choices'][0]['text']\n", + " # return text\n", + " print(prompt)\n", + " result = client.predict(\n", + "\t\t\t\tprompt,\t# str in 'Question' Textbox component\n", + "\t\t\t\t0.95,\t# int | float (numeric value between 0.05 and 1.0)\n", + "\t\t\t\tself.temperature,\t# int | float (numeric value between 0.1 and 1.0)\n", + "\t\t\t\t50,\t# int | float (numeric value between 1 and 50)\n", + "\t\t\t\t300,\t\n", + "\t\t\t\tfn_index=0\n", + " )\n", + " return result" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "gather": { + "logged": 1692868876070 + }, + "id": "ZlQzln_PRonn", + "outputId": "7a2b8ad7-f392-49fe-af3d-e620c4b0bf02" + }, + "outputs": [], + "source": [ + "\n", + "# !wget -O new_papers_2.zip https://www.dropbox.com/scl/fi/67a80h373n1z38088c9fb/new_papers_2.zip?rlkey=1azfz3w5aazd24ihotwzmol2j&dl=1\n", + "# !unzip -q new_papers_2.zip -d new_papers" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "7AnZQpL_IZZZ" + }, + "source": [ + "# LangChain multi-doc retriever with ChromaDB\n", + "\n", + "***Key Points***\n", + "- Multiple Files - PDFs\n", + "- ChromaDB\n", + "- LLaMA-2 LLM\n", + "- BGE Embeddings\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "fgfdhZ5uRpFn" + }, + "source": [ + "## Setting up LangChain\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1692868876936 + }, + "id": "Y_2-HBI3RpFn" + }, + "outputs": [], + "source": [ + "import os" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "gather": { + "logged": 1692870096658 + }, + "id": "XHVE9uFb3Ajj", + "outputId": "fea94568-9e6c-459e-8918-8f2b4f297f6e" + }, + "outputs": [], + "source": [ + "# from langchain.vectorstores import Chroma\n", + "from langchain.vectorstores import FAISS\n", + "from langchain.text_splitter import RecursiveCharacterTextSplitter\n", + "\n", + "from langchain.chains import RetrievalQA\n", + "from langchain.document_loaders import TextLoader\n", + "from langchain.document_loaders import PyPDFLoader\n", + "from langchain.document_loaders import DirectoryLoader\n", + "\n", + "\n", + "# from InstructorEmbedding import INSTRUCTOR\n", + "# from langchain.embeddings import HuggingFaceInstructEmbeddings" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "9UcQKUId3X2M" + }, + "source": [ + "## Load multiple and process documents" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1695396081422 + }, + "id": "PRSeXXc_3Ypj" + }, + "outputs": [], + "source": [ + "# # Load and process the text files\n", + "# # loader = TextLoader('single_text_file.txt')\n", + "# loader = DirectoryLoader('votum-ml/pdfs/', glob=\"./*.pdf\", loader_cls=PyPDFLoader)\n", + "\n", + "# documents = loader.load()\n", + "\n", + "\n", + "import asyncio\n", + "import asyncpg\n", + "\n", + "\n", + "\n", + "\n", + "conn = await asyncpg.connect(host=\"legalscraperserver.postgres.database.azure.com\",\n", + " database=\"postgres\",\n", + " user=\"tejasw\",\n", + " password=\"Password1234\",\n", + " port=5432,)\n", + "row = await conn.fetch(\n", + " '''SELECT sections, act_name, text\n", + "FROM acts\n", + "WHERE sections IS NOT NULL''')\n", + "\n", + "# AND(act_name LIKE '%The Indian Penal Code, 1860%' OR act_name LIKE '%The Code of Criminal Procedure, 1973%' OR act_name LIKE '%Motor Vehicles Act%')\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "gather": { + "logged": 1695396160144 + }, + "id": "vT6KgAIT_BtB", + "outputId": "281aa4cb-27c3-46bf-ad2e-7c43e9dc76e4" + }, + "outputs": [], + "source": [ + "import json\n", + "import re\n", + "\n", + "\n", + "data = []\n", + "\n", + "\n", + "def remove_between_periods(sentence):\n", + " # Define a regular expression pattern to match text between two periods\n", + " pattern = r'\\.(.*?)\\.'\n", + "\n", + " # Use re.sub to replace the matched substring with an empty string\n", + " modified_sentence = re.sub(pattern, '.', sentence)\n", + "\n", + " return modified_sentence\n", + "\n", + "def preprocess_text(text):\n", + " \n", + " text = text.lower()\n", + " \n", + " # Remove URLs using regex\n", + " text = re.sub(r'http\\S+|www\\S+|https\\S+', '', text)\n", + "\n", + " # Remove phone numbers (matches formats like +1234567890, 123-456-7890, (123) 456-7890, and more)\n", + " text = re.sub(r'\\+?\\d{1,4}[-\\s]?\\(?\\d{1,3}\\)?[-\\s]?\\d{1,4}[-\\s]?\\d{1,4}', '', text)\n", + "\n", + " # Remove special characters and unwanted sequences (e.g., /xa), except ',' and ':'\n", + " text = re.sub(r'[^a-zA-Z0-9\\s,/:\\.]|[\\xa0]', '', text)\n", + " \n", + " text = text.replace('tweet','')\n", + "\n", + " # Remove extra whitespace\n", + " text = ' '.join(text.split())\n", + "\n", + " return text\n", + "\n", + "for act in row:\n", + " for section in act['sections']:\n", + " print(section)\n", + " json_data = json.loads(section)\n", + " if 'omitted.' in json_data['section_name'].lower():\n", + " continue\n", + " json_data['section_name'] = f\"{remove_between_periods(json_data['section_name'])} of {act['act_name'].replace(',','')}\"\n", + " d = json_data['section_name'] + ' : ' + json_data['text']\n", + " data.append(preprocess_text(d))\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1695396204431 + }, + "jupyter": { + "outputs_hidden": false, + "source_hidden": false + }, + "nteract": { + "transient": { + "deleting": false + } + } + }, + "outputs": [], + "source": [ + "len(data)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "gather": { + "logged": 1692868887177 + }, + "id": "3__nT0D4Fkmg", + "outputId": "d77220d1-04d8-41a9-df8d-36c6e61bf1ab" + }, + "outputs": [], + "source": [ + "#splitting the text into\n", + "text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=200)\n", + "\n", + "texts = [text_splitter.split_text(d)[0] for d in data]\n", + "\n", + "len(texts)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "gather": { + "logged": 1692868888971 + }, + "id": "mi9VSazP0RSN", + "outputId": "c15cd59b-b8e5-4ed2-d2b9-7abe5f31806b" + }, + "outputs": [], + "source": [ + "texts[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "fhs0C0FYASlM" + }, + "source": [ + "## HF BGE Embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 401, + "referenced_widgets": [ + "72336b98bb664e598f8da434dea12bcf", + "06cb9e36eb3e440aa62fa3865a0bf7cb", + "1e968f495d78483ab22002cf46e7599a", + "65a19b80971f4f16ae486e0b33a920d9", + "e99f15fea33a4bcfb98bb21e581e77f7", + "f54192aed0d8415f85a5a32cb18548ad", + "0131eff774774716bb6003568076f496", + "6268fe40a4b44006a43f23c48b4fd73b", + "448242d61da2461abcede77139f0b740", + "8d7cae1057ef41e38b8d3bd8d71127b4", + "b23961b8865f44e685351b732acfd160", + "8811e27cb7b24fe7a30bbef63c8b034d", + "120abc9282ac4eb099153d368c81b2f3", + "dd39941179714219a4fbd70898e77c36", + "15efa95fc5904f41a22691b44ef8e884", + "3a907db6f66941419d5d8619cd133624", + "67b402cc9e3a41fc881c62764bf0b952", + "3c0e004a5c5e4308a7720c779ca2c3c0", + "8c53a2d79f2f4c38b47718c614707250", + "65e13b52d29c4d08bafba8bda728bd5f", + "11c7410fb7a64903beaacf78aed04247", + "35b83316c5fa4bf589af3130e002dabe", + "599e033fa98f44819af4c2d7048fbfb4", + "8f60547b75a34645ad6f02f610c1ac31", + "c4ca4c02ad0e451dae2cce9c2a26ec8d", + "f0bc30cc5e1d4f5a869800ac835a6943", + "6bfa3a255e8f4b799219b76cd6dfed0b", + "db0209e961d64aba9d4c3a8991de2016", + "f95edd8ea46a486dadae84f43f316eb6", + "43aebf595fc0440c9500f0315f88beaa", + "58002026e9ff43ed94d85bae003d2e84", + "70ecd38ec9664d5f824589a02e5cfb13", + "54e87d4e5d1c4d5fbb16a92270ae6c54", + "1a4810e47dbf451b8a6d3ab2c816bf64", + "a6ff33d70a3c401d8010d3a8f177bf82", + "673c6cdc933542fc9f99cffd106ffee4", + "3fea5bdf46ad46779579d51cd71a6ea7", + "74b14aa171d042fe91c86cd67c150d91", + "bc1b2a86311b4f21b284a175b104efe0", + "9b805c8d7629453bb83ce2044bea26b0", + "1e001fb312664979b6187c5c85ebee7c", + "df82a6c3b7c14698b50360b440667698", + "60f2eb478ee84fd8b0bcc35abd1c9179", + "37421eef29c54855b289cebf13143b09", + "05c10e5d60174493af2c49dd0cc55bcc", + "9a963eee8e01456a9c6ff820fc9a1394", + "444abec95fc340c58a63df8a8e71c1d7", + "58ff9c1ea7be4ed4900ef448fe88b6cc", + "9f3eb6593c4d4bfeb6d7a8f503f1d03c", + "ba685441301d43a3949b99927221c2b0", + "83386ff94da24656a1ae65471b55f312", + "86eb2d64cbe6467180ab51a9e1b88c97", + "d24ee1d8b86747748e5e737ad0b459b6", + "2395734dcfc34fc681327354beb3a86a", + "0846f8c2f3544519a51f06a903fdb912", + "b9935d3733ab4538a9c6c098808bca91", + "fd050344a8b7417294272972622b1e50", + "5a39b11a60c246d3a18ae934055528cd", + "a4066ca4095649049bdb4607dbb14cb5", + "3b0fb9694f604e1e8d275e517a61d2f2", + "7906c529005c4a159403444bb8e4df95", + "f5ab1675368e483787ff2da9050ff2d5", + "f235594eb8904996ba571ac9fef56186", + "054a1877685942f8a9b0d19f0e40ea09", + "1b48c1cdb6914bb19074270dab4e175f", + "9a19badd95594721b3f5fef44bd3d709", + "ecb2e4310050497ca02326ff23f4e67a", + "377dbea85b2447208a72bf4256a974b0", + "1d45e345641e4cb0a7eb54aeb455cc07", + "7149671d48db4dddaf9ccd8d2dea5d80", + "3f9c959a4ae24605abe9f182a4980b42", + "a689fc2cfdbd44cb8b8efc9a104530e7", + "0ded063225bd4930b8c3a84ac0212bed", + "d12e11cb3dc54b3fa80c6f744d4eb816", + "1aa15e1bdd8242dcafe1c44898e167cc", + "6c7f23dfac85466685361cc5bc6d2414", + "b241b6209e034e33a24b8ba7eeba8285", + "1c08a7e8bae84703a5272969e507ade2", + "f97f4652b3964daabd7540e8c84db808", + "0fbe66c557be4183815f350a5fc54cea", + "c9243985fc5c4bcfb5e4782f91bf1f08", + "da04d057103740a1840ac025db099ba6", + "f6ceba2c8e944e07ac37335f6bc27775", + "49823e682b3249ae83c79acf807eadca", + "3b609ca6ab7e497891ed09246b19fd02", + "7860f2ae650f406fbd2dbf5b0b035a7b", + "f59159361af34c768bc5158ad49844e1", + "85b1e48e37dd439da9ab97ae84e841ee", + "aa1c0efe0b5646a89cb23b6642a0dbb4", + "9fc0c24783a448c48385f9b3dfde2fbf", + "49ad9ddc3dca4d1d96bc12a59764571f", + "c5303b4931ea44519318b9bb209f634d", + "51c09b1d9214446285e103ee9282e206", + "83b683c844a549ae9b0a647dc87cd2bc", + "62313c10697f482590fb4eee271540bf", + "3cf6dc01e2a0428d840eebe1029bb8ce", + "502c36fb431241d2ae3cf12807cd5f15", + "94a73b26bf0144abb64f0cf4c64d385d", + "44e4249c3f0e4100aa5bb3ca53084060", + "c566fb3083984a5e894584249467ae4d", + "959d049d809248e49f029b5389b22a90", + "b72122ea1c3f4b568972d051e6ffa5a8", + "0efdf5a21c674849bf8b2718cbb1cc09", + "da5d4e9910114cdfb8d1700124db3c43", + "4d22677d3f384744a8297a66f636f051", + "5f176465351944c7b2bc28b91594428b", + "2a565e6a2c314e649fad873b012815d9", + "988ad9b09380430cbf39cd3abdfbd6ff", + "1e30c2cf9def45bd8069dc09fbfe844a", + "548aba40f7314690815320c348e4223b", + "33a420fc6fa44e8db19c06451c624c4e", + "b7378b19e6f3469482f141b0af6a8fa7", + "c890dead5ddc45e0817338a9349fd74c", + "ab8775594daf4028b475709a0f24a888", + "306369c675c94a1e9d374f75b5952200", + "aba560edd18940c4abe09c0fa7263bb1", + "94eb8f0f65c44616a083c381614b6617", + "ecd8be14e0cd44679787aeab059516bf", + "2a56adb0d9084371b96fc9bb8d869f80", + "2090392ba65446bbb53e7c6fb3261b0d", + "d1090f09758d4e7a8b3047f6adb15733", + "88d16f0c12824d698be908bed4efafc9", + "5f9e237c28fa46b3bc82f3cf788a952d", + "2114d8772db84490a20b9aa82642f44f", + "cb38a38b867846ddae5b51176dd37ef9", + "a0f6807767154e328dab28d7547bbfee", + "53691fa1d8a348728d859395ff2313fa", + "58231fd9a4f74188877e36047e5e17a9", + "3c8ecbe8cea243fc8a709fa1100110d2", + "81998912dbe2489abbbb84730c5890cc", + "264f84496d4144ca97ce6d5aa584dc88", + "2c97617f883f41e8961a4235712cc73c" + ] + }, + "gather": { + "logged": 1692868897098 + }, + "id": "Emj46ATxtV9C", + "outputId": "169be147-f31e-4153-cf91-9b1cea6667be" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/tejasw/.pyenv/versions/3.11.2/lib/python3.11/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", + " from .autonotebook import tqdm as notebook_tqdm\n" + ] + } + ], + "source": [ + "\n", + "from langchain.embeddings import HuggingFaceBgeEmbeddings\n", + "\n", + "model_name = \"BAAI/bge-base-en\"\n", + "encode_kwargs = {'normalize_embeddings': True} # set True to compute cosine similarity\n", + "\n", + "model_norm = HuggingFaceBgeEmbeddings(\n", + " model_name=model_name,\n", + " model_kwargs={'device': 'cpu'},\n", + " encode_kwargs=encode_kwargs\n", + ")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "YsYsIy8F4cdm" + }, + "source": [ + "## create the DB\n", + "\n", + " T4 GPU" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "Q_eTIZwf4Dk2", + "outputId": "57072a9e-bd8f-4296-b4e1-83c098f868c7" + }, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'texts' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m:9\u001b[0m\n", + "\u001b[0;31mNameError\u001b[0m: name 'texts' is not defined" + ] + } + ], + "source": [ + "%%time\n", + "# Embed and store the texts\n", + "# Supplying a persist_directory will store the embeddings on disk\n", + "\n", + "persist_directory = 'db'\n", + "\n", + "## Here is the nmew embeddings being used\n", + "embedding = model_norm\n", + "\n", + "vectordb = FAISS.from_texts(texts,\n", + " embedding=embedding)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'FAISS' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m/Users/tejasw/Downloads/scraper-law/votum-gradio/langchain_retreival.ipynb Cell 24\u001b[0m line \u001b[0;36m3\n\u001b[1;32m 1\u001b[0m \u001b[39m# vectordb.save_local(\"faiss_index\")\u001b[39;00m\n\u001b[0;32m----> 3\u001b[0m vectordb \u001b[39m=\u001b[39m FAISS\u001b[39m.\u001b[39mload_local(\u001b[39m'\u001b[39m\u001b[39mfaiss_index\u001b[39m\u001b[39m'\u001b[39m,embeddings\u001b[39m=\u001b[39mmodel_norm)\n", + "\u001b[0;31mNameError\u001b[0m: name 'FAISS' is not defined" + ] + } + ], + "source": [ + "# vectordb.save_local(\"faiss_index\")\n", + "\n", + "vectordb = FAISS.load_local('faiss_index',embeddings=model_norm)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "siLXR-XT0JoI" + }, + "source": [ + "## Make a retriever" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1692870223799 + }, + "id": "jVWgPJXs1yRq" + }, + "outputs": [], + "source": [ + "retriever = vectordb.as_retriever(search_type='similarity',search_kwargs={\"k\": 5})" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "4Ia-4OXa5IeP" + }, + "source": [ + "## Make a chain" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import openai\n", + "\n", + "from langchain.chat_models import AzureChatOpenAI\n", + "from langchain.schema import HumanMessage\n", + "\n", + "\n", + "\n", + "model = AzureChatOpenAI(\n", + " openai_api_base=\"https://votum.openai.azure.com/\",\n", + " openai_api_version= \"2023-07-01-preview\",\n", + " # openai_api_version=\"2023-05-15\",\n", + " openai_api_key=\"9ce18c180b8d43cb90568fd0ff6daefd\",\n", + " openai_api_type=\"azure\",\n", + " deployment_name='gpt-4'\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "model(\n", + " [\n", + " HumanMessage(\n", + " content=\"What model are you?\"\n", + " )\n", + " ]\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1692870227467 + }, + "id": "dCtX_DK9S-K0" + }, + "outputs": [], + "source": [ + "# llm = TogetherLLM(\n", + "# model= \"togethercomputer/llama-2-70b-chat\",\n", + "# temperature = 0.5,\n", + "# max_tokens = 1024\n", + "# )\n", + "\n", + "\n", + "from langchain.llms import HuggingFaceTextGenInference\n", + "\n", + "llm = HuggingFaceTextGenInference(\n", + " inference_server_url=\"http://20.83.177.108:8080/\",\n", + " max_new_tokens=512,\n", + " top_k=10,\n", + " top_p=0.95,\n", + " typical_p=0.95,\n", + " temperature=0.6,\n", + " # repetition_penalty=1.1,\n", + ")\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "gather": { + "logged": 1692870229949 + }, + "id": "MGx8XblM4shW" + }, + "outputs": [], + "source": [ + "\n", + "\n", + "from langchain.prompts import PromptTemplate\n", + "\n", + "\n", + "prompt_template = \"\"\"You are an expert legal assistant with extensive knowledge about Indian law. Your task is to respond to the given query in a consice and factually correct manner. Use the following pieces of context to answer the question at the end. If you don't know the answer, just say that you don't know, don't try to make up an answer.\n", + "\n", + "{context}\n", + "\n", + "Question: {question}\n", + "Response:\"\"\"\n", + "\n", + "\n", + "PROMPT = PromptTemplate(\n", + " template=prompt_template, input_variables=[\"context\", \"question\"]\n", + ")\n", + "\n", + "qa_chain = RetrievalQA.from_chain_type(llm=llm,\n", + " chain_type_kwargs={\"prompt\": PROMPT},\n", + " retriever=retriever,\n", + " return_source_documents=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "gather": { + "logged": 1692873421219 + }, + "id": "wKfX4vX-5RFT", + "outputId": "2a22808f-7c7e-4ccc-fcfd-026b0065c201" + }, + "outputs": [], + "source": [ + "import textwrap\n", + "\n", + "def wrap_text_preserve_newlines(text, width=110):\n", + " # Split the input text into lines based on newline characters\n", + " lines = text.split('\\n')\n", + "\n", + " # Wrap each line individually\n", + " wrapped_lines = [textwrap.fill(line, width=width) for line in lines]\n", + "\n", + " # Join the wrapped lines back together using newline characters\n", + " wrapped_text = '\\n'.join(wrapped_lines)\n", + "\n", + " return wrapped_text\n", + "\n", + "def process_llm_response(llm_response):\n", + " # print(wrap_text_preserve_newlines(llm_response['result']))\n", + " print(llm_response['result'])\n", + " # print('\\n\\nSources:')\n", + " # for source in llm_response[\"source_documents\"]:\n", + " # print(source.metadata['source'])\n", + "\n", + "\n", + "#, in case you can't find any relevant statutes respond with 'i don't know' rather than providing incorrect answer.\n", + "query = \"\"\"{user_text}\"\"\"\n", + "\n", + " \n", + "llm_response = qa_chain(query.format(user_text='How much alcohol can i legally consume before driving'))\n", + "print(llm_response)\n", + "# process_llm_response(llm_response)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "pip install langchain openai" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.llms import OpenAI\n", + "from langchain.agents import initialize_agent, Tool\n", + "from langchain.agents import AgentType\n", + "from langchain.agents.react.base import DocstoreExplorer\n", + "\n", + "\n", + "docstore = DocstoreExplorer(vectordb)\n", + "tools = [\n", + " Tool(\n", + " name=\"Search\",\n", + " func=docstore.search,\n", + " description=\"useful for when you need to ask with search\",\n", + " ),\n", + " Tool(\n", + " name=\"Lookup\",\n", + " func=docstore.lookup,\n", + " description=\"useful for when you need to ask with lookup\",\n", + " ),\n", + "]\n", + "\n", + "llm = OpenAI(temperature=0)\n", + "\n", + "react = initialize_agent(tools, model, agent=AgentType.REACT_DOCSTORE, verbose=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.agents import create_pandas_dataframe_agent\n", + "from langchain.chat_models import ChatOpenAI\n", + "from langchain.agents.agent_types import AgentType\n", + "from langchain.tools import tool\n", + "import pandas as pd\n", + "\n", + "html = \"\"\"\n", + "
Financial YearCost Inflation Index (CII)
2001-02 (Base year)100
2002-03105
2003-04109
2004-05113
2005-06117
2006-07122
2007-08129
2008-09137
2009-10148
2010-11167
2011-12184
2012-13200
2013-14220
2014-15240
2015-16254
2016-17264
2017-18272
2018-19280
2019-20289
2020-21301
2021-22317
2022-23331
2023-24348
\n", + "\"\"\"\n", + "\n", + "df = pd.read_html(html)[0]\n", + "\n", + "\n", + "@tool\n", + "def read_cii(query: str) -> str:\n", + " \"\"\"Search for latest indexation value for the given query year.\"\"\"\n", + " df_agent = create_pandas_dataframe_agent(\n", + " model, df, verbose=True)\n", + " res = df_agent.run(f'what was the indexation in the year {query}')\n", + " return res\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.llms import OpenAI\n", + "from langchain.agents import initialize_agent, Tool\n", + "from langchain.agents import AgentType\n", + "from langchain.agents import load_tools\n", + "import os\n", + "from langchain.chat_models import AzureChatOpenAI\n", + "from langchain.schema import HumanMessage\n", + "\n", + "\n", + "model = AzureChatOpenAI(\n", + " openai_api_base=\"https://votum.openai.azure.com/\",\n", + " openai_api_version=\"2023-07-01-preview\",\n", + " # openai_api_version=\"2023-05-15\",\n", + " openai_api_key=\"9ce18c180b8d43cb90568fd0ff6daefd\",\n", + " openai_api_type=\"azure\",\n", + " deployment_name='gpt-4'\n", + ")\n", + "\n", + "\n", + "os.environ[\"SERPAPI_API_KEY\"] = '94de7df75e512ca1fe42b3f51a034a0f0e4683e0f880f9cf7dee1a0eb36a069e'\n", + "\n", + "\n", + "tools = load_tools([\"serpapi\", \"llm-math\"], llm=model)\n", + "\n", + "agent_executor = initialize_agent(\n", + " [*tools, read_cii], model, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION, verbose=True)\n", + "\n", + "\n", + "agent_executor.invoke(\n", + " {\"input\": \"You are an expert Chartered Accountant from India. Answer the following.\\nMr X bought equity shares on 15th Dec, 2016 for Rs. 10,000. FMV of the shares was Rs. 12,000 as on 31st Jan, 18. He sold the shares on 10th May, 2018 for Rs. 15,000. What will be the long-term capital gain or loss?\"})\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "agent_executor = initialize_agent(tools, llm, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION, verbose=True)\n", + "agent_executor.invoke({\"input\": \"What is the punishment for drinking and driving?\"})" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "W4aLRBjEBOW9", + "outputId": "64ddbae5-5b2b-4e01-8cc9-4699e431f0ac" + }, + "outputs": [], + "source": [ + "together.Models.stop(\"togethercomputer/llama-2-70b-chat\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "65Bmvfjk9MOf" + }, + "outputs": [], + "source": [ + "import re\n", + "\n", + "import numpy as np\n", + "\n", + "from langchain.schema import BaseRetriever\n", + "from langchain.callbacks.manager import (\n", + " AsyncCallbackManagerForRetrieverRun,\n", + " CallbackManagerForRetrieverRun,\n", + ")\n", + "from langchain.utilities import GoogleSerperAPIWrapper\n", + "from langchain.schema import Document\n", + "from typing import Any, List\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "class SerperSearchRetriever(BaseRetriever):\n", + " search: GoogleSerperAPIWrapper = None\n", + "\n", + " def _get_relevant_documents(\n", + " self, query: str, *, run_manager: CallbackManagerForRetrieverRun, **kwargs: Any\n", + " ) -> List[Document]:\n", + " return [Document(page_content=self.search.run(query))]\n", + "\n", + " async def _aget_relevant_documents(\n", + " self,\n", + " query: str,\n", + " *,\n", + " run_manager: AsyncCallbackManagerForRetrieverRun,\n", + " **kwargs: Any,\n", + " ) -> List[Document]:\n", + " raise NotImplementedError()\n", + "\n", + "\n", + "retriever = SerperSearchRetriever(search=GoogleSerperAPIWrapper())\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# We set this so we can see what exactly is going on\n", + "from langchain.chains import FlareChain\n", + "import langchain\n", + "\n", + "langchain.verbose = True\n", + "\n", + "os.environ['OPENAI_API_KEY'] = 'wd'\n", + "\n", + "\n", + "flare = FlareChain.from_llm(\n", + " llm=model,\n", + " retriever=retriever,\n", + " max_generation_len=164,\n", + " min_prob=0.3,\n", + ")\n", + "\n", + "\n", + "query = \"explain in great detail the difference between the langchain framework and baby agi\"\n", + "flare.run(query)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "os.environ[\"SERPER_API_KEY\"] = '94de7df75e512ca1fe42b3f51a034a0f0e4683e0f880f9cf7dee1a0eb36a069e'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.chat_models import ChatOpenAI\n", + "import openai\n", + "from langchain.adapters import openai as lc_openai\n", + "import os\n", + "\n", + "from langchain.agents import initialize_agent, Tool\n", + "from langchain.agents import AgentType\n", + "from langchain.agents import load_tools\n", + "\n", + "openai.api_base = \"http://20.83.177.108:8080/v1\"\n", + "openai.api_key = \"none\"\n", + "\n", + "\n", + "\n", + "# create a request activating streaming response\n", + "# for chunk in openai.ChatCompletion.create(\n", + "# model=\"Qwen\",\n", + "# messages=[\n", + "# {\"role\": \"user\", \"content\": \"Hi\"}\n", + "# ],\n", + "# stream=True\n", + "# # Specifying stop words in streaming output format is not yet supported and is under development.\n", + "# ):\n", + "# if hasattr(chunk.choices[0].delta, \"content\"):\n", + "# print(chunk.choices[0].delta.content, end=\"\", flush=True)\n", + "\n", + "\n", + "# response = openai.ChatCompletion.create(\n", + " # openai_api_base='http://20.83.177.108:8080/v1',\n", + " # openai_api_key='none',\n", + "# model=\"Qwen\",\n", + "# messages=[\n", + "# {\"role\": \"user\", \"content\": \"Hi\"}\n", + "# ],\n", + "# stream=False,\n", + "# # You can add custom stop words here, e.g., stop=[\"Observation:\"] for ReAct prompting.\n", + "# stop=[]\n", + "# )\n", + "# print(response.choices[0].message.content)\n", + "\n", + "\n", + "os.environ[\"SERPAPI_API_KEY\"] = '94de7df75e512ca1fe42b3f51a034a0f0e4683e0f880f9cf7dee1a0eb36a069e'\n", + "llm = ChatOpenAI(openai_api_base='http://20.83.177.108:8080/v1',\n", + " openai_api_key='none',)\n", + "\n", + "tools = load_tools([\"serpapi\", \"llm-math\"], llm=llm)\n", + "\n", + "agent_executor = initialize_agent(\n", + " [*tools], llm, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION, verbose=True)\n", + "\n", + "\n", + "agent_executor.invoke(\n", + " {\"input\": \"?\"})\n", + "\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain.chat_models import ChatOpenAI\n", + "from langchain_experimental.plan_and_execute import PlanAndExecute, load_agent_executor, load_chat_planner\n", + "from langchain.llms import OpenAI\n", + "from langchain.utilities import SerpAPIWrapper\n", + "from langchain.agents.tools import Tool\n", + "from langchain.chains import LLMMathChain\n", + "\n", + "planner = load_chat_planner(llm)\n", + "executor = load_agent_executor(llm, tools, verbose=True)\n", + "plan_agent = PlanAndExecute(planner=planner, executor=executor, verbose=True)\n", + "\n", + "\n", + "plan_agent.run(\n", + " 'I bought a house in 2001 for 20 lakh rupees , i sold it in 2022 for 50 lakhs , what will be my profit?')\n" + ] + } + ], + "metadata": { + "accelerator": "GPU", + "colab": { + "gpuType": "T4", + "machine_shape": "hm", + "provenance": [] + }, + "kernel_info": { + "name": "python3" + }, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.2" + }, + "microsoft": { + "host": { + "AzureML": { + "notebookHasBeenCompleted": true + } + }, + "ms_spell_check": { + "ms_spell_check_language": "en" + } + }, + "nteract": { + "version": "nteract-front-end@1.0.0" + }, + "widgets": { + "application/vnd.jupyter.widget-state+json": { + "0131eff774774716bb6003568076f496": { + "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": "" + } + }, + "054a1877685942f8a9b0d19f0e40ea09": { + "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": "" + } + }, + "05c10e5d60174493af2c49dd0cc55bcc": { + "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_9a963eee8e01456a9c6ff820fc9a1394", + "IPY_MODEL_444abec95fc340c58a63df8a8e71c1d7", + "IPY_MODEL_58ff9c1ea7be4ed4900ef448fe88b6cc" + ], + "layout": "IPY_MODEL_9f3eb6593c4d4bfeb6d7a8f503f1d03c" + } + }, + "06cb9e36eb3e440aa62fa3865a0bf7cb": { + "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_f54192aed0d8415f85a5a32cb18548ad", + "placeholder": "​", + "style": "IPY_MODEL_0131eff774774716bb6003568076f496", + "value": "Downloading (…)ad67c/.gitattributes: 100%" + } + }, + "0846f8c2f3544519a51f06a903fdb912": { + "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": "" + } + }, + "0ded063225bd4930b8c3a84ac0212bed": { + "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": "" + } + }, + "0efdf5a21c674849bf8b2718cbb1cc09": { + "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_1e30c2cf9def45bd8069dc09fbfe844a", + "placeholder": "​", + "style": "IPY_MODEL_548aba40f7314690815320c348e4223b", + "value": " 366/366 [00:00<00:00, 28.4kB/s]" + } + }, + "0fbe66c557be4183815f350a5fc54cea": { + "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_3b609ca6ab7e497891ed09246b19fd02", + "max": 125, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_7860f2ae650f406fbd2dbf5b0b035a7b", + "value": 125 + } + }, + "11c7410fb7a64903beaacf78aed04247": { + "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 + } + }, + "120abc9282ac4eb099153d368c81b2f3": { + "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_67b402cc9e3a41fc881c62764bf0b952", + "placeholder": "​", + "style": "IPY_MODEL_3c0e004a5c5e4308a7720c779ca2c3c0", + "value": "Downloading (…)_Pooling/config.json: 100%" + } + }, + "15efa95fc5904f41a22691b44ef8e884": { + "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_11c7410fb7a64903beaacf78aed04247", + "placeholder": "​", + "style": "IPY_MODEL_35b83316c5fa4bf589af3130e002dabe", + "value": " 190/190 [00:00<00:00, 12.1kB/s]" + } + }, + "1a4810e47dbf451b8a6d3ab2c816bf64": { + "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_a6ff33d70a3c401d8010d3a8f177bf82", + "IPY_MODEL_673c6cdc933542fc9f99cffd106ffee4", + "IPY_MODEL_3fea5bdf46ad46779579d51cd71a6ea7" + ], + "layout": "IPY_MODEL_74b14aa171d042fe91c86cd67c150d91" + } + }, + "1aa15e1bdd8242dcafe1c44898e167cc": { + "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": "" + } + }, + "1b48c1cdb6914bb19074270dab4e175f": { + "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 + } + }, + "1c08a7e8bae84703a5272969e507ade2": { + "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_f97f4652b3964daabd7540e8c84db808", + "IPY_MODEL_0fbe66c557be4183815f350a5fc54cea", + "IPY_MODEL_c9243985fc5c4bcfb5e4782f91bf1f08" + ], + "layout": "IPY_MODEL_da04d057103740a1840ac025db099ba6" + } + }, + "1d45e345641e4cb0a7eb54aeb455cc07": { + "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_d12e11cb3dc54b3fa80c6f744d4eb816", + "max": 52, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_1aa15e1bdd8242dcafe1c44898e167cc", + "value": 52 + } + }, + "1e001fb312664979b6187c5c85ebee7c": { + "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 + } + }, + "1e30c2cf9def45bd8069dc09fbfe844a": { + "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 + } + }, + "1e968f495d78483ab22002cf46e7599a": { + "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_6268fe40a4b44006a43f23c48b4fd73b", + "max": 1519, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_448242d61da2461abcede77139f0b740", + "value": 1519 + } + }, + "2090392ba65446bbb53e7c6fb3261b0d": { + "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 + } + }, + "2114d8772db84490a20b9aa82642f44f": { + "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_3c8ecbe8cea243fc8a709fa1100110d2", + "max": 229, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_81998912dbe2489abbbb84730c5890cc", + "value": 229 + } + }, + "2395734dcfc34fc681327354beb3a86a": { + "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 + } + }, + "264f84496d4144ca97ce6d5aa584dc88": { + "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 + } + }, + "2a565e6a2c314e649fad873b012815d9": { + "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 + } + }, + "2a56adb0d9084371b96fc9bb8d869f80": { + "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": "" + } + }, + "2c97617f883f41e8961a4235712cc73c": { + "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": "" + } + }, + "306369c675c94a1e9d374f75b5952200": { + "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 + } + }, + "33a420fc6fa44e8db19c06451c624c4e": { + "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_b7378b19e6f3469482f141b0af6a8fa7", + "IPY_MODEL_c890dead5ddc45e0817338a9349fd74c", + "IPY_MODEL_ab8775594daf4028b475709a0f24a888" + ], + "layout": "IPY_MODEL_306369c675c94a1e9d374f75b5952200" + } + }, + "35b83316c5fa4bf589af3130e002dabe": { + "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": "" + } + }, + "37421eef29c54855b289cebf13143b09": { + "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": "" + } + }, + "377dbea85b2447208a72bf4256a974b0": { + "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_a689fc2cfdbd44cb8b8efc9a104530e7", + "placeholder": "​", + "style": "IPY_MODEL_0ded063225bd4930b8c3a84ac0212bed", + "value": "Downloading (…)nce_bert_config.json: 100%" + } + }, + "3a907db6f66941419d5d8619cd133624": { + "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 + } + }, + "3b0fb9694f604e1e8d275e517a61d2f2": { + "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 + } + }, + "3b609ca6ab7e497891ed09246b19fd02": { + "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 + } + }, + "3c0e004a5c5e4308a7720c779ca2c3c0": { + "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": "" + } + }, + "3c8ecbe8cea243fc8a709fa1100110d2": { + "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 + } + }, + "3cf6dc01e2a0428d840eebe1029bb8ce": { + "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 + } + }, + "3f9c959a4ae24605abe9f182a4980b42": { + "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 + } + }, + "3fea5bdf46ad46779579d51cd71a6ea7": { + "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_60f2eb478ee84fd8b0bcc35abd1c9179", + "placeholder": "​", + "style": "IPY_MODEL_37421eef29c54855b289cebf13143b09", + "value": " 719/719 [00:00<00:00, 47.3kB/s]" + } + }, + "43aebf595fc0440c9500f0315f88beaa": { + "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 + } + }, + "444abec95fc340c58a63df8a8e71c1d7": { + "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_86eb2d64cbe6467180ab51a9e1b88c97", + "max": 124, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_d24ee1d8b86747748e5e737ad0b459b6", + "value": 124 + } + }, + "448242d61da2461abcede77139f0b740": { + "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": "" + } + }, + "44e4249c3f0e4100aa5bb3ca53084060": { + "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": "" + } + }, + "49823e682b3249ae83c79acf807eadca": { + "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": "" + } + }, + "49ad9ddc3dca4d1d96bc12a59764571f": { + "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_3cf6dc01e2a0428d840eebe1029bb8ce", + "max": 711396, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_502c36fb431241d2ae3cf12807cd5f15", + "value": 711396 + } + }, + "4d22677d3f384744a8297a66f636f051": { + "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 + } + }, + "502c36fb431241d2ae3cf12807cd5f15": { + "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": "" + } + }, + "51c09b1d9214446285e103ee9282e206": { + "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 + } + }, + "53691fa1d8a348728d859395ff2313fa": { + "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 + } + }, + "548aba40f7314690815320c348e4223b": { + "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": "" + } + }, + "54e87d4e5d1c4d5fbb16a92270ae6c54": { + "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": "" + } + }, + "58002026e9ff43ed94d85bae003d2e84": { + "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": "" + } + }, + "58231fd9a4f74188877e36047e5e17a9": { + "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": "" + } + }, + "58ff9c1ea7be4ed4900ef448fe88b6cc": { + "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_2395734dcfc34fc681327354beb3a86a", + "placeholder": "​", + "style": "IPY_MODEL_0846f8c2f3544519a51f06a903fdb912", + "value": " 124/124 [00:00<00:00, 9.49kB/s]" + } + }, + "599e033fa98f44819af4c2d7048fbfb4": { + "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_8f60547b75a34645ad6f02f610c1ac31", + "IPY_MODEL_c4ca4c02ad0e451dae2cce9c2a26ec8d", + "IPY_MODEL_f0bc30cc5e1d4f5a869800ac835a6943" + ], + "layout": "IPY_MODEL_6bfa3a255e8f4b799219b76cd6dfed0b" + } + }, + "5a39b11a60c246d3a18ae934055528cd": { + "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_f235594eb8904996ba571ac9fef56186", + "max": 437997357, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_054a1877685942f8a9b0d19f0e40ea09", + "value": 437997357 + } + }, + "5f176465351944c7b2bc28b91594428b": { + "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": "" + } + }, + "5f9e237c28fa46b3bc82f3cf788a952d": { + "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_53691fa1d8a348728d859395ff2313fa", + "placeholder": "​", + "style": "IPY_MODEL_58231fd9a4f74188877e36047e5e17a9", + "value": "Downloading (…)baad67c/modules.json: 100%" + } + }, + "60f2eb478ee84fd8b0bcc35abd1c9179": { + "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 + } + }, + "62313c10697f482590fb4eee271540bf": { + "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": "" + } + }, + "6268fe40a4b44006a43f23c48b4fd73b": { + "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 + } + }, + "65a19b80971f4f16ae486e0b33a920d9": { + "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_8d7cae1057ef41e38b8d3bd8d71127b4", + "placeholder": "​", + "style": "IPY_MODEL_b23961b8865f44e685351b732acfd160", + "value": " 1.52k/1.52k [00:00<00:00, 60.1kB/s]" + } + }, + "65e13b52d29c4d08bafba8bda728bd5f": { + "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": "" + } + }, + "673c6cdc933542fc9f99cffd106ffee4": { + "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_1e001fb312664979b6187c5c85ebee7c", + "max": 719, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_df82a6c3b7c14698b50360b440667698", + "value": 719 + } + }, + "67b402cc9e3a41fc881c62764bf0b952": { + "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 + } + }, + "6bfa3a255e8f4b799219b76cd6dfed0b": { + "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 + } + }, + "6c7f23dfac85466685361cc5bc6d2414": { + "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 + } + }, + "70ecd38ec9664d5f824589a02e5cfb13": { + "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 + } + }, + "7149671d48db4dddaf9ccd8d2dea5d80": { + "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_6c7f23dfac85466685361cc5bc6d2414", + "placeholder": "​", + "style": "IPY_MODEL_b241b6209e034e33a24b8ba7eeba8285", + "value": " 52.0/52.0 [00:00<00:00, 4.58kB/s]" + } + }, + "72336b98bb664e598f8da434dea12bcf": { + "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_06cb9e36eb3e440aa62fa3865a0bf7cb", + "IPY_MODEL_1e968f495d78483ab22002cf46e7599a", + "IPY_MODEL_65a19b80971f4f16ae486e0b33a920d9" + ], + "layout": "IPY_MODEL_e99f15fea33a4bcfb98bb21e581e77f7" + } + }, + "74b14aa171d042fe91c86cd67c150d91": { + "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 + } + }, + "7860f2ae650f406fbd2dbf5b0b035a7b": { + "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": "" + } + }, + "7906c529005c4a159403444bb8e4df95": { + "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 + } + }, + "81998912dbe2489abbbb84730c5890cc": { + "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": "" + } + }, + "83386ff94da24656a1ae65471b55f312": { + "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": "" + } + }, + "83b683c844a549ae9b0a647dc87cd2bc": { + "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 + } + }, + "85b1e48e37dd439da9ab97ae84e841ee": { + "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": "" + } + }, + "86eb2d64cbe6467180ab51a9e1b88c97": { + "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 + } + }, + "8811e27cb7b24fe7a30bbef63c8b034d": { + "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_120abc9282ac4eb099153d368c81b2f3", + "IPY_MODEL_dd39941179714219a4fbd70898e77c36", + "IPY_MODEL_15efa95fc5904f41a22691b44ef8e884" + ], + "layout": "IPY_MODEL_3a907db6f66941419d5d8619cd133624" + } + }, + "88d16f0c12824d698be908bed4efafc9": { + "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_5f9e237c28fa46b3bc82f3cf788a952d", + "IPY_MODEL_2114d8772db84490a20b9aa82642f44f", + "IPY_MODEL_cb38a38b867846ddae5b51176dd37ef9" + ], + "layout": "IPY_MODEL_a0f6807767154e328dab28d7547bbfee" + } + }, + "8c53a2d79f2f4c38b47718c614707250": { + "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 + } + }, + "8d7cae1057ef41e38b8d3bd8d71127b4": { + "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 + } + }, + "8f60547b75a34645ad6f02f610c1ac31": { + "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_db0209e961d64aba9d4c3a8991de2016", + "placeholder": "​", + "style": "IPY_MODEL_f95edd8ea46a486dadae84f43f316eb6", + "value": "Downloading (…)757baad67c/README.md: 100%" + } + }, + "94a73b26bf0144abb64f0cf4c64d385d": { + "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 + } + }, + "94eb8f0f65c44616a083c381614b6617": { + "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": "" + } + }, + "959d049d809248e49f029b5389b22a90": { + "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_4d22677d3f384744a8297a66f636f051", + "placeholder": "​", + "style": "IPY_MODEL_5f176465351944c7b2bc28b91594428b", + "value": "Downloading (…)okenizer_config.json: 100%" + } + }, + "988ad9b09380430cbf39cd3abdfbd6ff": { + "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": "" + } + }, + "9a19badd95594721b3f5fef44bd3d709": { + "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": "" + } + }, + "9a963eee8e01456a9c6ff820fc9a1394": { + "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_ba685441301d43a3949b99927221c2b0", + "placeholder": "​", + "style": "IPY_MODEL_83386ff94da24656a1ae65471b55f312", + "value": "Downloading (…)ce_transformers.json: 100%" + } + }, + "9b805c8d7629453bb83ce2044bea26b0": { + "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": "" + } + }, + "9f3eb6593c4d4bfeb6d7a8f503f1d03c": { + "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 + } + }, + "9fc0c24783a448c48385f9b3dfde2fbf": { + "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_83b683c844a549ae9b0a647dc87cd2bc", + "placeholder": "​", + "style": "IPY_MODEL_62313c10697f482590fb4eee271540bf", + "value": "Downloading (…)ad67c/tokenizer.json: 100%" + } + }, + "a0f6807767154e328dab28d7547bbfee": { + "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 + } + }, + "a4066ca4095649049bdb4607dbb14cb5": { + "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_1b48c1cdb6914bb19074270dab4e175f", + "placeholder": "​", + "style": "IPY_MODEL_9a19badd95594721b3f5fef44bd3d709", + "value": " 438M/438M [01:30<00:00, 5.38MB/s]" + } + }, + "a689fc2cfdbd44cb8b8efc9a104530e7": { + "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 + } + }, + "a6ff33d70a3c401d8010d3a8f177bf82": { + "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_bc1b2a86311b4f21b284a175b104efe0", + "placeholder": "​", + "style": "IPY_MODEL_9b805c8d7629453bb83ce2044bea26b0", + "value": "Downloading (…)7baad67c/config.json: 100%" + } + }, + "aa1c0efe0b5646a89cb23b6642a0dbb4": { + "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_9fc0c24783a448c48385f9b3dfde2fbf", + "IPY_MODEL_49ad9ddc3dca4d1d96bc12a59764571f", + "IPY_MODEL_c5303b4931ea44519318b9bb209f634d" + ], + "layout": "IPY_MODEL_51c09b1d9214446285e103ee9282e206" + } + }, + "ab8775594daf4028b475709a0f24a888": { + "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_2090392ba65446bbb53e7c6fb3261b0d", + "placeholder": "​", + "style": "IPY_MODEL_d1090f09758d4e7a8b3047f6adb15733", + "value": " 232k/232k [00:00<00:00, 1.11MB/s]" + } + }, + "aba560edd18940c4abe09c0fa7263bb1": { + "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 + } + }, + "b23961b8865f44e685351b732acfd160": { + "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": "" + } + }, + "b241b6209e034e33a24b8ba7eeba8285": { + "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": "" + } + }, + "b72122ea1c3f4b568972d051e6ffa5a8": { + "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_2a565e6a2c314e649fad873b012815d9", + "max": 366, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_988ad9b09380430cbf39cd3abdfbd6ff", + "value": 366 + } + }, + "b7378b19e6f3469482f141b0af6a8fa7": { + "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_aba560edd18940c4abe09c0fa7263bb1", + "placeholder": "​", + "style": "IPY_MODEL_94eb8f0f65c44616a083c381614b6617", + "value": "Downloading (…)757baad67c/vocab.txt: 100%" + } + }, + "b9935d3733ab4538a9c6c098808bca91": { + "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_fd050344a8b7417294272972622b1e50", + "IPY_MODEL_5a39b11a60c246d3a18ae934055528cd", + "IPY_MODEL_a4066ca4095649049bdb4607dbb14cb5" + ], + "layout": "IPY_MODEL_3b0fb9694f604e1e8d275e517a61d2f2" + } + }, + "ba685441301d43a3949b99927221c2b0": { + "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 + } + }, + "bc1b2a86311b4f21b284a175b104efe0": { + "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 + } + }, + "c4ca4c02ad0e451dae2cce9c2a26ec8d": { + "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_43aebf595fc0440c9500f0315f88beaa", + "max": 78737, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_58002026e9ff43ed94d85bae003d2e84", + "value": 78737 + } + }, + "c5303b4931ea44519318b9bb209f634d": { + "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_94a73b26bf0144abb64f0cf4c64d385d", + "placeholder": "​", + "style": "IPY_MODEL_44e4249c3f0e4100aa5bb3ca53084060", + "value": " 711k/711k [00:00<00:00, 1.09MB/s]" + } + }, + "c566fb3083984a5e894584249467ae4d": { + "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_959d049d809248e49f029b5389b22a90", + "IPY_MODEL_b72122ea1c3f4b568972d051e6ffa5a8", + "IPY_MODEL_0efdf5a21c674849bf8b2718cbb1cc09" + ], + "layout": "IPY_MODEL_da5d4e9910114cdfb8d1700124db3c43" + } + }, + "c890dead5ddc45e0817338a9349fd74c": { + "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_ecd8be14e0cd44679787aeab059516bf", + "max": 231508, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_2a56adb0d9084371b96fc9bb8d869f80", + "value": 231508 + } + }, + "c9243985fc5c4bcfb5e4782f91bf1f08": { + "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_f59159361af34c768bc5158ad49844e1", + "placeholder": "​", + "style": "IPY_MODEL_85b1e48e37dd439da9ab97ae84e841ee", + "value": " 125/125 [00:00<00:00, 10.7kB/s]" + } + }, + "cb38a38b867846ddae5b51176dd37ef9": { + "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_264f84496d4144ca97ce6d5aa584dc88", + "placeholder": "​", + "style": "IPY_MODEL_2c97617f883f41e8961a4235712cc73c", + "value": " 229/229 [00:00<00:00, 20.4kB/s]" + } + }, + "d1090f09758d4e7a8b3047f6adb15733": { + "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": "" + } + }, + "d12e11cb3dc54b3fa80c6f744d4eb816": { + "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 + } + }, + "d24ee1d8b86747748e5e737ad0b459b6": { + "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": "" + } + }, + "da04d057103740a1840ac025db099ba6": { + "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 + } + }, + "da5d4e9910114cdfb8d1700124db3c43": { + "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 + } + }, + "db0209e961d64aba9d4c3a8991de2016": { + "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 + } + }, + "dd39941179714219a4fbd70898e77c36": { + "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_8c53a2d79f2f4c38b47718c614707250", + "max": 190, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_65e13b52d29c4d08bafba8bda728bd5f", + "value": 190 + } + }, + "df82a6c3b7c14698b50360b440667698": { + "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": "" + } + }, + "e99f15fea33a4bcfb98bb21e581e77f7": { + "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 + } + }, + "ecb2e4310050497ca02326ff23f4e67a": { + "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_377dbea85b2447208a72bf4256a974b0", + "IPY_MODEL_1d45e345641e4cb0a7eb54aeb455cc07", + "IPY_MODEL_7149671d48db4dddaf9ccd8d2dea5d80" + ], + "layout": "IPY_MODEL_3f9c959a4ae24605abe9f182a4980b42" + } + }, + "ecd8be14e0cd44679787aeab059516bf": { + "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 + } + }, + "f0bc30cc5e1d4f5a869800ac835a6943": { + "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_70ecd38ec9664d5f824589a02e5cfb13", + "placeholder": "​", + "style": "IPY_MODEL_54e87d4e5d1c4d5fbb16a92270ae6c54", + "value": " 78.7k/78.7k [00:00<00:00, 365kB/s]" + } + }, + "f235594eb8904996ba571ac9fef56186": { + "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 + } + }, + "f54192aed0d8415f85a5a32cb18548ad": { + "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 + } + }, + "f59159361af34c768bc5158ad49844e1": { + "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 + } + }, + "f5ab1675368e483787ff2da9050ff2d5": { + "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": "" + } + }, + "f6ceba2c8e944e07ac37335f6bc27775": { + "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 + } + }, + "f95edd8ea46a486dadae84f43f316eb6": { + "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": "" + } + }, + "f97f4652b3964daabd7540e8c84db808": { + "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_f6ceba2c8e944e07ac37335f6bc27775", + "placeholder": "​", + "style": "IPY_MODEL_49823e682b3249ae83c79acf807eadca", + "value": "Downloading (…)cial_tokens_map.json: 100%" + } + }, + "fd050344a8b7417294272972622b1e50": { + "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_7906c529005c4a159403444bb8e4df95", + "placeholder": "​", + "style": "IPY_MODEL_f5ab1675368e483787ff2da9050ff2d5", + "value": "Downloading pytorch_model.bin: 100%" + } + } + } + } + }, + "nbformat": 4, + "nbformat_minor": 0 +}