{ "cells": [ { "cell_type": "markdown", "id": "fe8e99aa", "metadata": { "id": "fe8e99aa", "papermill": { "duration": 0.006834, "end_time": "2024-08-27T17:13:37.902668", "exception": false, "start_time": "2024-08-27T17:13:37.895834", "status": "completed" }, "tags": [] }, "source": [ "## Setting Up" ] }, { "cell_type": "code", "execution_count": null, "id": "153bafbb", "metadata": { "_cell_guid": "b1076dfc-b9ad-4769-8c92-a6c4dae69d19", "_uuid": "8f2839f25d086af736a60e9eeb907d3b93b6e0e5", "execution": { "iopub.execute_input": "2024-08-27T17:13:37.916183Z", "iopub.status.busy": "2024-08-27T17:13:37.915824Z", "iopub.status.idle": "2024-08-27T17:15:32.677692Z", "shell.execute_reply": "2024-08-27T17:15:32.676415Z" }, "id": "153bafbb", "papermill": { "duration": 114.771688, "end_time": "2024-08-27T17:15:32.680456", "exception": false, "start_time": "2024-08-27T17:13:37.908768", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "%%capture\n", "\n", "%pip install langchain langchain-community\n", "%pip install langchainhub\n", "%pip install langchain-chroma\n", "%pip install langchain-groq\n", "%pip install langchain-huggingface\n", "%pip install gradio" ] }, { "cell_type": "code", "execution_count": null, "id": "75c11425", "metadata": { "execution": { "iopub.execute_input": "2024-08-27T17:15:32.695149Z", "iopub.status.busy": "2024-08-27T17:15:32.694425Z", "iopub.status.idle": "2024-08-27T17:15:33.004252Z", "shell.execute_reply": "2024-08-27T17:15:33.003215Z" }, "id": "75c11425", "papermill": { "duration": 0.319786, "end_time": "2024-08-27T17:15:33.006674", "exception": false, "start_time": "2024-08-27T17:15:32.686888", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "from google.colab import userdata\n", "\n", "groq_api_key = userdata.get('GROQ_API_KEY')" ] }, { "cell_type": "code", "execution_count": null, "id": "wjTFort567QH", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "wjTFort567QH", "outputId": "e10d65d4-fef0-41f1-cfac-aa50ae360f3e" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Archive: /content/archive.zip\n", " inflating: /content/KaggleX_Starwars/csv/battles.csv \n", " inflating: /content/KaggleX_Starwars/csv/characters.csv \n", " inflating: /content/KaggleX_Starwars/csv/cities.csv \n", " inflating: /content/KaggleX_Starwars/csv/droids.csv \n", " inflating: /content/KaggleX_Starwars/csv/events.csv \n", " inflating: /content/KaggleX_Starwars/csv/films.csv \n", " inflating: /content/KaggleX_Starwars/csv/music.csv \n", " inflating: /content/KaggleX_Starwars/csv/organizations.csv \n", " inflating: /content/KaggleX_Starwars/csv/planets.csv \n", " inflating: /content/KaggleX_Starwars/csv/quotes.csv \n", " inflating: /content/KaggleX_Starwars/csv/species.csv \n", " inflating: /content/KaggleX_Starwars/csv/starships.csv \n", " inflating: /content/KaggleX_Starwars/csv/timeline.csv \n", " inflating: /content/KaggleX_Starwars/csv/vehicles.csv \n", " inflating: /content/KaggleX_Starwars/csv/weapons.csv \n", " inflating: /content/KaggleX_Starwars/parquet_files/battles.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/characters.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/cities.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/droids.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/events.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/films.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/music.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/organizations.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/planets.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/quotes.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/species.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/starships.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/timeline.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/vehicles.parquet \n", " inflating: /content/KaggleX_Starwars/parquet_files/weapons.parquet \n", " inflating: /content/KaggleX_Starwars/star_wars.db \n", " inflating: /content/KaggleX_Starwars/star_wars.duckdb \n" ] } ], "source": [ "!unzip /content/archive.zip -d /content/KaggleX_Starwars" ] }, { "cell_type": "markdown", "id": "77ad6fbe", "metadata": { "id": "77ad6fbe", "papermill": { "duration": 0.005808, "end_time": "2024-08-27T17:15:33.018770", "exception": false, "start_time": "2024-08-27T17:15:33.012962", "status": "completed" }, "tags": [] }, "source": [ "## Groq Python API" ] }, { "cell_type": "code", "execution_count": null, "id": "064b20ee", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "execution": { "iopub.execute_input": "2024-08-27T17:15:33.032341Z", "iopub.status.busy": "2024-08-27T17:15:33.031981Z", "iopub.status.idle": "2024-08-27T17:15:34.842277Z", "shell.execute_reply": "2024-08-27T17:15:34.841324Z" }, "id": "064b20ee", "outputId": "75e5f245-96b4-4135-d30f-eff3d0811a27", "papermill": { "duration": 1.819728, "end_time": "2024-08-27T17:15:34.844440", "exception": false, "start_time": "2024-08-27T17:15:33.024712", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "A data lake is a centralized repository that stores raw, unprocessed data in its native format, allowing for easy access, processing, and analysis. Here's a breakdown of how a data lake works:\n", "\n", "**Key Components:**\n", "\n", "1. **Data Ingestion**: Data is collected from various sources, such as databases, APIs, files, and IoT devices. This data is then ingested into the data lake using tools like Apache NiFi, Apache Flume, or AWS Kinesis.\n", "2. **Data Storage**: The ingested data is stored in a scalable and cost-effective storage system, such as Hadoop Distributed File System (HDFS), Amazon S3, or Azure Data Lake Storage (ADLS).\n", "3. **Data Processing**: Data is processed using various tools and frameworks, such as Apache Spark, Apache Flink, or AWS Glue, to transform, aggregate, and analyze the data.\n", "4. **Data Governance**: Data governance ensures that data is properly managed, secured, and compliant with regulations. This includes data quality, metadata management, and access control.\n", "\n", "**Data Lake Architecture:**\n", "\n", "1. **Raw Data**: Raw data is stored in its native format, without any processing or transformation.\n", "2. **Processed Data**: Processed data is stored in a structured format, such as CSV or Parquet, for easier querying and analysis.\n", "3. **Metadata**: Metadata is stored separately to provide context and information about the data, such as data lineage, provenance, and schema.\n", "\n", "**Benefits:**\n", "\n", "1. **Scalability**: Data lakes can handle large volumes of data and scale horizontally to meet growing demands.\n", "2. **Flexibility**: Data lakes can store data in various formats, making it easier to integrate with different tools and frameworks.\n", "3. **Cost-Effective**: Data lakes can reduce storage costs by storing data in its native format, without the need for expensive data processing and transformation.\n", "4. **Improved Insights**: Data lakes enable faster and more accurate insights by providing access to raw, unprocessed data.\n", "\n", "**Common Use Cases:**\n", "\n", "1. **Data Warehousing**: Data lakes can serve as a data warehouse, providing a centralized repository for data analysis and reporting.\n", "2. **Machine Learning**: Data lakes can provide a vast amount of data for machine learning model training and testing.\n", "3. **IoT Data**: Data lakes can store and process IoT data from various devices and sensors.\n", "4. **Data Science**: Data lakes can provide a platform for data scientists to explore and analyze large datasets.\n", "\n", "**Challenges:**\n", "\n", "1. **Data Quality**: Ensuring data quality and consistency across different sources and formats.\n", "2. **Data Governance**: Managing data governance, security, and compliance in a data lake environment.\n", "3. **Data Integration**: Integrating data from various sources and formats into a single data lake.\n", "4. **Scalability**: Scaling data lakes to meet growing demands and handle large volumes of data.\n", "\n", "In summary, a data lake is a centralized repository that stores raw, unprocessed data in its native format, allowing for easy access, processing, and analysis. It provides scalability, flexibility, and cost-effectiveness, making it an ideal solution for various use cases, including data warehousing, machine learning, IoT data, and data science. However, it also presents challenges related to data quality, governance, integration, and scalability.None" ] } ], "source": [ "from groq import Groq\n", "\n", "client = Groq(\n", " api_key=groq_api_key,\n", ")\n", "\n", "\n", "chat_streaming = client.chat.completions.create(\n", " messages=[\n", " {\"role\": \"system\", \"content\": \"You are a professional Data Engineer.\"},\n", " {\"role\": \"user\", \"content\": \"Can you explain how the data lake works?\"},\n", " ],\n", " model=\"llama-3.1-8b-instant\",\n", " temperature=0.3,\n", " max_tokens=1200,\n", " top_p=1,\n", " stop=None,\n", " stream=True,\n", ")\n", "\n", "for chunk in chat_streaming:\n", " print(chunk.choices[0].delta.content, end=\"\")" ] }, { "cell_type": "markdown", "id": "a01a9a83", "metadata": { "id": "a01a9a83", "papermill": { "duration": 0.006275, "end_time": "2024-08-27T17:15:34.857294", "exception": false, "start_time": "2024-08-27T17:15:34.851019", "status": "completed" }, "tags": [] }, "source": [ "## Initiating LLM" ] }, { "cell_type": "code", "execution_count": null, "id": "ed01e824", "metadata": { "execution": { "iopub.execute_input": "2024-08-27T17:15:34.871298Z", "iopub.status.busy": "2024-08-27T17:15:34.870981Z", "iopub.status.idle": "2024-08-27T17:15:35.405798Z", "shell.execute_reply": "2024-08-27T17:15:35.405011Z" }, "id": "ed01e824", "papermill": { "duration": 0.544475, "end_time": "2024-08-27T17:15:35.408162", "exception": false, "start_time": "2024-08-27T17:15:34.863687", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "from langchain_groq import ChatGroq\n", "\n", "llm = ChatGroq(model=\"llama-3.1-70b-versatile\",api_key=groq_api_key)" ] }, { "cell_type": "markdown", "id": "3dcfc2a6", "metadata": { "id": "3dcfc2a6", "papermill": { "duration": 0.006231, "end_time": "2024-08-27T17:15:35.422152", "exception": false, "start_time": "2024-08-27T17:15:35.415921", "status": "completed" }, "tags": [] }, "source": [ "## Initiating Embedding Model" ] }, { "cell_type": "code", "execution_count": null, "id": "82d2a79a", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 528, "referenced_widgets": [ "9307039729d64b92a04bfbde3742730a", "8fc3f933b58a4b6ab2848372a264c9fe", "6894d52c728246ad8478c28c8a828d69", "ea09282aa6b84295a8b36f5b97398635", "18b5ea126dd64e1684b29d38def81d55", "e89a43eac15d4da4a00a592e6b3ce37a", "74fe5fad1de341149047ce19cdde00f3", "5d6f1da1ee8d4bd9af91a6155f3f5fe6", "e4c33cc6fb4c4a24a683198c999f7e5a", "53dff9e90ee94658be2134107a642bc4", "e9d38ee71de743cc89b8fdb7711c2499", "37b8e8e958564f34adf7b6853cf90c57", "45d9792f48a745c1b5a7ec396692edb0", "b6b43dc7506c46519567ff0d0ce5eacc", "956d7a8143854688ad460026b1214724", "39701cfec4a84de69e1765b6bbeb5cfe", "3f589501f63f4cba91cb4c28e3d2b796", "10e317e492f14be0bb6ccf85b18da736", "43aab4c0451b4e7abeac2d91f65695dc", "1c54642af9ce4cb994d3f8f3393d1e4d", "8532ce6a59264d5fb8eb5aab9e69cac9", "02205aaafd1e419882bc0bb50dbd1533", "76207a784e0441be89b9730da5398599", "2d31c6ca590b40439d1d855a377f90b6", "9a75fc7db1cc4b7e90e7fe9a18f3376c", "2d39d8803dc54ab0be5461a58f360146", "2d233278de654f38b360683ba3b3928d", "fea2080278524f3c9bb8c4f2d7c0bc0d", "e2c203bcebc44098935ca52ceee52531", "adeb6d4d49ed4940ada4f44cd361b8df", "5e7778a3fc474f81959e4be356d8f4ed", "bb87f0508f8940ef8915b3d0bc5961b4", "c1283c0162cd4c5eadbb433ed69e740d", "f5043ec38597463aaa23c288a20f099d", "ff3e16ab8da04b90bca0f12da897e97b", "42de9095fbe1462d9b6ccb197af9f4a6", "3133a5981e6c464da0d3d3a63049d0d0", "8a253fae243e411a92b289a6a6dfc8d3", "030ea8750a9c426388f73419c6ee506f", "26bf5203a2eb4ecca89a427defd4c12e", "d83a03b0ba1a4682ac8a5787798cc7fb", "b2b466a7faa144ea9914ea9b5bd62574", "84b64bd18ea74c879159c28933efc807", "2d4c1fefbe474121b4300fa89c050672", "ace847f9c00342caa111b92c0753c4a9", "44585681fa0d4dcbb9b46e6495094807", "2052251fcfbd4a419399bf2b8709242e", "9c70ffbb81eb43ac86c1b31430dca328", "aa256b13060f44ea9648d9afcb5a8a9b", "3e016bed0a1346f0830033f39ef567ba", "f20f0f90d8764e2f89d2f671718aae9d", "4fb04cbe66ed41728b50a11b97af44c0", "02b35dbbc3d04099a461bc810c8afcea", "9f79de43d652483ba5c85f8ce9369e40", "905a7f35b72c43dd9c7bbbbeb4017dd2", "1f4d710ce99a4f4185486f097f5b1577", "10473ca3a11047e18e28b247548aae67", "10241307ce974179818c431b2615329c", "331cec38094e464181185f46a23c4212", "8c2bda4940ba4f62b390549490271f2d", "90d8f8e958324c7aa18c89218367128a", "ee73403e580c4aaca1fbfac8bd6ef2df", "71e8ee376d044761a04f7e7a88a511d4", "d9bd65e68e8849dbb9ae53eb35ac7f8b", "ca3d5d7544cd4ceca8792a69bfee5956", "4da3352088e8449997c982680d2ae9ac", "af20b0e55f6d4e3ab208e44034a6d6f5", "ee2237b4cfb042b18b9f0b3d89d1cbf4", "63d75dcb38d9439380d42c034d100177", "1f99e5d487c643cdadcbd7310a1d622f", "07df4c99a8be43f6bd3004025f0656c8", "bf47c8e2438848c1b89ac3694406009e", "49a66e2ca9e84d30bc09badd8073eff2", "9c2b49cdcda14eeaa3a480bd262ec8bb", "d9a19232144442a0b4c695a6382b2831", "974d62b5dcd64007b3e7e6dc4600c736", "8109774f97ec475ea94d44da07a740ce", "ba25883622b042e6adba6f645d64e9cf", "1d4d21ad09234f7d9f2c21581cc0bd05", "974fdd6ae0064a23b9b4a015f20a2a7b", "56f3b7d4aa604e6bb33c6c1dea35e0e3", "b627305f4804448fbb0083b4980c7659", "c7d4f10082444737ba80077f13207fc7", "b9dbca209f9b4c7a9758e4da0b1bdf08", "003c4a99b5b14454bb2fa77243e33bfc", "77ec0a2d1f3d4d94a7a0bfb108f54972", "26dd5445997b45d38be58709a19a36e9", "fdcefb8da1794485bda07d800113438e", "fe2e19f775db4180b12d000cbac896d5", "7c093e07bf264c26905bc45605bbbbad", "3a5a5fc6bd594d8f897b0007fbecb347", "70400ea99a0c49688dbb3096b2bfbaec", "5fb70642791f41b1a88b51b03eff3cb6", "e74c91f72d644ff19c97727efeba6613", "01ddca3f82c54922833d1702cfbdaef3", "b355ff92ffac426582be3ee0c5fa27d5", "ffe8af7db18a4f199892e879c71cadf9", "773d50996bd24922a0068ea0da8b2a87", "36bb83d63128455da8b1de66c7c23e04", "6b66ccd5875641caa84afe669dd39dd1", "3c36053161b24c719a9b72dc9f5d21b9", "84895f54357e426c86c3b4810c0300b0", "42342e4ea6654905b1d1dd194318e53d", "222b144db5be41f6b9beb4a655e0f926", "91bd27434931435ca6cc64b7464f7cfb", "7e2bb01ba968472a86c3719437142975", "76911d50cb71449ab41bded344f08285", "b58d4851c8574d3fbf056b44a4e49efd", "9533ae6a25504559bff98169b1a01e5e", "7365e2a013264875994acdff17fc8a4c", "be41a5e6be984afb898baf0be20a9d46", "605ba75ec8bd46a8b3d8642d4f96c1d6", "25dc4febced04e378f08c695c92a4de2", "07ab739dda4543a4b74e9b92d498f5ac", "d8d072f9c1ff4dc48c870bf127d9e70e", "8708310febdd45e8874f22f633855a2a", "29d904db171b4faab519f9c23a37f2a5", "6074485b2dbb4d03bea3f256b326832c", "204221b8181f4c298459ce37db1b734a", "91d03b52ebe14ba9bf814f88161730d0", "e33db282cdce4601b00bf982d31ffd95" ] }, "execution": { "iopub.execute_input": "2024-08-27T17:15:35.436752Z", "iopub.status.busy": "2024-08-27T17:15:35.435984Z", "iopub.status.idle": "2024-08-27T17:16:15.114738Z", "shell.execute_reply": "2024-08-27T17:16:15.113787Z" }, "id": "82d2a79a", "outputId": "2abd9ba5-a22e-48bb-b043-48d7162b73a5", "papermill": { "duration": 39.688638, "end_time": "2024-08-27T17:16:15.117074", "exception": false, "start_time": "2024-08-27T17:15:35.428436", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/usr/local/lib/python3.10/dist-packages/sentence_transformers/cross_encoder/CrossEncoder.py:11: TqdmExperimentalWarning: Using `tqdm.autonotebook.tqdm` in notebook mode. Use `tqdm.tqdm` instead to force console mode (e.g. in jupyter console)\n", " from tqdm.autonotebook import tqdm, trange\n", "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_token.py:89: UserWarning: \n", "The secret `HF_TOKEN` does not exist in your Colab secrets.\n", "To authenticate with the Hugging Face Hub, create a token in your settings tab (https://huggingface.co./settings/tokens), set it as secret in your Google Colab and restart your session.\n", "You will be able to reuse this secret in all of your notebooks.\n", "Please note that authentication is recommended but still optional to access public models or datasets.\n", " warnings.warn(\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9307039729d64b92a04bfbde3742730a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "modules.json: 0%| | 0.00/229 [00:00" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from IPython.display import display, Markdown\n", "\n", "response = rag_chain.invoke(\"Which battle resulted in Rebel Victory?\")\n", "Markdown(response)" ] }, { "cell_type": "code", "execution_count": null, "id": "f47dfe6c", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "execution": { "iopub.execute_input": "2024-08-27T17:16:22.159262Z", "iopub.status.busy": "2024-08-27T17:16:22.158565Z", "iopub.status.idle": "2024-08-27T17:16:23.018815Z", "shell.execute_reply": "2024-08-27T17:16:23.017824Z" }, "id": "f47dfe6c", "outputId": "96ae045c-d1d7-4d02-b8b5-7412a209b108", "papermill": { "duration": 0.872252, "end_time": "2024-08-27T17:16:23.021064", "exception": false, "start_time": "2024-08-27T17:16:22.148812", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Based on the provided documents, the timeline of the Star Wars cannot be determined with certainty. However, there are two relevant pieces of information:\n", "\n", "1. The Battle of Endor occurred 4 years after the Battle of Yavin (presumably the Battle of Yavin occurred at the time of the events in Episode IV: A New Hope, as Episode IV: A New Hope is the fourth installment in the original trilogy, and the title of the document with the Battle of Endor is \"id: 3\\nevent: Battle of Endor\\nyear: 4 ABY\").\n", "2. Based on the release dates of the films, the order of the films is as follows: Episode I: The Phantom Menace (1999), Episode II: (not provided in the documents), Episode III: (not provided in the documents), Episode IV: A New Hope (1977), Episode V: The Empire Strikes Back (1980), Episode VI: (not provided in the documents), Episode VII: (not provided in the documents), Episode VIII: (not provided in the documents), Episode IX: (not provided in the documents), Episode X: (not provided in the documents), and Episode XI: (not provided in the documents).\n", "\n", "However, it is worth noting that Episodes I-III are a prequel trilogy, which chronologically occurs before the original trilogy (Episodes IV-VI), and Episodes VII-IX are a sequel trilogy, which chronologically occurs after the original trilogy.\n", "\n", "However, since Episodes II and III are not provided in the documents, and Episodes VII-IX, and the release dates of the prequels, the timeline of the Star Wars is incomplete and cannot be accurately determined based on the provided information." ] } ], "source": [ "query = \"What is the timeline of the Starwars?\"\n", "\n", "for chunk in rag_chain.stream(query):\n", " print(chunk, end=\"\")" ] }, { "cell_type": "markdown", "id": "QyAH56wo0F3-", "metadata": { "id": "QyAH56wo0F3-" }, "source": [ "## Gradio App" ] }, { "cell_type": "code", "execution_count": null, "id": "LIL8HO7p_Tdj", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 645 }, "id": "LIL8HO7p_Tdj", "outputId": "e2301fea-4183-4a40-9094-cfd4437e9a55" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Setting queue=True in a Colab notebook requires sharing enabled. Setting `share=True` (you can turn this off by setting `share=False` in `launch()` explicitly).\n", "\n", "Colab notebook detected. To show errors in colab notebook, set debug=True in launch()\n", "Running on public URL: https://f03fd9f0388410af8e.gradio.live\n", "\n", "This share link expires in 72 hours. For free permanent hosting and GPU upgrades, run `gradio deploy` from Terminal to deploy to Spaces (https://huggingface.co./spaces)\n" ] }, { "data": { "text/html": [ "
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [] }, "execution_count": 48, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import gradio as gr\n", "\n", "def rag_memory_stream(text):\n", " partial_text = \"\"\n", " for new_text in rag_chain.stream(text):\n", " partial_text += new_text\n", " # Yield an empty string to cleanup the message textbox and the updated conversation history\n", " yield partial_text\n", "\n", "\n", "title = \"Real-time AI App with Groq API and LangChain\"\n", "demo = gr.Interface(\n", " title=title,\n", " fn=rag_memory_stream,\n", " inputs=\"text\",\n", " outputs=\"text\",\n", " live=True,\n", " batch=True,\n", " max_batch_size=10000,\n", " concurrency_limit=16\n", ")\n", "\n", "demo.queue()\n", "demo.launch()" ] } ], "metadata": { "accelerator": "GPU", "colab": { "gpuType": "T4", "provenance": [] }, "kaggle": { "accelerator": "gpu", "dataSources": [ { "datasetId": 239296, "sourceId": 8731275, "sourceType": "datasetVersion" } ], "dockerImageVersionId": 30762, "isGpuEnabled": true, "isInternetEnabled": true, "language": "python", "sourceType": "notebook" }, "kernelspec": { "display_name": "Python 3", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.14" }, "papermill": { "default_parameters": {}, "duration": 178.14668, "end_time": "2024-08-27T17:16:33.239424", "environment_variables": {}, "exception": null, "input_path": "__notebook__.ipynb", "output_path": "__notebook__.ipynb", "parameters": {}, "start_time": "2024-08-27T17:13:35.092744", "version": "2.6.0" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "003c4a99b5b14454bb2fa77243e33bfc": { "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 } }, "01ddca3f82c54922833d1702cfbdaef3": { "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": "" } }, "02205aaafd1e419882bc0bb50dbd1533": { "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": "" } }, "02b35dbbc3d04099a461bc810c8afcea": { "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": "" } }, "030ea8750a9c426388f73419c6ee506f": { "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 } }, "07ab739dda4543a4b74e9b92d498f5ac": { "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_91d03b52ebe14ba9bf814f88161730d0", "placeholder": "​", "style": "IPY_MODEL_e33db282cdce4601b00bf982d31ffd95", "value": " 297/297 [00:00<00:00, 15.5kB/s]" } }, "07df4c99a8be43f6bd3004025f0656c8": { "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 } }, "10241307ce974179818c431b2615329c": { "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_71e8ee376d044761a04f7e7a88a511d4", "max": 670328392, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_d9bd65e68e8849dbb9ae53eb35ac7f8b", "value": 670328392 } }, "10473ca3a11047e18e28b247548aae67": { "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_90d8f8e958324c7aa18c89218367128a", "placeholder": "​", "style": "IPY_MODEL_ee73403e580c4aaca1fbfac8bd6ef2df", "value": "model.safetensors: 100%" } }, "10e317e492f14be0bb6ccf85b18da736": { "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": "" } }, "18b5ea126dd64e1684b29d38def81d55": { "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 } }, "1c54642af9ce4cb994d3f8f3393d1e4d": { "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": "" } }, "1d4d21ad09234f7d9f2c21581cc0bd05": { "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_c7d4f10082444737ba80077f13207fc7", "placeholder": "​", "style": "IPY_MODEL_b9dbca209f9b4c7a9758e4da0b1bdf08", "value": "vocab.txt: 100%" } }, "1f4d710ce99a4f4185486f097f5b1577": { "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_10473ca3a11047e18e28b247548aae67", "IPY_MODEL_10241307ce974179818c431b2615329c", "IPY_MODEL_331cec38094e464181185f46a23c4212" ], "layout": "IPY_MODEL_8c2bda4940ba4f62b390549490271f2d" } }, "1f99e5d487c643cdadcbd7310a1d622f": { "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_974d62b5dcd64007b3e7e6dc4600c736", "placeholder": "​", "style": "IPY_MODEL_8109774f97ec475ea94d44da07a740ce", "value": " 1.24k/1.24k [00:00<00:00, 94.1kB/s]" } }, "204221b8181f4c298459ce37db1b734a": { "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": "" } }, "2052251fcfbd4a419399bf2b8709242e": { "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_4fb04cbe66ed41728b50a11b97af44c0", "max": 677, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_02b35dbbc3d04099a461bc810c8afcea", "value": 677 } }, "222b144db5be41f6b9beb4a655e0f926": { "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 } }, "25dc4febced04e378f08c695c92a4de2": { "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_6074485b2dbb4d03bea3f256b326832c", "max": 297, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_204221b8181f4c298459ce37db1b734a", "value": 297 } }, "26bf5203a2eb4ecca89a427defd4c12e": { "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": "" } }, "26dd5445997b45d38be58709a19a36e9": { "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 } }, "29d904db171b4faab519f9c23a37f2a5": { "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": "" } }, "2d233278de654f38b360683ba3b3928d": { "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 } }, "2d31c6ca590b40439d1d855a377f90b6": { "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_fea2080278524f3c9bb8c4f2d7c0bc0d", "placeholder": "​", "style": "IPY_MODEL_e2c203bcebc44098935ca52ceee52531", "value": "README.md: 100%" } }, "2d39d8803dc54ab0be5461a58f360146": { "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_bb87f0508f8940ef8915b3d0bc5961b4", "placeholder": "​", "style": "IPY_MODEL_c1283c0162cd4c5eadbb433ed69e740d", "value": " 114k/114k [00:00<00:00, 3.79MB/s]" } }, "2d4c1fefbe474121b4300fa89c050672": { "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": "" } }, "3133a5981e6c464da0d3d3a63049d0d0": { "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_84b64bd18ea74c879159c28933efc807", "placeholder": "​", "style": "IPY_MODEL_2d4c1fefbe474121b4300fa89c050672", "value": " 53.0/53.0 [00:00<00:00, 2.76kB/s]" } }, "331cec38094e464181185f46a23c4212": { "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_ca3d5d7544cd4ceca8792a69bfee5956", "placeholder": "​", "style": "IPY_MODEL_4da3352088e8449997c982680d2ae9ac", "value": " 670M/670M [00:03<00:00, 228MB/s]" } }, "36bb83d63128455da8b1de66c7c23e04": { "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": "" } }, "37b8e8e958564f34adf7b6853cf90c57": { "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_45d9792f48a745c1b5a7ec396692edb0", "IPY_MODEL_b6b43dc7506c46519567ff0d0ce5eacc", "IPY_MODEL_956d7a8143854688ad460026b1214724" ], "layout": "IPY_MODEL_39701cfec4a84de69e1765b6bbeb5cfe" } }, "39701cfec4a84de69e1765b6bbeb5cfe": { "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 } }, "3a5a5fc6bd594d8f897b0007fbecb347": { "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_b355ff92ffac426582be3ee0c5fa27d5", "max": 711396, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_ffe8af7db18a4f199892e879c71cadf9", "value": 711396 } }, "3c36053161b24c719a9b72dc9f5d21b9": { "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_91bd27434931435ca6cc64b7464f7cfb", "placeholder": "​", "style": "IPY_MODEL_7e2bb01ba968472a86c3719437142975", "value": "special_tokens_map.json: 100%" } }, "3e016bed0a1346f0830033f39ef567ba": { "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 } }, "3f589501f63f4cba91cb4c28e3d2b796": { "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 } }, "42342e4ea6654905b1d1dd194318e53d": { "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_9533ae6a25504559bff98169b1a01e5e", "placeholder": "​", "style": "IPY_MODEL_7365e2a013264875994acdff17fc8a4c", "value": " 695/695 [00:00<00:00, 55.4kB/s]" } }, "42de9095fbe1462d9b6ccb197af9f4a6": { "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_d83a03b0ba1a4682ac8a5787798cc7fb", "max": 53, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_b2b466a7faa144ea9914ea9b5bd62574", "value": 53 } }, "43aab4c0451b4e7abeac2d91f65695dc": { "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 } }, "44585681fa0d4dcbb9b46e6495094807": { "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_3e016bed0a1346f0830033f39ef567ba", "placeholder": "​", "style": "IPY_MODEL_f20f0f90d8764e2f89d2f671718aae9d", "value": "config.json: 100%" } }, "45d9792f48a745c1b5a7ec396692edb0": { "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_3f589501f63f4cba91cb4c28e3d2b796", "placeholder": "​", "style": "IPY_MODEL_10e317e492f14be0bb6ccf85b18da736", "value": "config_sentence_transformers.json: 100%" } }, "49a66e2ca9e84d30bc09badd8073eff2": { "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": "" } }, "4da3352088e8449997c982680d2ae9ac": { "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": "" } }, "4fb04cbe66ed41728b50a11b97af44c0": { "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 } }, "53dff9e90ee94658be2134107a642bc4": { "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 } }, "56f3b7d4aa604e6bb33c6c1dea35e0e3": { "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_26dd5445997b45d38be58709a19a36e9", "placeholder": "​", "style": "IPY_MODEL_fdcefb8da1794485bda07d800113438e", "value": " 232k/232k [00:00<00:00, 3.75MB/s]" } }, "5d6f1da1ee8d4bd9af91a6155f3f5fe6": { "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 } }, "5e7778a3fc474f81959e4be356d8f4ed": { "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": "" } }, "5fb70642791f41b1a88b51b03eff3cb6": { "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 } }, "605ba75ec8bd46a8b3d8642d4f96c1d6": { "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_8708310febdd45e8874f22f633855a2a", "placeholder": "​", "style": "IPY_MODEL_29d904db171b4faab519f9c23a37f2a5", "value": "1_Pooling/config.json: 100%" } }, "6074485b2dbb4d03bea3f256b326832c": { "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 } }, "63d75dcb38d9439380d42c034d100177": { "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_9c2b49cdcda14eeaa3a480bd262ec8bb", "max": 1242, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_d9a19232144442a0b4c695a6382b2831", "value": 1242 } }, "6894d52c728246ad8478c28c8a828d69": { "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_5d6f1da1ee8d4bd9af91a6155f3f5fe6", "max": 229, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_e4c33cc6fb4c4a24a683198c999f7e5a", "value": 229 } }, "6b66ccd5875641caa84afe669dd39dd1": { "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_3c36053161b24c719a9b72dc9f5d21b9", "IPY_MODEL_84895f54357e426c86c3b4810c0300b0", "IPY_MODEL_42342e4ea6654905b1d1dd194318e53d" ], "layout": "IPY_MODEL_222b144db5be41f6b9beb4a655e0f926" } }, "70400ea99a0c49688dbb3096b2bfbaec": { "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_773d50996bd24922a0068ea0da8b2a87", "placeholder": "​", "style": "IPY_MODEL_36bb83d63128455da8b1de66c7c23e04", "value": " 711k/711k [00:00<00:00, 10.6MB/s]" } }, "71e8ee376d044761a04f7e7a88a511d4": { "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 } }, "7365e2a013264875994acdff17fc8a4c": { "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": "" } }, "74fe5fad1de341149047ce19cdde00f3": { "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": "" } }, "76207a784e0441be89b9730da5398599": { "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_2d31c6ca590b40439d1d855a377f90b6", "IPY_MODEL_9a75fc7db1cc4b7e90e7fe9a18f3376c", "IPY_MODEL_2d39d8803dc54ab0be5461a58f360146" ], "layout": "IPY_MODEL_2d233278de654f38b360683ba3b3928d" } }, "76911d50cb71449ab41bded344f08285": { "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 } }, "773d50996bd24922a0068ea0da8b2a87": { "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 } }, "77ec0a2d1f3d4d94a7a0bfb108f54972": { "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": "" } }, "7c093e07bf264c26905bc45605bbbbad": { "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_e74c91f72d644ff19c97727efeba6613", "placeholder": "​", "style": "IPY_MODEL_01ddca3f82c54922833d1702cfbdaef3", "value": "tokenizer.json: 100%" } }, "7e2bb01ba968472a86c3719437142975": { "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": "" } }, "8109774f97ec475ea94d44da07a740ce": { "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": "" } }, "84895f54357e426c86c3b4810c0300b0": { "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_76911d50cb71449ab41bded344f08285", "max": 695, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_b58d4851c8574d3fbf056b44a4e49efd", "value": 695 } }, "84b64bd18ea74c879159c28933efc807": { "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 } }, "8532ce6a59264d5fb8eb5aab9e69cac9": { "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 } }, "8708310febdd45e8874f22f633855a2a": { "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 } }, "8a253fae243e411a92b289a6a6dfc8d3": { "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 } }, "8c2bda4940ba4f62b390549490271f2d": { "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 } }, "8fc3f933b58a4b6ab2848372a264c9fe": { "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_e89a43eac15d4da4a00a592e6b3ce37a", "placeholder": "​", "style": "IPY_MODEL_74fe5fad1de341149047ce19cdde00f3", "value": "modules.json: 100%" } }, "905a7f35b72c43dd9c7bbbbeb4017dd2": { "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": "" } }, "90d8f8e958324c7aa18c89218367128a": { "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 } }, "91bd27434931435ca6cc64b7464f7cfb": { "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 } }, "91d03b52ebe14ba9bf814f88161730d0": { "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 } }, "9307039729d64b92a04bfbde3742730a": { "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_8fc3f933b58a4b6ab2848372a264c9fe", "IPY_MODEL_6894d52c728246ad8478c28c8a828d69", "IPY_MODEL_ea09282aa6b84295a8b36f5b97398635" ], "layout": "IPY_MODEL_18b5ea126dd64e1684b29d38def81d55" } }, "9533ae6a25504559bff98169b1a01e5e": { "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 } }, "956d7a8143854688ad460026b1214724": { "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_8532ce6a59264d5fb8eb5aab9e69cac9", "placeholder": "​", "style": "IPY_MODEL_02205aaafd1e419882bc0bb50dbd1533", "value": " 171/171 [00:00<00:00, 13.5kB/s]" } }, "974d62b5dcd64007b3e7e6dc4600c736": { "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 } }, "974fdd6ae0064a23b9b4a015f20a2a7b": { "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_003c4a99b5b14454bb2fa77243e33bfc", "max": 231508, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_77ec0a2d1f3d4d94a7a0bfb108f54972", "value": 231508 } }, "9a75fc7db1cc4b7e90e7fe9a18f3376c": { "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_adeb6d4d49ed4940ada4f44cd361b8df", "max": 113501, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_5e7778a3fc474f81959e4be356d8f4ed", "value": 113501 } }, "9c2b49cdcda14eeaa3a480bd262ec8bb": { "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 } }, "9c70ffbb81eb43ac86c1b31430dca328": { "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_9f79de43d652483ba5c85f8ce9369e40", "placeholder": "​", "style": "IPY_MODEL_905a7f35b72c43dd9c7bbbbeb4017dd2", "value": " 677/677 [00:00<00:00, 40.5kB/s]" } }, "9f79de43d652483ba5c85f8ce9369e40": { "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 } }, "aa256b13060f44ea9648d9afcb5a8a9b": { "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 } }, "ace847f9c00342caa111b92c0753c4a9": { "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_44585681fa0d4dcbb9b46e6495094807", "IPY_MODEL_2052251fcfbd4a419399bf2b8709242e", "IPY_MODEL_9c70ffbb81eb43ac86c1b31430dca328" ], "layout": "IPY_MODEL_aa256b13060f44ea9648d9afcb5a8a9b" } }, "adeb6d4d49ed4940ada4f44cd361b8df": { "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 } }, "af20b0e55f6d4e3ab208e44034a6d6f5": { "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_ee2237b4cfb042b18b9f0b3d89d1cbf4", "IPY_MODEL_63d75dcb38d9439380d42c034d100177", "IPY_MODEL_1f99e5d487c643cdadcbd7310a1d622f" ], "layout": "IPY_MODEL_07df4c99a8be43f6bd3004025f0656c8" } }, "b2b466a7faa144ea9914ea9b5bd62574": { "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": "" } }, "b355ff92ffac426582be3ee0c5fa27d5": { "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 } }, "b58d4851c8574d3fbf056b44a4e49efd": { "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": "" } }, "b627305f4804448fbb0083b4980c7659": { "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 } }, "b6b43dc7506c46519567ff0d0ce5eacc": { "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_43aab4c0451b4e7abeac2d91f65695dc", "max": 171, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_1c54642af9ce4cb994d3f8f3393d1e4d", "value": 171 } }, "b9dbca209f9b4c7a9758e4da0b1bdf08": { "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": "" } }, "ba25883622b042e6adba6f645d64e9cf": { "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_1d4d21ad09234f7d9f2c21581cc0bd05", "IPY_MODEL_974fdd6ae0064a23b9b4a015f20a2a7b", "IPY_MODEL_56f3b7d4aa604e6bb33c6c1dea35e0e3" ], "layout": "IPY_MODEL_b627305f4804448fbb0083b4980c7659" } }, "bb87f0508f8940ef8915b3d0bc5961b4": { "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 } }, "be41a5e6be984afb898baf0be20a9d46": { "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_605ba75ec8bd46a8b3d8642d4f96c1d6", "IPY_MODEL_25dc4febced04e378f08c695c92a4de2", "IPY_MODEL_07ab739dda4543a4b74e9b92d498f5ac" ], "layout": "IPY_MODEL_d8d072f9c1ff4dc48c870bf127d9e70e" } }, "bf47c8e2438848c1b89ac3694406009e": { "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 } }, "c1283c0162cd4c5eadbb433ed69e740d": { "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": "" } }, "c7d4f10082444737ba80077f13207fc7": { "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 } }, "ca3d5d7544cd4ceca8792a69bfee5956": { "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 } }, "d83a03b0ba1a4682ac8a5787798cc7fb": { "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 } }, "d8d072f9c1ff4dc48c870bf127d9e70e": { "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 } }, "d9a19232144442a0b4c695a6382b2831": { "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": "" } }, "d9bd65e68e8849dbb9ae53eb35ac7f8b": { "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": "" } }, "e2c203bcebc44098935ca52ceee52531": { "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": "" } }, "e33db282cdce4601b00bf982d31ffd95": { "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": "" } }, "e4c33cc6fb4c4a24a683198c999f7e5a": { "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": "" } }, "e74c91f72d644ff19c97727efeba6613": { "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 } }, "e89a43eac15d4da4a00a592e6b3ce37a": { "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 } }, "e9d38ee71de743cc89b8fdb7711c2499": { "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": "" } }, "ea09282aa6b84295a8b36f5b97398635": { "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_53dff9e90ee94658be2134107a642bc4", "placeholder": "​", "style": "IPY_MODEL_e9d38ee71de743cc89b8fdb7711c2499", "value": " 229/229 [00:00<00:00, 16.9kB/s]" } }, "ee2237b4cfb042b18b9f0b3d89d1cbf4": { "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_bf47c8e2438848c1b89ac3694406009e", "placeholder": "​", "style": "IPY_MODEL_49a66e2ca9e84d30bc09badd8073eff2", "value": "tokenizer_config.json: 100%" } }, "ee73403e580c4aaca1fbfac8bd6ef2df": { "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": "" } }, "f20f0f90d8764e2f89d2f671718aae9d": { "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": "" } }, "f5043ec38597463aaa23c288a20f099d": { "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_ff3e16ab8da04b90bca0f12da897e97b", "IPY_MODEL_42de9095fbe1462d9b6ccb197af9f4a6", "IPY_MODEL_3133a5981e6c464da0d3d3a63049d0d0" ], "layout": "IPY_MODEL_8a253fae243e411a92b289a6a6dfc8d3" } }, "fdcefb8da1794485bda07d800113438e": { "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": "" } }, "fe2e19f775db4180b12d000cbac896d5": { "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_7c093e07bf264c26905bc45605bbbbad", "IPY_MODEL_3a5a5fc6bd594d8f897b0007fbecb347", "IPY_MODEL_70400ea99a0c49688dbb3096b2bfbaec" ], "layout": "IPY_MODEL_5fb70642791f41b1a88b51b03eff3cb6" } }, "fea2080278524f3c9bb8c4f2d7c0bc0d": { "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 } }, "ff3e16ab8da04b90bca0f12da897e97b": { "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_030ea8750a9c426388f73419c6ee506f", "placeholder": "​", "style": "IPY_MODEL_26bf5203a2eb4ecca89a427defd4c12e", "value": "sentence_bert_config.json: 100%" } }, "ffe8af7db18a4f199892e879c71cadf9": { "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": "" } } } } }, "nbformat": 4, "nbformat_minor": 5 }