diff --git "a/baseline_module5_evaluation.ipynb" "b/baseline_module5_evaluation.ipynb" new file mode 100644--- /dev/null +++ "b/baseline_module5_evaluation.ipynb" @@ -0,0 +1,20561 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "1iXBOY1AHNoa", + "metadata": { + "id": "1iXBOY1AHNoa" + }, + "source": [ + "# **Viet Fact Check Base Line Model**" + ] + }, + { + "cell_type": "markdown", + "id": "pB3tvmy1HSxu", + "metadata": { + "id": "pB3tvmy1HSxu" + }, + "source": [ + "## **Prepare enviroment**" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "dCH6KgJOfJYB", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 108 + }, + "id": "dCH6KgJOfJYB", + "outputId": "1fd4f20e-b0bc-437a-fc26-8beb86818d06" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Chọn file .env để upload\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "" + ], + "text/html": [ + "\n", + " \n", + " \n", + " Upload widget is only available when the cell has been executed in the\n", + " current browser session. Please rerun this cell to enable.\n", + " \n", + " " + ] + }, + "metadata": {} + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Saving .env to .env (1)\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "True" + ] + }, + "metadata": {}, + "execution_count": 2 + } + ], + "source": [ + "# Dùng để tải file env. và file requirements. txt chạy trên colab\n", + "from google.colab import files\n", + "from dotenv import load_dotenv\n", + "\n", + "print(\"Chọn file .env để upload\")\n", + "uploaded = files.upload() # chọn file .env từ máy\n", + "load_dotenv(\".env\") # load biến môi trường từ file .env" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "k4ljzB-xIcUF", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 108 + }, + "id": "k4ljzB-xIcUF", + "outputId": "99fdf1c2-2765-458b-ac29-058935052801" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Choose file requirements.txt to upload\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "" + ], + "text/html": [ + "\n", + " \n", + " \n", + " Upload widget is only available when the cell has been executed in the\n", + " current browser session. Please rerun this cell to enable.\n", + " \n", + " " + ] + }, + "metadata": {} + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Saving requirements.txt to requirements (1).txt\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "True" + ] + }, + "metadata": {}, + "execution_count": 3 + } + ], + "source": [ + "print(\"Choose file requirements.txt to upload\")\n", + "uploaded = files.upload() # chọn file requirements.txt từ máy\n", + "load_dotenv(\"requirements.txt\") # load danh sách thư viện từ file requirements.txt" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "jj26pnaLrCwf", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "jj26pnaLrCwf", + "outputId": "b3eaa5cb-96eb-4080-cccd-3f71b0186d0c" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: setuptools in /usr/local/lib/python3.12/dist-packages (from -r requirements.txt (line 1)) (80.9.0)\n", + "Requirement already satisfied: wheel in /usr/local/lib/python3.12/dist-packages (from -r requirements.txt (line 2)) (0.45.1)\n", + "Requirement already satisfied: azure-ai-inference in /usr/local/lib/python3.12/dist-packages (from -r requirements.txt (line 3)) (1.0.0b9)\n", + "Requirement already satisfied: isodate>=0.6.1 in /usr/local/lib/python3.12/dist-packages (from azure-ai-inference->-r requirements.txt (line 3)) (0.7.2)\n", + "Requirement already satisfied: azure-core>=1.30.0 in /usr/local/lib/python3.12/dist-packages (from azure-ai-inference->-r requirements.txt (line 3)) (1.36.0)\n", + "Requirement already satisfied: typing-extensions>=4.6.0 in /usr/local/lib/python3.12/dist-packages (from azure-ai-inference->-r requirements.txt (line 3)) (4.15.0)\n", + "Requirement already satisfied: requests>=2.21.0 in /usr/local/lib/python3.12/dist-packages (from azure-core>=1.30.0->azure-ai-inference->-r requirements.txt (line 3)) (2.32.4)\n", + "Requirement already satisfied: charset_normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests>=2.21.0->azure-core>=1.30.0->azure-ai-inference->-r requirements.txt (line 3)) (3.4.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.12/dist-packages (from requests>=2.21.0->azure-core>=1.30.0->azure-ai-inference->-r requirements.txt (line 3)) (3.11)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.12/dist-packages (from requests>=2.21.0->azure-core>=1.30.0->azure-ai-inference->-r requirements.txt (line 3)) (2.5.0)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.12/dist-packages (from requests>=2.21.0->azure-core>=1.30.0->azure-ai-inference->-r requirements.txt (line 3)) (2025.10.5)\n" + ] + } + ], + "source": [ + "!pip install -r requirements.txt --upgrade" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "BZQ4J8xqdalK", + "metadata": { + "id": "BZQ4J8xqdalK" + }, + "outputs": [], + "source": [ + "import os\n", + "from dotenv import load_dotenv\n", + "from azure.ai.inference import ChatCompletionsClient\n", + "from azure.core.credentials import AzureKeyCredential\n", + "from azure.ai.inference.models import SystemMessage, UserMessage" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "jgisP0TTbAT5", + "metadata": { + "id": "jgisP0TTbAT5" + }, + "outputs": [], + "source": [ + "load_dotenv(\".env\") # load biến môi trường từ file .env\n", + "endpoint = \"https://models.github.ai/inference\"\n", + "model = \"openai/gpt-4o-mini\"\n", + "token = os.environ[\"GITHUB_TOKEN\"]\n", + "\n", + "client = ChatCompletionsClient(\n", + " endpoint=endpoint,\n", + " credential=AzureKeyCredential(token),\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "0f031bce", + "metadata": { + "id": "0f031bce" + }, + "source": [ + "## **I. Input & Preprocessing**" + ] + }, + { + "cell_type": "markdown", + "id": "c45527e8", + "metadata": { + "id": "c45527e8" + }, + "source": [ + "- Input: Một đoạn văn bản ngắn tiếng Việt.\n", + "- Output: Đoạn văn bản tiếng Việt đã được tiền xử lý đưa về tiếng Việt chuẩn phổ thông." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "4437641d", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "4437641d", + "outputId": "4d0c0c12-a812-423e-cff3-13660daccb81" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Trời ơi, hôm nay nóng quá đi. \n", + "Tôi tin rằng biến đổi khí hậu đang làm thời tiết cực đoan hơn. \n", + "Bạn khỏe không? \n", + "Nhiệt độ toàn cầu đã tăng 1,1°C trong 100 năm qua.\n" + ] + } + ], + "source": [ + "import os\n", + "from azure.ai.inference import ChatCompletionsClient\n", + "from azure.ai.inference.models import SystemMessage, UserMessage\n", + "from azure.core.credentials import AzureKeyCredential\n", + "from dotenv import load_dotenv\n", + "\n", + "load_dotenv(\".env\") # load biến môi trường từ file .env\n", + "\n", + "SYSTEM_PROMPT = \"Ghi lại những gì người dùng nhập vào nhưng đúng chính tả và ngữ pháp. Đối với các từ viết tắt hãy ghi ra đầy đủ. Những từ lóng, teencode, từ tiếng Việt nhưng viết không dấu, ... hãy chuyển về ngôn ngữ phổ thông.\"\n", + "\n", + "INPUT_TEXT = \"\"\"Troi oi, hom nay nong qua di\n", + "Tôi tin rằng biến đổi khí hậu đang làm thời tiết cực đoan hơn.\n", + "Bn khỏe hông\n", + "Nhiệt độ toàn cầu đã tăng 1.1°C trong 100 năm qua\"\"\"\n", + "\n", + "PROCESSED_TEXT = \"\"\n", + "\n", + "endpoint = \"https://models.github.ai/inference\"\n", + "model = \"openai/gpt-4o-mini\"\n", + "token = os.environ[\"GITHUB_TOKEN\"]\n", + "\n", + "client = ChatCompletionsClient(\n", + " endpoint=endpoint,\n", + " credential=AzureKeyCredential(token),\n", + ")\n", + "\n", + "response = client.complete(\n", + " messages=[\n", + " SystemMessage(SYSTEM_PROMPT),\n", + " UserMessage(INPUT_TEXT),\n", + " ],\n", + " model=model\n", + ")\n", + "\n", + "PROCESSED_TEXT=response.choices[0].message.content\n", + "\n", + "print(PROCESSED_TEXT)" + ] + }, + { + "cell_type": "markdown", + "id": "ec115d59", + "metadata": { + "id": "ec115d59" + }, + "source": [ + "- [Hướng dẫn sử dụng API của Github hỗ trợ](https://www.youtube.com/watch?v=YP8mV_2RDLc)\n", + "- [Github Models Usage Guide](https://docs.github.com/en/github-models/use-github-models/prototyping-with-ai-models#rate-limits)" + ] + }, + { + "cell_type": "markdown", + "id": "hOLiVBpZgKIy", + "metadata": { + "id": "hOLiVBpZgKIy" + }, + "source": [ + "## **II. Claim Detection**" + ] + }, + { + "cell_type": "markdown", + "id": "HFuuhRFWgTB2", + "metadata": { + "id": "HFuuhRFWgTB2" + }, + "source": [ + "- Input: Đoạn văn bản tiếng Việt đã được tiền xử lý đưa về tiếng Việt chuẩn phổ thông.\n", + "- Output: Đoạn văn bản chứa các claim (khẳng định, luận điểm, sự thật có thể kiểm chứng) đã lược bỏ phần dư thừa và không cần thiết." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "0jkUpzEPhFLT", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "0jkUpzEPhFLT", + "outputId": "331cf2af-f424-42de-f445-af2f9cf996d6" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Biến đổi khí hậu đang làm thời tiết cực đoan hơn. \n", + "Nhiệt độ toàn cầu đã tăng 1,1°C trong 100 năm qua.\n" + ] + } + ], + "source": [ + "import os\n", + "from azure.ai.inference import ChatCompletionsClient\n", + "from azure.ai.inference.models import SystemMessage, UserMessage\n", + "from azure.core.credentials import AzureKeyCredential\n", + "\n", + "SYSTEM_PROMPT = \"\"\"\n", + "Bạn là mô-đun Claim Detection.\n", + "\n", + "Nhiệm vụ:\n", + "- Giữ lại và trả về những câu có chứa claim: phát biểu khẳng định, luận điểm hoặc sự thật có thể kiểm chứng đúng/sai.\n", + "- Bỏ đi các câu cảm thán, chào hỏi, xã giao hoặc câu không chứa claim.\n", + "\n", + "Yêu cầu chi tiết:\n", + "- Một claim phải là một mệnh đề có thông tin khách quan, có thể kiểm chứng được (fact hoặc assertion).\n", + "- Nếu câu có chứa từ ngữ như \"tôi tin rằng\", \"theo tôi nghĩ\", \"có lẽ\", hãy bỏ phần mở đầu đó và chỉ giữ lại nội dung khẳng định chính.\n", + "- Kết quả cần giữ nguyên ngữ pháp, chính tả, tiếng Việt chuẩn.\"\"\"\n", + "\n", + "CLAIM_TEXT = \"\"\n", + "\n", + "endpoint = \"https://models.github.ai/inference\"\n", + "model = \"openai/gpt-4o-mini\"\n", + "token = os.environ[\"GITHUB_TOKEN\"]\n", + "\n", + "client = ChatCompletionsClient(\n", + " endpoint=endpoint,\n", + " credential=AzureKeyCredential(token),\n", + ")\n", + "\n", + "response = client.complete(\n", + " messages=[\n", + " SystemMessage(SYSTEM_PROMPT),\n", + " UserMessage(PROCESSED_TEXT),\n", + " ],\n", + " model=model\n", + ")\n", + "\n", + "CLAIM_TEXT = response.choices[0].message.content\n", + "\n", + "print(CLAIM_TEXT)" + ] + }, + { + "cell_type": "markdown", + "id": "0f1cf172", + "metadata": { + "id": "0f1cf172" + }, + "source": [ + "## **III. Document Retrieval**" + ] + }, + { + "cell_type": "markdown", + "id": "6327787c", + "metadata": { + "id": "6327787c" + }, + "source": [ + "- Input: Danh sách các claim (chuỗi văn bản tiếng Việt ngắn) được tạo ra từ Module 2 (sau khi đã tiền xử lý và tách các khẳng định có thể kiểm chứng).\n", + "- Output: Tập hợp kết quả truy xuất tài liệu cho từng claim bao gồm tiêu đề, đường dẫn, và đoạn mô tả ngắn (snippet) của các bài viết từ Google Search." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "chEmUUxHSFj_", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "chEmUUxHSFj_", + "outputId": "465bc83d-ca00-42cc-d9a4-5f09cf04e3f3" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: tldextract in /usr/local/lib/python3.12/dist-packages (5.3.0)\n", + "Requirement already satisfied: idna in /usr/local/lib/python3.12/dist-packages (from tldextract) (3.11)\n", + "Requirement already satisfied: requests>=2.1.0 in /usr/local/lib/python3.12/dist-packages (from tldextract) (2.32.4)\n", + "Requirement already satisfied: requests-file>=1.4 in /usr/local/lib/python3.12/dist-packages (from tldextract) (3.0.1)\n", + "Requirement already satisfied: filelock>=3.0.8 in /usr/local/lib/python3.12/dist-packages (from tldextract) (3.20.0)\n", + "Requirement already satisfied: charset_normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests>=2.1.0->tldextract) (3.4.4)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.12/dist-packages (from requests>=2.1.0->tldextract) (2.5.0)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.12/dist-packages (from requests>=2.1.0->tldextract) (2025.10.5)\n", + "Collecting ddgs\n", + " Downloading ddgs-9.6.1-py3-none-any.whl.metadata (18 kB)\n", + "Requirement already satisfied: click>=8.1.8 in /usr/local/lib/python3.12/dist-packages (from ddgs) (8.3.0)\n", + "Collecting primp>=0.15.0 (from ddgs)\n", + " Downloading primp-0.15.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB)\n", + "Collecting lxml>=6.0.0 (from ddgs)\n", + " Downloading lxml-6.0.2-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.metadata (3.6 kB)\n", + "Requirement already satisfied: httpx>=0.28.1 in /usr/local/lib/python3.12/dist-packages (from httpx[brotli,http2,socks]>=0.28.1->ddgs) (0.28.1)\n", + "Requirement already satisfied: anyio in /usr/local/lib/python3.12/dist-packages (from httpx>=0.28.1->httpx[brotli,http2,socks]>=0.28.1->ddgs) (4.11.0)\n", + "Requirement already satisfied: certifi in /usr/local/lib/python3.12/dist-packages (from httpx>=0.28.1->httpx[brotli,http2,socks]>=0.28.1->ddgs) (2025.10.5)\n", + "Requirement already satisfied: httpcore==1.* in /usr/local/lib/python3.12/dist-packages (from httpx>=0.28.1->httpx[brotli,http2,socks]>=0.28.1->ddgs) (1.0.9)\n", + "Requirement already satisfied: idna in /usr/local/lib/python3.12/dist-packages (from httpx>=0.28.1->httpx[brotli,http2,socks]>=0.28.1->ddgs) (3.11)\n", + "Requirement already satisfied: h11>=0.16 in /usr/local/lib/python3.12/dist-packages (from httpcore==1.*->httpx>=0.28.1->httpx[brotli,http2,socks]>=0.28.1->ddgs) (0.16.0)\n", + "Requirement already satisfied: brotli in /usr/local/lib/python3.12/dist-packages (from httpx[brotli,http2,socks]>=0.28.1->ddgs) (1.1.0)\n", + "Requirement already satisfied: h2<5,>=3 in /usr/local/lib/python3.12/dist-packages (from httpx[brotli,http2,socks]>=0.28.1->ddgs) (4.3.0)\n", + "Collecting socksio==1.* (from httpx[brotli,http2,socks]>=0.28.1->ddgs)\n", + " Downloading socksio-1.0.0-py3-none-any.whl.metadata (6.1 kB)\n", + "Requirement already satisfied: hyperframe<7,>=6.1 in /usr/local/lib/python3.12/dist-packages (from h2<5,>=3->httpx[brotli,http2,socks]>=0.28.1->ddgs) (6.1.0)\n", + "Requirement already satisfied: hpack<5,>=4.1 in /usr/local/lib/python3.12/dist-packages (from h2<5,>=3->httpx[brotli,http2,socks]>=0.28.1->ddgs) (4.1.0)\n", + "Requirement already satisfied: sniffio>=1.1 in /usr/local/lib/python3.12/dist-packages (from anyio->httpx>=0.28.1->httpx[brotli,http2,socks]>=0.28.1->ddgs) (1.3.1)\n", + "Requirement already satisfied: typing_extensions>=4.5 in /usr/local/lib/python3.12/dist-packages (from anyio->httpx>=0.28.1->httpx[brotli,http2,socks]>=0.28.1->ddgs) (4.15.0)\n", + "Downloading ddgs-9.6.1-py3-none-any.whl (41 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m41.6/41.6 kB\u001b[0m \u001b[31m2.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading socksio-1.0.0-py3-none-any.whl (12 kB)\n", + "Downloading lxml-6.0.2-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (5.3 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m5.3/5.3 MB\u001b[0m \u001b[31m37.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading primp-0.15.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m3.3/3.3 MB\u001b[0m \u001b[31m49.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hInstalling collected packages: socksio, primp, lxml, ddgs\n", + " Attempting uninstall: lxml\n", + " Found existing installation: lxml 5.4.0\n", + " Uninstalling lxml-5.4.0:\n", + " Successfully uninstalled lxml-5.4.0\n", + "Successfully installed ddgs-9.6.1 lxml-6.0.2 primp-0.15.0 socksio-1.0.0\n" + ] + } + ], + "source": [ + "!pip install tldextract\n", + "!pip install ddgs" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "18c52c1a", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 557, + "referenced_widgets": [ + "d4481213539642a7970f984091bf5887", + "48bfe1be537f4531a5bc170ce9a1b4bc", + "e4c24b2a204e43839ed894bea99764d0", + "ba8a292d16a24b8895d6986aae899565", + "b2d42fe91c084986b9ec98449ca3086e", + "b3331e3bb2ae49fe9790f34665b026b7", + "d5520ee91c9348f9b297072cbe7cd1c8", + "5707665c23c9449286a0d5e2b3817755", + "f109fe6c40974157afd2b2664d9d3d9a", + "9548e26de53f4fb7a39e96a4dfb09125", + "52aae43a65c442768e7bf6bea4db5291", + "b0cdc80f50c945d48d391d78bc0deb39", + "c3cbfaeeb6ec40a1b079fdb4962b390f", + "cc79933cfbb7422ea91c80ad72766432", + "866884ea8cba49cd86b255b5c12c0308", + "36246ff0dc1d4954964927206aa6535b", + "3bb11ed3e3044d84b0545341d411b529", + "ad929bbee45546428100f72c695ea088", + "471ffc5f3636420981ebb5e83807af9e", + "fd5ea8e78ade46e4bc0df8a9123183bd", + "a6d812c943524cd288de55bc4748a76f", + "6e5ff24d4bf2442193a3a50688f96c59", + "e359dded87284610a5f23b95c981cfce", + "296be6e8cbd44f90bc48ee595878e217", + "5d7d1f2fb60d40d3b14e21676fdc5b09", + "0b5105b41c934fd3a4f0280cb4764ad2", + "f2427737cc324658b61b5edff334e3e3", + "6c6b29b969cd48ca9bbc9d117140cb27", + "676bc186682144a0865c904774de79d0", + "7180143a9dc9486eb58162a08c68f169", + "6533a341e31b4685afefd9552ff545ff", + "74ca809b5dc048dda2c354ef1c171600", + "9831e82a176c49e68fb600e0daf9157d", + "821eff4f3d0a47f8995c4310239ddd68", + "100d8adcedc843a39c20811698894af0", + "2594a204dce6434badc22ec7df98a398", + "076fa38ef6ad4661be46c10f06e267e5", + "c5e8c845a2c342f0841bfc17d0d17d70", + "120ffb114d584fb5852254d15a550334", + "7b95a9b5d41e4519b7b8cc50845cc33c", + "d9bef211f70b46028cf3e63de1663f42", + "5f1cafb08bcd456192d54e93875f9c32", + "a7c38ba9ff684db294c4379f9ef18dc6", + "7028535260424956840cec2427b5ac74", + "e7c6c64b6b774d70b78094961704c2c9", + "73467ccde0904aeba7c21966878247e1", + "21b0e0e1f9d944989e049f7de09fbd81", + "4bf2b395eb4c43919ec19721c5dd2c7a", + "23a7ae32211643c58503a27c9c60bc1f", + "8363922f18924dccbd07122d22e1354e", + "5481b390d73d41fe92428a24bc6b4b6b", + "33d57d9d1e714707b816e2e5489f3a36", + "5858edfa288749f383d60ce65761662d", + "6d53bedf50264305bebbc23bdffb301d", + "e1a35f4b2be64268bd6c79650c64a442", + "29d13cb3b7804b9180196f777c0905da", + "4e89318c122147558f4b6e4eb1085cbd", + "abcbe0c5029d4cc4bc78cff0c580737b", + "b2fbe45944b04e08b5f167823f02eaac", + "f4a77960be1a41d587e4ffef905cf672", + "89c11aa917a34770ab6f1359f343843c", + "3433baf76bef47868c33a47185ddd3f2", + "d95a12bdc4d04e1aa559e1c40ebc2185", + "089536c1c06f4658adb927b4c7175d0c", + "f511736a5cad458bbe018e6720272458", + "ad58cb682e0c436da440a696c2f7769f", + "adfbd0a64a4748688cf18b40329eabbd", + "8efed691baea4c3d81b09b7265fe304f", + "8a284d80d61a45bf9caed49cb5cca1ff", + "159c19239bd74df183707f6df3c0393e", + "88344b2d8c1d460aaf126bfe7b72d1d6", + "a6999ee1fd32479686d686ef8ecf7ac1", + "c41bedee8e344892af02c13aa2f6e81e", + "d1c021eec24b4bfc86423c9592f6d258", + "36def44b75c948879d1bc23f77817575", + "79f1a17dfc2f466787dc78d6025efd23", + "4d7d9aabdb954ff5bedc61b1f52712c9", + "16c096926d714eab9af5a20fa0f79e36", + "2f775f94db404873b7c2a31ee7fd8414", + "f2baa60293e44c4b9e569294b0ecfd1d", + "b5fa6435445f41148cfff8e49b73ba83", + "8bdfa4251dc9484692d06eaed1d8c268", + "7eb005d909914dd38b591c2b02991b98", + "ebd61b485fb24caa9a04e9e2d3886166", + "47486743481247f783221f9ec3ef767c", + "10131fb3369c40b59bb7d51fdf3de06f", + "2579ff1b0d60419b92be1a821e0db8bf", + "75c2d793db5846078b5b167c002483eb", + "d0496d936b5f4e9d8e89fbfc96e7ee5f", + "9481e9793cab4e2da204eba6c176b01a", + "1fed5a72856d4d668fbf924437a42a8b", + "c2ef250bf5d7435da6ebc615c6dd0cf1", + "9c6a1ecf69e24e179a359de4f45f1fb2", + "e05cb019a83a4dad9301e18ae9baa2a8", + "1d4331e12a454d4cb6921f089502080e", + "e26844ffe82b4b85ad37566634fd1beb", + "e16aee88ddf54670880612c8b6c58c67", + "12a74f70fdae4f08aca8b4b5bfb23b51", + "ae99d3d971fd458a838990a5fc077b63", + "f14bfa1674aa449aa33eddc8bb13a056", + "06b1e75784394ae9a33cfec35be773c6", + "08d43a0dd9bd4ef5a6f1c6f800d1da71", + "e5c365ef52124c2d818093d2dda56b98", + "23358561762c4fd78b50c7c20ce68f60", + "8851747130574640942e8121cb0e57bf", + "186d017ace2b409687b0d855a6029042", + "69eee8fbc85a4f1582d47291576323e2", + "367557d37102413d9b33ef62035dc01b", + "5649a658932f40359b12eaff1ab45670", + "26d9be8f6c8a4d61bbc8bc45ecba2464", + "bf0fe090ddf349608b093703aac4a542", + "387010c873ec4534a0260b07cc0abf61", + "da7cf8ded5894969aec9ec3299951d8a", + "59935dafcdfd46fcbd16d6b5ca2bfd9d", + "1616be132e4a4547bbcd91f6f3b2cdbb", + "69f7d830d01948febc8b615195d4d6fe", + "97e613f7d07e4d8792f4ad9d0cefa4e8", + "6977d54cb7f7479ca60b6692795b7c74", + "5c24cf3cdf734dc5a7f4791d0ca520fa", + "de2210c703e84fb3ba921ff52ec9578c", + "7d4e353b244a4dcd9d9164cfbb94d614", + "e8e10c3fa08e4231bcd14e94fb34d23b", + "75c6567162d248f6a9e680e94f9d8c4b", + "cc7462cf692f4e5fa6e126b839e0445e", + "dcd24ff55bd1470ab6f8eb48406a04b5", + "1bb5222433094d419c3951f4d2d8d886", + "ccd959eb894d4409a2c1dafdf30dca4e", + "8b2ffc66b96248a0a4c0c6846b157100", + "0355299c2d7e49518a0041502b4002b4", + "0f3453c6012c49d7a31ae2f4d501a604", + "289830a2edd5409a8e86771355846fb4", + "259cbdd5dbbf4c9eb204e4d2ef88b887", + "e43ec7d44b6c4fea8294692cb0b490e2", + "fa09498a3a864755aee4ad794ff5763e", + "c041598711d3462686b4e2e4c7a20d6f", + "275f2f5c78e042b6ae73dc35a2a1e441", + "6de0b5cf8a694be5bfdc5465f0ce7493", + "babfc336714340e082ee33c1b3ccef5a", + "e5b929d7fe2543b8b32118f5367c8365", + "b12577804a8f44e0ab14cfef5be447c4", + "0f39f5b6c0ce4657a2bb3f2fbf913526", + "f46e31eb353d48cf9b40e69aafbb2eed", + "3407b16beacf4e2d81dfdb33898c16e3" + ] + }, + "id": "18c52c1a", + "outputId": "41ae42cb-0852-4908-f4f9-be62143ff44f" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "/usr/local/lib/python3.12/dist-packages/huggingface_hub/utils/_auth.py:94: 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" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "modules.json: 0%| | 0.00/229 [00:00 list[str]:\n", + " \"\"\"Sinh các biến thể tìm kiếm từ claim.\"\"\"\n", + " prompt = f\"\"\"\n", + " Sinh ra 3-5 phiên bản khác nhau của câu truy vấn sau để tìm kiếm web.\n", + " - Viết lại tự nhiên, cùng nghĩa.\n", + " - Không thêm ý mới.\n", + " - Giữ ngắn gọn, phù hợp tìm kiếm.\n", + "\n", + " Truy vấn gốc: \"{claim}\"\n", + "\n", + " Trả về JSON array duy nhất như:\n", + " [\"biến thể 1\", \"biến thể 2\", \"biến thể 3\", ...]\n", + " \"\"\"\n", + "\n", + " response = client.complete(\n", + " messages=[\n", + " SystemMessage(\"Bạn chỉ trả về JSON array, KHÔNG có giải thích.\"),\n", + " UserMessage(prompt)\n", + " ],\n", + " model=MODEL,\n", + " temperature=0.7\n", + " )\n", + "\n", + " content = response.choices[0].message.content.strip()\n", + "\n", + " try:\n", + " expanded = json.loads(content)\n", + " if not isinstance(expanded, list):\n", + " raise ValueError\n", + " except Exception:\n", + " m = re.search(r'\\[.*\\]', content, re.S)\n", + " expanded = json.loads(m.group(0)) if m else [claim]\n", + "\n", + " expanded += [\n", + " claim,\n", + " f\"{claim} site:vnexpress.net OR site:tuoitre.vn OR site:thanhnien.vn \"\n", + " f\"OR site:nhandan.vn OR site:moh.gov.vn OR site:suckhoedoisong.vn\"\n", + " ]\n", + " return list(dict.fromkeys(expanded))\n", + "\n", + "# 2. DuckDuckGo Search\n", + "def duckduckgo_search(query: str, num_results: int = 5) -> list[dict]:\n", + " results = []\n", + " try:\n", + " with DDGS() as ddgs:\n", + " for r in ddgs.text(query, max_results=num_results):\n", + " results.append({\n", + " \"title\": r.get(\"title\", \"\"),\n", + " \"link\": r.get(\"href\", \"\"),\n", + " \"snippet\": r.get(\"body\", \"\")\n", + " })\n", + " except Exception as e:\n", + " print(f\"[DuckDuckGo error] {query[:40]}...: {e}\")\n", + " return results[:num_results]\n", + "\n", + "# 3. Tính độ tin cậy (Trust Score)\n", + "def compute_trust_score(claim: str, source: dict) -> float:\n", + " \"\"\"Tính điểm tin cậy (trust_score) cho nguồn tin dựa trên:\n", + " - sim: độ tương đồng ngữ nghĩa giữa claim và snippet (0–1)\n", + " - overlap: tỉ lệ trùng lặp từ khóa giữa claim và snippet\n", + " - domain_bonus: cộng điểm nếu domain uy tín (+0.25)\n", + " - penalty: trừ điểm nếu domain kém tin cậy (-0.3)\n", + " - lang_bonus: cộng nếu snippet là tiếng Việt (+0.1), trừ nếu không (-0.1)\n", + " => trust_score = 0.5*sim + 0.2*overlap + domain_bonus + lang_bonus - penalty\n", + " (giới hạn trong [0,1])\n", + " \"\"\"\n", + " link = source.get(\"link\", \"\")\n", + " snippet = source.get(\"snippet\", \"\")\n", + " domain = tldextract.extract(link).top_domain_under_public_suffix\n", + "\n", + " # Semantic similarity\n", + " try:\n", + " emb_claim = embedder.encode(claim, convert_to_tensor=True)\n", + " emb_snip = embedder.encode(snippet, convert_to_tensor=True)\n", + " sim = util.cos_sim(emb_claim, emb_snip).item()\n", + " except Exception:\n", + " sim = 0.0\n", + "\n", + " # Keyword overlap\n", + " claim_words = set(re.findall(r'\\w+', claim.lower()))\n", + " snip_words = set(re.findall(r'\\w+', snippet.lower()))\n", + " overlap = len(claim_words & snip_words) / len(claim_words) if claim_words else 0\n", + "\n", + " # Domain-based reward / penalty\n", + " domain_bonus = 0\n", + " penalty = 0\n", + "\n", + " if any(d in domain for d in TRUSTED_DOMAINS):\n", + " domain_bonus += 0.25\n", + " elif any(d in domain for d in BAD_DOMAINS):\n", + " penalty += 0.3\n", + "\n", + " # Language bonus (phát hiện tiếng Việt)\n", + " vietnamese_chars = re.findall(r'[àáạảãâầấậẩẫăằắặẳẵèéẹẻẽêềếệểễìíịỉĩòóọỏõôồốộổỗơờớợởỡùúụủũưừứựửữỳýỵỷỹđ]', snippet)\n", + " lang_bonus = 0.1 if len(vietnamese_chars) > 5 else -0.1 # trừ nếu snippet không phải tiếng Việt\n", + "\n", + " # Tổng hợp (chuẩn hóa 0–1)\n", + " trust_score = 0.5 * sim + 0.2 * overlap + domain_bonus + lang_bonus - penalty\n", + " trust_score = max(0, min(trust_score, 1)) # giới hạn [0,1]\n", + " return round(trust_score, 3)\n", + "\n", + "# 4. Pipeline cho 1 claim\n", + "def process_claim(claim: str) -> list[dict]:\n", + " queries = expand_query(claim)\n", + " print(f\"\\n=== Claim: {claim}\")\n", + " print(f\"Sinh {len(queries)} truy vấn mở rộng.\\n\")\n", + "\n", + " results = []\n", + " with ThreadPoolExecutor(max_workers=4) as executor:\n", + " futures = {executor.submit(duckduckgo_search, q): q for q in queries}\n", + " for f in tqdm(as_completed(futures), total=len(futures), desc=f\"Tìm kiếm '{claim[:40]}...'\"):\n", + " results.extend(f.result())\n", + " time.sleep(0.1)\n", + "\n", + " # Lọc trùng link và loại bỏ link không hợp lệ\n", + " filtered = []\n", + " seen = set()\n", + " for r in results:\n", + " link = r.get(\"link\")\n", + " if not link or not link.startswith(\"http\"):\n", + " continue\n", + " if link in seen:\n", + " continue\n", + " seen.add(link)\n", + "\n", + " domain = tldextract.extract(link).top_domain_under_public_suffix\n", + "\n", + " if not domain: # bỏ link rác\n", + " continue\n", + "\n", + " filtered.append(r)\n", + "\n", + " # Tính trust score\n", + " for src in filtered:\n", + " src[\"trust_score\"] = compute_trust_score(claim, src)\n", + "\n", + " sorted_sources = sorted(filtered, key=lambda x: x[\"trust_score\"], reverse=True)\n", + " return sorted_sources[:5]\n", + "\n", + "# 5. Chạy toàn bộ pipeline\n", + "def run_pipeline(claims: list[str]):\n", + " all_results = []\n", + " for claim in claims:\n", + " claim = claim.strip()\n", + " if not claim:\n", + " continue\n", + " sources = process_claim(claim)\n", + " all_results.append({\n", + " \"claim\": claim,\n", + " \"sources\": sources\n", + " })\n", + "\n", + " output_file = \"document_retrieval_results_duckduckgo_v2.json\"\n", + " with open(output_file, \"w\", encoding=\"utf-8\") as f:\n", + " json.dump(all_results, f, ensure_ascii=False, indent=2)\n", + " print(f\"\\nHoàn tất! Kết quả được lưu tại: {output_file}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "771734e4", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 364 + }, + "id": "771734e4", + "outputId": "d511bacb-bbb3-44fa-f04b-1b27f380ca60" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "=== Claim: Biến đổi khí hậu đang làm thời tiết cực đoan hơn.\n", + "Sinh 7 truy vấn mở rộng.\n", + "\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "\n", + "Tìm kiếm 'Biến đổi khí hậu đang làm thời tiết cực ...': 0%| | 0/7 [00:00=13 (from playwright)\n", + " Downloading pyee-13.0.0-py3-none-any.whl.metadata (2.9 kB)\n", + "Requirement already satisfied: greenlet<4.0.0,>=3.1.1 in /usr/local/lib/python3.12/dist-packages (from playwright) (3.2.4)\n", + "Requirement already satisfied: typing-extensions in /usr/local/lib/python3.12/dist-packages (from pyee<14,>=13->playwright) (4.15.0)\n", + "Downloading playwright-1.55.0-py3-none-manylinux1_x86_64.whl (45.9 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m45.9/45.9 MB\u001b[0m \u001b[31m14.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading pyee-13.0.0-py3-none-any.whl (15 kB)\n", + "Installing collected packages: pyee, playwright\n", + "Successfully installed playwright-1.55.0 pyee-13.0.0\n", + "Collecting playwright-stealth\n", + " Downloading playwright_stealth-2.0.0-py3-none-any.whl.metadata (4.0 kB)\n", + "Requirement already satisfied: playwright<2.0.0,>=1.0.0 in /usr/local/lib/python3.12/dist-packages (from playwright-stealth) (1.55.0)\n", + "Requirement already satisfied: pyee<14,>=13 in /usr/local/lib/python3.12/dist-packages (from playwright<2.0.0,>=1.0.0->playwright-stealth) (13.0.0)\n", + "Requirement already satisfied: greenlet<4.0.0,>=3.1.1 in /usr/local/lib/python3.12/dist-packages (from playwright<2.0.0,>=1.0.0->playwright-stealth) (3.2.4)\n", + "Requirement already satisfied: typing-extensions in /usr/local/lib/python3.12/dist-packages (from pyee<14,>=13->playwright<2.0.0,>=1.0.0->playwright-stealth) (4.15.0)\n", + "Downloading playwright_stealth-2.0.0-py3-none-any.whl (32 kB)\n", + "Installing collected packages: playwright-stealth\n", + "Successfully installed playwright-stealth-2.0.0\n", + "Downloading Chromium 140.0.7339.16 (playwright build v1187)\u001b[2m from https://cdn.playwright.dev/dbazure/download/playwright/builds/chromium/1187/chromium-linux.zip\u001b[22m\n", + "\u001b[1G173.7 MiB [] 0% 0.0s\u001b[0K\u001b[1G173.7 MiB [] 0% 37.4s\u001b[0K\u001b[1G173.7 MiB [] 0% 57.4s\u001b[0K\u001b[1G173.7 MiB [] 0% 68.2s\u001b[0K\u001b[1G173.7 MiB [] 0% 78.2s\u001b[0K\u001b[1G173.7 MiB [] 0% 82.9s\u001b[0K\u001b[1G173.7 MiB [] 0% 87.8s\u001b[0K\u001b[1G173.7 MiB [] 0% 89.1s\u001b[0K\u001b[1G173.7 MiB [] 0% 92.4s\u001b[0K\u001b[1G173.7 MiB [] 0% 95.1s\u001b[0K\u001b[1G173.7 MiB [] 0% 95.5s\u001b[0K\u001b[1G173.7 MiB [] 0% 96.7s\u001b[0K\u001b[1G173.7 MiB [] 0% 98.5s\u001b[0K\u001b[1G173.7 MiB [] 0% 98.9s\u001b[0K\u001b[1G173.7 MiB [] 0% 100.3s\u001b[0K\u001b[1G173.7 MiB [] 0% 101.6s\u001b[0K\u001b[1G173.7 MiB [] 0% 101.8s\u001b[0K\u001b[1G173.7 MiB [] 0% 102.5s\u001b[0K\u001b[1G173.7 MiB [] 0% 102.9s\u001b[0K\u001b[1G173.7 MiB [] 0% 103.0s\u001b[0K\u001b[1G173.7 MiB [] 0% 103.8s\u001b[0K\u001b[1G173.7 MiB [] 0% 104.4s\u001b[0K\u001b[1G173.7 MiB [] 0% 105.1s\u001b[0K\u001b[1G173.7 MiB [] 0% 88.9s\u001b[0K\u001b[1G173.7 MiB [] 0% 61.4s\u001b[0K\u001b[1G173.7 MiB [] 1% 31.9s\u001b[0K\u001b[1G173.7 MiB [] 2% 23.7s\u001b[0K\u001b[1G173.7 MiB [] 3% 16.5s\u001b[0K\u001b[1G173.7 MiB [] 3% 14.5s\u001b[0K\u001b[1G173.7 MiB [] 4% 13.6s\u001b[0K\u001b[1G173.7 MiB [] 4% 12.4s\u001b[0K\u001b[1G173.7 MiB [] 4% 12.0s\u001b[0K\u001b[1G173.7 MiB [] 5% 11.0s\u001b[0K\u001b[1G173.7 MiB [] 5% 11.2s\u001b[0K\u001b[1G173.7 MiB [] 5% 11.4s\u001b[0K\u001b[1G173.7 MiB [] 6% 10.7s\u001b[0K\u001b[1G173.7 MiB [] 6% 10.1s\u001b[0K\u001b[1G173.7 MiB [] 7% 9.6s\u001b[0K\u001b[1G173.7 MiB [] 7% 9.0s\u001b[0K\u001b[1G173.7 MiB [] 8% 8.6s\u001b[0K\u001b[1G173.7 MiB [] 9% 8.2s\u001b[0K\u001b[1G173.7 MiB [] 9% 8.1s\u001b[0K\u001b[1G173.7 MiB [] 9% 8.0s\u001b[0K\u001b[1G173.7 MiB [] 10% 7.8s\u001b[0K\u001b[1G173.7 MiB [] 11% 7.3s\u001b[0K\u001b[1G173.7 MiB [] 12% 6.8s\u001b[0K\u001b[1G173.7 MiB [] 13% 6.3s\u001b[0K\u001b[1G173.7 MiB [] 14% 5.9s\u001b[0K\u001b[1G173.7 MiB [] 14% 5.6s\u001b[0K\u001b[1G173.7 MiB [] 15% 5.4s\u001b[0K\u001b[1G173.7 MiB [] 16% 5.3s\u001b[0K\u001b[1G173.7 MiB [] 16% 5.1s\u001b[0K\u001b[1G173.7 MiB [] 17% 5.0s\u001b[0K\u001b[1G173.7 MiB [] 18% 4.9s\u001b[0K\u001b[1G173.7 MiB [] 18% 4.8s\u001b[0K\u001b[1G173.7 MiB [] 19% 4.8s\u001b[0K\u001b[1G173.7 MiB [] 19% 4.7s\u001b[0K\u001b[1G173.7 MiB [] 20% 4.6s\u001b[0K\u001b[1G173.7 MiB [] 21% 4.4s\u001b[0K\u001b[1G173.7 MiB [] 22% 4.2s\u001b[0K\u001b[1G173.7 MiB [] 23% 4.1s\u001b[0K\u001b[1G173.7 MiB [] 24% 3.9s\u001b[0K\u001b[1G173.7 MiB [] 25% 3.8s\u001b[0K\u001b[1G173.7 MiB [] 26% 3.6s\u001b[0K\u001b[1G173.7 MiB [] 27% 3.5s\u001b[0K\u001b[1G173.7 MiB [] 28% 3.3s\u001b[0K\u001b[1G173.7 MiB [] 30% 3.1s\u001b[0K\u001b[1G173.7 MiB [] 31% 3.0s\u001b[0K\u001b[1G173.7 MiB [] 32% 2.9s\u001b[0K\u001b[1G173.7 MiB [] 33% 2.8s\u001b[0K\u001b[1G173.7 MiB [] 35% 2.6s\u001b[0K\u001b[1G173.7 MiB [] 36% 2.5s\u001b[0K\u001b[1G173.7 MiB [] 37% 2.4s\u001b[0K\u001b[1G173.7 MiB [] 38% 2.3s\u001b[0K\u001b[1G173.7 MiB [] 40% 2.2s\u001b[0K\u001b[1G173.7 MiB [] 41% 2.2s\u001b[0K\u001b[1G173.7 MiB [] 42% 2.1s\u001b[0K\u001b[1G173.7 MiB [] 43% 2.0s\u001b[0K\u001b[1G173.7 MiB [] 44% 1.9s\u001b[0K\u001b[1G173.7 MiB [] 45% 1.9s\u001b[0K\u001b[1G173.7 MiB [] 46% 1.8s\u001b[0K\u001b[1G173.7 MiB [] 47% 1.8s\u001b[0K\u001b[1G173.7 MiB [] 48% 1.8s\u001b[0K\u001b[1G173.7 MiB [] 48% 1.7s\u001b[0K\u001b[1G173.7 MiB [] 49% 1.7s\u001b[0K\u001b[1G173.7 MiB [] 49% 1.8s\u001b[0K\u001b[1G173.7 MiB [] 50% 1.8s\u001b[0K\u001b[1G173.7 MiB [] 51% 1.7s\u001b[0K\u001b[1G173.7 MiB [] 52% 1.7s\u001b[0K\u001b[1G173.7 MiB [] 53% 1.7s\u001b[0K\u001b[1G173.7 MiB [] 54% 1.7s\u001b[0K\u001b[1G173.7 MiB [] 54% 1.6s\u001b[0K\u001b[1G173.7 MiB [] 55% 1.6s\u001b[0K\u001b[1G173.7 MiB [] 56% 1.5s\u001b[0K\u001b[1G173.7 MiB [] 58% 1.5s\u001b[0K\u001b[1G173.7 MiB [] 59% 1.4s\u001b[0K\u001b[1G173.7 MiB [] 60% 1.4s\u001b[0K\u001b[1G173.7 MiB [] 61% 1.3s\u001b[0K\u001b[1G173.7 MiB [] 62% 1.3s\u001b[0K\u001b[1G173.7 MiB [] 63% 1.2s\u001b[0K\u001b[1G173.7 MiB [] 64% 1.2s\u001b[0K\u001b[1G173.7 MiB [] 65% 1.1s\u001b[0K\u001b[1G173.7 MiB [] 67% 1.0s\u001b[0K\u001b[1G173.7 MiB [] 68% 1.0s\u001b[0K\u001b[1G173.7 MiB [] 69% 1.0s\u001b[0K\u001b[1G173.7 MiB [] 70% 0.9s\u001b[0K\u001b[1G173.7 MiB [] 71% 0.9s\u001b[0K\u001b[1G173.7 MiB [] 72% 0.8s\u001b[0K\u001b[1G173.7 MiB [] 73% 0.8s\u001b[0K\u001b[1G173.7 MiB [] 74% 0.8s\u001b[0K\u001b[1G173.7 MiB [] 76% 0.7s\u001b[0K\u001b[1G173.7 MiB [] 77% 0.7s\u001b[0K\u001b[1G173.7 MiB [] 79% 0.6s\u001b[0K\u001b[1G173.7 MiB [] 81% 0.5s\u001b[0K\u001b[1G173.7 MiB [] 82% 0.5s\u001b[0K\u001b[1G173.7 MiB [] 84% 0.4s\u001b[0K\u001b[1G173.7 MiB [] 85% 0.4s\u001b[0K\u001b[1G173.7 MiB [] 87% 0.3s\u001b[0K\u001b[1G173.7 MiB [] 88% 0.3s\u001b[0K\u001b[1G173.7 MiB [] 89% 0.3s\u001b[0K\u001b[1G173.7 MiB [] 90% 0.3s\u001b[0K\u001b[1G173.7 MiB [] 91% 0.2s\u001b[0K\u001b[1G173.7 MiB [] 93% 0.2s\u001b[0K\u001b[1G173.7 MiB [] 94% 0.1s\u001b[0K\u001b[1G173.7 MiB [] 95% 0.1s\u001b[0K\u001b[1G173.7 MiB [] 97% 0.1s\u001b[0K\u001b[1G173.7 MiB [] 98% 0.0s\u001b[0K\u001b[1G173.7 MiB [] 100% 0.0s\u001b[0K\n", + "Chromium 140.0.7339.16 (playwright build v1187) downloaded to /root/.cache/ms-playwright/chromium-1187\n", + "Downloading Chromium Headless Shell 140.0.7339.16 (playwright build v1187)\u001b[2m from https://cdn.playwright.dev/dbazure/download/playwright/builds/chromium/1187/chromium-headless-shell-linux.zip\u001b[22m\n", + "\u001b[1G104.3 MiB [] 0% 0.0s\u001b[0K\u001b[1G104.3 MiB [] 0% 10.3s\u001b[0K\u001b[1G104.3 MiB [] 0% 8.4s\u001b[0K\u001b[1G104.3 MiB [] 0% 8.8s\u001b[0K\u001b[1G104.3 MiB [] 0% 7.9s\u001b[0K\u001b[1G104.3 MiB [] 1% 6.7s\u001b[0K\u001b[1G104.3 MiB [] 1% 6.1s\u001b[0K\u001b[1G104.3 MiB [] 2% 5.2s\u001b[0K\u001b[1G104.3 MiB [] 2% 4.9s\u001b[0K\u001b[1G104.3 MiB [] 3% 4.4s\u001b[0K\u001b[1G104.3 MiB [] 4% 3.3s\u001b[0K\u001b[1G104.3 MiB [] 6% 2.8s\u001b[0K\u001b[1G104.3 MiB [] 7% 2.4s\u001b[0K\u001b[1G104.3 MiB [] 9% 2.2s\u001b[0K\u001b[1G104.3 MiB [] 10% 2.1s\u001b[0K\u001b[1G104.3 MiB [] 11% 2.0s\u001b[0K\u001b[1G104.3 MiB [] 13% 1.7s\u001b[0K\u001b[1G104.3 MiB [] 15% 1.7s\u001b[0K\u001b[1G104.3 MiB [] 18% 1.5s\u001b[0K\u001b[1G104.3 MiB [] 20% 1.3s\u001b[0K\u001b[1G104.3 MiB [] 21% 1.3s\u001b[0K\u001b[1G104.3 MiB [] 23% 1.2s\u001b[0K\u001b[1G104.3 MiB [] 25% 1.1s\u001b[0K\u001b[1G104.3 MiB [] 27% 1.1s\u001b[0K\u001b[1G104.3 MiB [] 30% 1.0s\u001b[0K\u001b[1G104.3 MiB [] 32% 0.9s\u001b[0K\u001b[1G104.3 MiB [] 34% 0.9s\u001b[0K\u001b[1G104.3 MiB [] 36% 0.8s\u001b[0K\u001b[1G104.3 MiB [] 38% 0.8s\u001b[0K\u001b[1G104.3 MiB [] 40% 0.8s\u001b[0K\u001b[1G104.3 MiB [] 42% 0.7s\u001b[0K\u001b[1G104.3 MiB [] 43% 0.7s\u001b[0K\u001b[1G104.3 MiB [] 46% 0.7s\u001b[0K\u001b[1G104.3 MiB [] 48% 0.6s\u001b[0K\u001b[1G104.3 MiB [] 51% 0.6s\u001b[0K\u001b[1G104.3 MiB [] 53% 0.5s\u001b[0K\u001b[1G104.3 MiB [] 55% 0.5s\u001b[0K\u001b[1G104.3 MiB [] 57% 0.5s\u001b[0K\u001b[1G104.3 MiB [] 60% 0.4s\u001b[0K\u001b[1G104.3 MiB [] 63% 0.4s\u001b[0K\u001b[1G104.3 MiB [] 64% 0.4s\u001b[0K\u001b[1G104.3 MiB [] 67% 0.3s\u001b[0K\u001b[1G104.3 MiB [] 70% 0.3s\u001b[0K\u001b[1G104.3 MiB [] 72% 0.3s\u001b[0K\u001b[1G104.3 MiB [] 74% 0.3s\u001b[0K\u001b[1G104.3 MiB [] 76% 0.2s\u001b[0K\u001b[1G104.3 MiB [] 78% 0.2s\u001b[0K\u001b[1G104.3 MiB [] 80% 0.2s\u001b[0K\u001b[1G104.3 MiB [] 81% 0.2s\u001b[0K\u001b[1G104.3 MiB [] 83% 0.2s\u001b[0K\u001b[1G104.3 MiB [] 85% 0.2s\u001b[0K\u001b[1G104.3 MiB [] 88% 0.1s\u001b[0K\u001b[1G104.3 MiB [] 90% 0.1s\u001b[0K\u001b[1G104.3 MiB [] 92% 0.1s\u001b[0K\u001b[1G104.3 MiB [] 94% 0.1s\u001b[0K\u001b[1G104.3 MiB [] 95% 0.1s\u001b[0K\u001b[1G104.3 MiB [] 97% 0.0s\u001b[0K\u001b[1G104.3 MiB [] 99% 0.0s\u001b[0K\u001b[1G104.3 MiB [] 100% 0.0s\u001b[0K\n", + "Chromium Headless Shell 140.0.7339.16 (playwright build v1187) downloaded to /root/.cache/ms-playwright/chromium_headless_shell-1187\n", + "Downloading Firefox 141.0 (playwright build v1490)\u001b[2m from https://cdn.playwright.dev/dbazure/download/playwright/builds/firefox/1490/firefox-ubuntu-22.04.zip\u001b[22m\n", + "\u001b[1G96 MiB [] 0% 0.0s\u001b[0K\u001b[1G96 MiB [] 0% 5.3s\u001b[0K\u001b[1G96 MiB [] 1% 2.5s\u001b[0K\u001b[1G96 MiB [] 2% 1.9s\u001b[0K\u001b[1G96 MiB [] 3% 1.7s\u001b[0K\u001b[1G96 MiB [] 5% 1.5s\u001b[0K\u001b[1G96 MiB [] 6% 1.4s\u001b[0K\u001b[1G96 MiB [] 8% 1.3s\u001b[0K\u001b[1G96 MiB [] 9% 1.2s\u001b[0K\u001b[1G96 MiB [] 10% 1.4s\u001b[0K\u001b[1G96 MiB [] 11% 1.3s\u001b[0K\u001b[1G96 MiB [] 12% 1.3s\u001b[0K\u001b[1G96 MiB [] 13% 1.4s\u001b[0K\u001b[1G96 MiB [] 14% 1.4s\u001b[0K\u001b[1G96 MiB [] 16% 1.3s\u001b[0K\u001b[1G96 MiB [] 17% 1.3s\u001b[0K\u001b[1G96 MiB [] 19% 1.2s\u001b[0K\u001b[1G96 MiB [] 21% 1.2s\u001b[0K\u001b[1G96 MiB [] 22% 1.2s\u001b[0K\u001b[1G96 MiB [] 23% 1.2s\u001b[0K\u001b[1G96 MiB [] 24% 1.1s\u001b[0K\u001b[1G96 MiB [] 26% 1.1s\u001b[0K\u001b[1G96 MiB [] 27% 1.1s\u001b[0K\u001b[1G96 MiB [] 29% 1.0s\u001b[0K\u001b[1G96 MiB [] 31% 1.0s\u001b[0K\u001b[1G96 MiB [] 33% 0.9s\u001b[0K\u001b[1G96 MiB [] 35% 0.8s\u001b[0K\u001b[1G96 MiB [] 37% 0.8s\u001b[0K\u001b[1G96 MiB [] 38% 0.8s\u001b[0K\u001b[1G96 MiB [] 40% 0.8s\u001b[0K\u001b[1G96 MiB [] 42% 0.7s\u001b[0K\u001b[1G96 MiB [] 44% 0.7s\u001b[0K\u001b[1G96 MiB [] 45% 0.7s\u001b[0K\u001b[1G96 MiB [] 46% 0.7s\u001b[0K\u001b[1G96 MiB [] 47% 0.7s\u001b[0K\u001b[1G96 MiB [] 49% 0.7s\u001b[0K\u001b[1G96 MiB [] 51% 0.6s\u001b[0K\u001b[1G96 MiB [] 53% 0.6s\u001b[0K\u001b[1G96 MiB [] 55% 0.6s\u001b[0K\u001b[1G96 MiB [] 56% 0.5s\u001b[0K\u001b[1G96 MiB [] 59% 0.5s\u001b[0K\u001b[1G96 MiB [] 61% 0.5s\u001b[0K\u001b[1G96 MiB [] 64% 0.4s\u001b[0K\u001b[1G96 MiB [] 66% 0.4s\u001b[0K\u001b[1G96 MiB [] 69% 0.3s\u001b[0K\u001b[1G96 MiB [] 71% 0.3s\u001b[0K\u001b[1G96 MiB [] 74% 0.3s\u001b[0K\u001b[1G96 MiB [] 75% 0.3s\u001b[0K\u001b[1G96 MiB [] 77% 0.2s\u001b[0K\u001b[1G96 MiB [] 80% 0.2s\u001b[0K\u001b[1G96 MiB [] 82% 0.2s\u001b[0K\u001b[1G96 MiB [] 84% 0.2s\u001b[0K\u001b[1G96 MiB [] 86% 0.1s\u001b[0K\u001b[1G96 MiB [] 88% 0.1s\u001b[0K\u001b[1G96 MiB [] 91% 0.1s\u001b[0K\u001b[1G96 MiB [] 93% 0.1s\u001b[0K\u001b[1G96 MiB [] 95% 0.1s\u001b[0K\u001b[1G96 MiB [] 96% 0.0s\u001b[0K\u001b[1G96 MiB [] 99% 0.0s\u001b[0K\u001b[1G96 MiB [] 100% 0.0s\u001b[0K\n", + "Firefox 141.0 (playwright build v1490) downloaded to /root/.cache/ms-playwright/firefox-1490\n", + "Downloading Webkit 26.0 (playwright build v2203)\u001b[2m from https://cdn.playwright.dev/dbazure/download/playwright/builds/webkit/2203/webkit-ubuntu-22.04.zip\u001b[22m\n", + "\u001b[1G94.6 MiB [] 0% 0.0s\u001b[0K\u001b[1G94.6 MiB [] 0% 3.5s\u001b[0K\u001b[1G94.6 MiB [] 2% 1.5s\u001b[0K\u001b[1G94.6 MiB [] 3% 1.3s\u001b[0K\u001b[1G94.6 MiB [] 5% 1.1s\u001b[0K\u001b[1G94.6 MiB [] 7% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 9% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 10% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 11% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 12% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 13% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 15% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 17% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 18% 1.0s\u001b[0K\u001b[1G94.6 MiB [] 20% 0.9s\u001b[0K\u001b[1G94.6 MiB [] 22% 0.8s\u001b[0K\u001b[1G94.6 MiB [] 23% 0.9s\u001b[0K\u001b[1G94.6 MiB [] 24% 0.9s\u001b[0K\u001b[1G94.6 MiB [] 25% 0.9s\u001b[0K\u001b[1G94.6 MiB [] 27% 0.8s\u001b[0K\u001b[1G94.6 MiB [] 29% 0.8s\u001b[0K\u001b[1G94.6 MiB [] 30% 0.8s\u001b[0K\u001b[1G94.6 MiB [] 32% 0.8s\u001b[0K\u001b[1G94.6 MiB [] 34% 0.7s\u001b[0K\u001b[1G94.6 MiB [] 35% 0.7s\u001b[0K\u001b[1G94.6 MiB [] 37% 0.7s\u001b[0K\u001b[1G94.6 MiB [] 38% 0.7s\u001b[0K\u001b[1G94.6 MiB [] 39% 0.7s\u001b[0K\u001b[1G94.6 MiB [] 41% 0.6s\u001b[0K\u001b[1G94.6 MiB [] 43% 0.6s\u001b[0K\u001b[1G94.6 MiB [] 45% 0.6s\u001b[0K\u001b[1G94.6 MiB [] 47% 0.6s\u001b[0K\u001b[1G94.6 MiB [] 48% 0.6s\u001b[0K\u001b[1G94.6 MiB [] 49% 0.6s\u001b[0K\u001b[1G94.6 MiB [] 51% 0.5s\u001b[0K\u001b[1G94.6 MiB [] 52% 0.5s\u001b[0K\u001b[1G94.6 MiB [] 54% 0.5s\u001b[0K\u001b[1G94.6 MiB [] 56% 0.5s\u001b[0K\u001b[1G94.6 MiB [] 58% 0.5s\u001b[0K\u001b[1G94.6 MiB [] 60% 0.4s\u001b[0K\u001b[1G94.6 MiB [] 61% 0.4s\u001b[0K\u001b[1G94.6 MiB [] 63% 0.4s\u001b[0K\u001b[1G94.6 MiB [] 64% 0.4s\u001b[0K\u001b[1G94.6 MiB [] 66% 0.4s\u001b[0K\u001b[1G94.6 MiB [] 67% 0.4s\u001b[0K\u001b[1G94.6 MiB [] 68% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 70% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 72% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 74% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 76% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 78% 0.2s\u001b[0K\u001b[1G94.6 MiB [] 80% 0.2s\u001b[0K\u001b[1G94.6 MiB [] 80% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 81% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 82% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 84% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 85% 0.3s\u001b[0K\u001b[1G94.6 MiB [] 87% 0.2s\u001b[0K\u001b[1G94.6 MiB [] 90% 0.2s\u001b[0K\u001b[1G94.6 MiB [] 93% 0.1s\u001b[0K\u001b[1G94.6 MiB [] 96% 0.1s\u001b[0K\u001b[1G94.6 MiB [] 100% 0.0s\u001b[0K\n", + "Webkit 26.0 (playwright build v2203) downloaded to /root/.cache/ms-playwright/webkit-2203\n", + "Downloading FFMPEG playwright build v1011\u001b[2m from https://cdn.playwright.dev/dbazure/download/playwright/builds/ffmpeg/1011/ffmpeg-linux.zip\u001b[22m\n", + "\u001b[1G2.3 MiB [] 0% 0.0s\u001b[0K\u001b[1G2.3 MiB [] 15% 0.1s\u001b[0K\u001b[1G2.3 MiB [] 94% 0.0s\u001b[0K\u001b[1G2.3 MiB [] 100% 0.0s\u001b[0K\n", + "FFMPEG playwright build v1011 downloaded to /root/.cache/ms-playwright/ffmpeg-1011\n", + "Playwright Host validation warning: \n", + "╔══════════════════════════════════════════════════════╗\n", + "║ Host system is missing dependencies to run browsers. ║\n", + "║ Missing libraries: ║\n", + "║ libwoff2dec.so.1.0.2 ║\n", + "║ libgstgl-1.0.so.0 ║\n", + "║ libgstcodecparsers-1.0.so.0 ║\n", + "║ libavif.so.13 ║\n", + "║ libharfbuzz-icu.so.0 ║\n", + "║ libenchant-2.so.2 ║\n", + "║ libsecret-1.so.0 ║\n", + "║ libhyphen.so.0 ║\n", + "║ libmanette-0.2.so.0 ║\n", + "╚══════════════════════════════════════════════════════╝\n", + " at validateDependenciesLinux (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/server/registry/dependencies.js:269:9)\n", + "\u001b[90m at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\u001b[39m\n", + " at async Registry._validateHostRequirements (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/server/registry/index.js:934:14)\n", + " at async Registry._validateHostRequirementsForExecutableIfNeeded (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/server/registry/index.js:1056:7)\n", + " at async Registry.validateHostRequirementsForExecutablesIfNeeded (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/server/registry/index.js:1045:7)\n", + " at async i. (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/cli/program.js:217:7)\n", + "Installing dependencies...\n", + "Hit:1 https://cli.github.com/packages stable InRelease\n", + "Get:2 https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/ InRelease [3,632 B]\n", + "Hit:3 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64 InRelease\n", + "Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease\n", + "Get:5 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]\n", + "Get:6 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]\n", + "Get:7 https://r2u.stat.illinois.edu/ubuntu jammy InRelease [6,555 B]\n", + "Get:8 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]\n", + "Get:9 https://r2u.stat.illinois.edu/ubuntu jammy/main amd64 Packages [2,816 kB]\n", + "Hit:10 https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy InRelease\n", + "Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,594 kB]\n", + "Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1,288 kB]\n", + "Hit:13 https://ppa.launchpadcontent.net/graphics-drivers/ppa/ubuntu jammy InRelease\n", + "Hit:14 https://ppa.launchpadcontent.net/ubuntugis/ppa/ubuntu jammy InRelease\n", + "Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3,799 kB]\n", + "Get:16 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [5,865 kB]\n", + "Get:17 https://r2u.stat.illinois.edu/ubuntu jammy/main all Packages [9,389 kB]\n", + "Get:18 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3,473 kB]\n", + "Fetched 28.6 MB in 4s (8,049 kB/s)\n", + "Reading package lists... Done\n", + "W: Skipping acquire of configured file 'main/source/Sources' as repository 'https://r2u.stat.illinois.edu/ubuntu jammy InRelease' does not seem to provide it (sources.list entry misspelt?)\n", + "Reading package lists... Done\n", + "Building dependency tree... Done\n", + "Reading state information... Done\n", + "fonts-liberation is already the newest version (1:1.07.4-11).\n", + "libasound2 is already the newest version (1.2.6.1-1ubuntu1).\n", + "libasound2 set to manually installed.\n", + "libatk-bridge2.0-0 is already the newest version (2.38.0-3).\n", + "libatk-bridge2.0-0 set to manually installed.\n", + "libatk1.0-0 is already the newest version (2.36.0-3build1).\n", + "libatk1.0-0 set to manually installed.\n", + "libatspi2.0-0 is already the newest version (2.44.0-3).\n", + "libatspi2.0-0 set to manually installed.\n", + "libcairo-gobject2 is already the newest version (1.16.0-5ubuntu2).\n", + "libcairo-gobject2 set to manually installed.\n", + "libcairo2 is already the newest version (1.16.0-5ubuntu2).\n", + "libcairo2 set to manually installed.\n", + "libegl1 is already the newest version (1.4.0-1).\n", + "libepoxy0 is already the newest version (1.5.10-1).\n", + "libepoxy0 set to manually installed.\n", + "libevent-2.1-7 is already the newest version (2.1.12-stable-1build3).\n", + "libevent-2.1-7 set to manually installed.\n", + "libfontconfig1 is already the newest version (2.13.1-4.2ubuntu5).\n", + "libgles2 is already the newest version (1.4.0-1).\n", + "libglx0 is already the newest version (1.4.0-1).\n", + "libglx0 set to manually installed.\n", + "libicu70 is already the newest version (70.1-2).\n", + "libicu70 set to manually installed.\n", + "libjpeg-turbo8 is already the newest version (2.1.2-0ubuntu1).\n", + "libjpeg-turbo8 set to manually installed.\n", + "liblcms2-2 is already the newest version (2.12~rc1-2build2).\n", + "liblcms2-2 set to manually installed.\n", + "libopengl0 is already the newest version (1.4.0-1).\n", + "libopus0 is already the newest version (1.3.1-0.1build2).\n", + "libopus0 set to manually installed.\n", + "libpng16-16 is already the newest version (1.6.37-3build5).\n", + "libpng16-16 set to manually installed.\n", + "libxcb-shm0 is already the newest version (1.14-3ubuntu3).\n", + "libxcb-shm0 set to manually installed.\n", + "libxcb1 is already the newest version (1.14-3ubuntu3).\n", + "libxcb1 set to manually installed.\n", + "libxcomposite1 is already the newest version (1:0.4.5-1build2).\n", + "libxcomposite1 set to manually installed.\n", + "libxcursor1 is already the newest version (1:1.2.0-2build4).\n", + "libxcursor1 set to manually installed.\n", + "libxdamage1 is already the newest version (1:1.1.5-2build2).\n", + "libxdamage1 set to manually installed.\n", + "libxext6 is already the newest version (2:1.3.4-1build1).\n", + "libxfixes3 is already the newest version (1:6.0.0-1).\n", + "libxfixes3 set to manually installed.\n", + "libxi6 is already the newest version (2:1.8-1build1).\n", + "libxi6 set to manually installed.\n", + "libxkbcommon0 is already the newest version (1.4.0-1).\n", + "libxkbcommon0 set to manually installed.\n", + "libxrandr2 is already the newest version (2:1.5.2-1build1).\n", + "libxrandr2 set to manually installed.\n", + "libxrender1 is already the newest version (1:0.9.10-1build4).\n", + "libx264-163 is already the newest version (2:0.163.3060+git5db6aa6-2build1).\n", + "libx264-163 set to manually installed.\n", + "libatomic1 is already the newest version (12.3.0-1ubuntu1~22.04.2).\n", + "libatomic1 set to manually installed.\n", + "libcups2 is already the newest version (2.4.1op1-1ubuntu4.12).\n", + "libcups2 set to manually installed.\n", + "libdbus-1-3 is already the newest version (1.12.20-2ubuntu4.1).\n", + "libdbus-1-3 set to manually installed.\n", + "libdrm2 is already the newest version (2.4.113-2~ubuntu0.22.04.1).\n", + "libdrm2 set to manually installed.\n", + "libfreetype6 is already the newest version (2.11.1+dfsg-1ubuntu0.3).\n", + "libfreetype6 set to manually installed.\n", + "libgbm1 is already the newest version (23.2.1-1ubuntu3.1~22.04.3).\n", + "libgbm1 set to manually installed.\n", + "libgdk-pixbuf-2.0-0 is already the newest version (2.42.8+dfsg-1ubuntu0.4).\n", + "libgdk-pixbuf-2.0-0 set to manually installed.\n", + "libglib2.0-0 is already the newest version (2.72.4-0ubuntu2.6).\n", + "libgstreamer-plugins-base1.0-0 is already the newest version (1.20.1-1ubuntu0.5).\n", + "libgstreamer-plugins-base1.0-0 set to manually installed.\n", + "libgstreamer1.0-0 is already the newest version (1.20.3-0ubuntu1.1).\n", + "libgstreamer1.0-0 set to manually installed.\n", + "libgtk-3-0 is already the newest version (3.24.33-1ubuntu2.2).\n", + "libgtk-3-0 set to manually installed.\n", + "libgtk-4-1 is already the newest version (4.6.9+ds-0ubuntu0.22.04.2).\n", + "libgtk-4-1 set to manually installed.\n", + "libharfbuzz0b is already the newest version (2.7.4-1ubuntu3.2).\n", + "libharfbuzz0b set to manually installed.\n", + "libnspr4 is already the newest version (2:4.35-0ubuntu0.22.04.1).\n", + "libnspr4 set to manually installed.\n", + "libnss3 is already the newest version (2:3.98-0ubuntu0.22.04.2).\n", + "libnss3 set to manually installed.\n", + "libopenjp2-7 is already the newest version (2.4.0-6ubuntu0.4).\n", + "libopenjp2-7 set to manually installed.\n", + "libpango-1.0-0 is already the newest version (1.50.6+ds-2ubuntu1).\n", + "libpango-1.0-0 set to manually installed.\n", + "libpangocairo-1.0-0 is already the newest version (1.50.6+ds-2ubuntu1).\n", + "libpangocairo-1.0-0 set to manually installed.\n", + "libwayland-client0 is already the newest version (1.20.0-1ubuntu0.1).\n", + "libwayland-client0 set to manually installed.\n", + "libwayland-egl1 is already the newest version (1.20.0-1ubuntu0.1).\n", + "libwayland-egl1 set to manually installed.\n", + "libwayland-server0 is already the newest version (1.20.0-1ubuntu0.1).\n", + "libwayland-server0 set to manually installed.\n", + "libwebpdemux2 is already the newest version (1.2.2-2ubuntu0.22.04.2).\n", + "libx11-6 is already the newest version (2:1.7.5-1ubuntu0.3).\n", + "libx11-6 set to manually installed.\n", + "libx11-xcb1 is already the newest version (2:1.7.5-1ubuntu0.3).\n", + "libx11-xcb1 set to manually installed.\n", + "libxml2 is already the newest version (2.9.13+dfsg-1ubuntu0.9).\n", + "libxml2 set to manually installed.\n", + "libxslt1.1 is already the newest version (1.1.34-4ubuntu0.22.04.4).\n", + "ffmpeg is already the newest version (7:4.4.2-0ubuntu0.22.04.1).\n", + "xvfb is already the newest version (2:21.1.4-2ubuntu1.7~22.04.15).\n", + "The following additional packages will be installed:\n", + " dictionaries-common glib-networking glib-networking-common\n", + " glib-networking-services gsettings-desktop-schemas hunspell-en-us libaa1\n", + " libabsl20210324 libaspell15 libcdparanoia0 libdca0 libdv4 libdvdnav4\n", + " libdvdread8 libfaad2 libfluidsynth3 libfreeaptx0 libgav1-0 libgssdp-1.2-0\n", + " libgstreamer-plugins-bad1.0-0 libgstreamer-plugins-good1.0-0 libgupnp-1.2-1\n", + " libgupnp-igd-1.0-4 libhunspell-1.7-0 libinstpatch-1.0-2 libjson-glib-1.0-0\n", + " libjson-glib-1.0-common libkate1 libldacbt-enc2 libltc11 libmjpegutils-2.1-0\n", + " libmodplug1 libmpcdec6 libmpeg2encpp-2.1-0 libmplex2-2.1-0 libnice10\n", + " libopenh264-6 libopenni2-0 libqrencode4 libsbc1 libsecret-common libshout3\n", + " libsoundtouch1 libsoup-3.0-common libsoup2.4-1 libsoup2.4-common libspandsp2\n", + " libsrtp2-1 libtag1v5 libtag1v5-vanilla libtext-iconv-perl libv4l-0\n", + " libv4lconvert0 libvisual-0.4-0 libvo-aacenc0 libvo-amrwbenc0 libwavpack1\n", + " libwebrtc-audio-processing1 libwildmidi2 libyuv0 libzbar0 libzxingcore1\n", + " session-migration timgm6mb-soundfont xfonts-encodings xfonts-utils\n", + "Suggested packages:\n", + " ispell | aspell | hunspell wordlist frei0r-plugins gvfs hunspell\n", + " openoffice.org-hunspell | openoffice.org-core aspell libdv-bin oss-compat\n", + " libdvdcss2 libenchant-2-voikko gnome-shell | notification-daemon\n", + " libvisual-0.4-plugins libwildmidi-config fluid-soundfont-gm\n", + "Recommended packages:\n", + " fonts-ipafont-mincho fonts-tlwg-loma gstreamer1.0-x aspell-en\n", + " | aspell-dictionary | aspell6a-dictionary enchant-2 gstreamer1.0-gl\n", + " libmagickcore-6.q16-6-extra\n", + "The following NEW packages will be installed:\n", + " dictionaries-common fonts-freefont-ttf fonts-ipafont-gothic\n", + " fonts-noto-color-emoji fonts-tlwg-loma-otf fonts-unifont fonts-wqy-zenhei\n", + " glib-networking glib-networking-common glib-networking-services\n", + " gsettings-desktop-schemas gstreamer1.0-libav gstreamer1.0-plugins-bad\n", + " gstreamer1.0-plugins-base gstreamer1.0-plugins-good hunspell-en-us libaa1\n", + " libabsl20210324 libaspell15 libavif13 libcdparanoia0 libdbus-glib-1-2\n", + " libdca0 libdv4 libdvdnav4 libdvdread8 libenchant-2-2 libevdev2 libfaad2\n", + " libffi7 libfluidsynth3 libfreeaptx0 libgav1-0 libgssdp-1.2-0\n", + " libgstreamer-gl1.0-0 libgstreamer-plugins-bad1.0-0\n", + " libgstreamer-plugins-good1.0-0 libgudev-1.0-0 libgupnp-1.2-1\n", + " libgupnp-igd-1.0-4 libharfbuzz-icu0 libhunspell-1.7-0 libhyphen0\n", + " libinstpatch-1.0-2 libjson-glib-1.0-0 libjson-glib-1.0-common libkate1\n", + " libldacbt-enc2 libltc11 libmanette-0.2-0 libmjpegutils-2.1-0 libmodplug1\n", + " libmpcdec6 libmpeg2encpp-2.1-0 libmplex2-2.1-0 libnice10 libnotify4\n", + " libopenh264-6 libopenni2-0 libproxy1v5 libqrencode4 libsbc1 libsecret-1-0\n", + " libsecret-common libshout3 libsoundtouch1 libsoup-3.0-0 libsoup-3.0-common\n", + " libsoup2.4-1 libsoup2.4-common libspandsp2 libsrtp2-1 libtag1v5\n", + " libtag1v5-vanilla libtext-iconv-perl libv4l-0 libv4lconvert0 libvisual-0.4-0\n", + " libvo-aacenc0 libvo-amrwbenc0 libwavpack1 libwebrtc-audio-processing1\n", + " libwildmidi2 libwoff1 libxtst6 libyuv0 libzbar0 libzxingcore1\n", + " session-migration timgm6mb-soundfont xfonts-cyrillic xfonts-encodings\n", + " xfonts-scalable xfonts-utils\n", + "0 upgraded, 94 newly installed, 0 to remove and 43 not upgraded.\n", + "Need to get 48.2 MB of archives.\n", + "After this operation, 123 MB of additional disk space will be used.\n", + "Get:1 http://archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-ipafont-gothic all 00303-21ubuntu1 [3,513 kB]\n", + "Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtext-iconv-perl amd64 1.7-7build3 [14.3 kB]\n", + "Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 dictionaries-common all 1.28.14 [185 kB]\n", + "Get:4 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-freefont-ttf all 20120503-10build1 [2,388 kB]\n", + "Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 fonts-noto-color-emoji all 2.047-0ubuntu0.22.04.1 [10.0 MB]\n", + "Get:6 http://archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-tlwg-loma-otf all 1:0.7.3-1 [107 kB]\n", + "Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-unifont all 1:14.0.01-1 [3,551 kB]\n", + "Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-wqy-zenhei all 0.9.45-8 [7,472 kB]\n", + "Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 libproxy1v5 amd64 0.4.17-2 [51.9 kB]\n", + "Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 glib-networking-common all 2.72.0-1 [3,718 B]\n", + "Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 glib-networking-services amd64 2.72.0-1 [9,982 B]\n", + "Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 session-migration amd64 0.3.6 [9,774 B]\n", + "Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 gsettings-desktop-schemas all 42.0-1ubuntu1 [31.1 kB]\n", + "Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 glib-networking amd64 2.72.0-1 [69.8 kB]\n", + "Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 gstreamer1.0-libav amd64 1.20.3-0ubuntu1 [103 kB]\n", + "Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdparanoia0 amd64 3.10.2+debian-14build2 [49.3 kB]\n", + "Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvisual-0.4-0 amd64 0.4.0-17build2 [108 kB]\n", + "Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gstreamer1.0-plugins-base amd64 1.20.1-1ubuntu0.5 [712 kB]\n", + "Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 libaa1 amd64 1.4p5-50build1 [51.9 kB]\n", + "Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdv4 amd64 1.0.0-14build1 [61.9 kB]\n", + "Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.20.3-0ubuntu1.4 [30.2 kB]\n", + "Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgudev-1.0-0 amd64 1:237-2build1 [16.3 kB]\n", + "Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 libshout3 amd64 2.4.5-1build3 [54.5 kB]\n", + "Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-3ubuntu3 [304 kB]\n", + "Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-3ubuntu3 [11.5 kB]\n", + "Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 libv4lconvert0 amd64 1.22.1-2build1 [82.4 kB]\n", + "Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 libv4l-0 amd64 1.22.1-2build1 [44.9 kB]\n", + "Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 libwavpack1 amd64 5.4.0-1build2 [83.7 kB]\n", + "Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsoup2.4-common all 2.74.2-3ubuntu0.6 [4,778 B]\n", + "Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsoup2.4-1 amd64 2.74.2-3ubuntu0.6 [288 kB]\n", + "Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gstreamer1.0-plugins-good amd64 1.20.3-0ubuntu1.4 [2,009 kB]\n", + "Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 hunspell-en-us all 1:2020.12.07-2 [280 kB]\n", + "Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libabsl20210324 amd64 0~20210324.2-2ubuntu0.2 [386 kB]\n", + "Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 libaspell15 amd64 0.60.8-4build1 [325 kB]\n", + "Get:35 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgav1-0 amd64 0.17.0-1build1 [336 kB]\n", + "Get:36 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libyuv0 amd64 0.0~git20220104.b91df1a-2 [154 kB]\n", + "Get:37 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libavif13 amd64 0.9.3-3 [69.5 kB]\n", + "Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdbus-glib-1-2 amd64 0.112-2build1 [65.4 kB]\n", + "Get:39 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdvdread8 amd64 6.1.2-1 [55.7 kB]\n", + "Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdvdnav4 amd64 6.1.1-1 [39.3 kB]\n", + "Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 libhunspell-1.7-0 amd64 1.7.0-4build1 [175 kB]\n", + "Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 libenchant-2-2 amd64 2.3.2-1ubuntu2 [50.9 kB]\n", + "Get:43 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfaad2 amd64 2.10.0-2 [197 kB]\n", + "Get:44 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libffi7 amd64 3.3-5ubuntu1 [19.9 kB]\n", + "Get:45 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libinstpatch-1.0-2 amd64 1.1.6-1 [240 kB]\n", + "Get:46 http://archive.ubuntu.com/ubuntu jammy/universe amd64 timgm6mb-soundfont all 1.3-5 [5,427 kB]\n", + "Get:47 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfluidsynth3 amd64 2.2.5-1 [246 kB]\n", + "Get:48 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfreeaptx0 amd64 0.1.1-1 [12.9 kB]\n", + "Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgssdp-1.2-0 amd64 1.4.0.1-2build1 [48.9 kB]\n", + "Get:50 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.20.1-1ubuntu0.5 [204 kB]\n", + "Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgupnp-1.2-1 amd64 1.4.3-1 [93.3 kB]\n", + "Get:52 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgupnp-igd-1.0-4 amd64 1.2.0-1build1 [16.8 kB]\n", + "Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libharfbuzz-icu0 amd64 2.7.4-1ubuntu3.2 [5,890 B]\n", + "Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 libhyphen0 amd64 2.8.8-7build2 [28.2 kB]\n", + "Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjson-glib-1.0-common all 1.6.6-1build1 [4,432 B]\n", + "Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjson-glib-1.0-0 amd64 1.6.6-1build1 [69.9 kB]\n", + "Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libkate1 amd64 0.4.1-11build1 [39.4 kB]\n", + "Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libldacbt-enc2 amd64 2.0.2.3+git20200429+ed310a0-4 [24.6 kB]\n", + "Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libltc11 amd64 1.3.1-1 [12.3 kB]\n", + "Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 libevdev2 amd64 1.12.1+dfsg-1 [39.5 kB]\n", + "Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmanette-0.2-0 amd64 0.2.6-3build1 [30.4 kB]\n", + "Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmjpegutils-2.1-0 amd64 1:2.1.0+debian-6build1 [24.1 kB]\n", + "Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmodplug1 amd64 1:0.8.9.0-3 [153 kB]\n", + "Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmpcdec6 amd64 2:0.1~r495-2 [32.4 kB]\n", + "Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmpeg2encpp-2.1-0 amd64 1:2.1.0+debian-6build1 [69.4 kB]\n", + "Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmplex2-2.1-0 amd64 1:2.1.0+debian-6build1 [44.4 kB]\n", + "Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnice10 amd64 0.1.18-2 [156 kB]\n", + "Get:68 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnotify4 amd64 0.7.9-3ubuntu5.22.04.1 [20.3 kB]\n", + "Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenh264-6 amd64 2.2.0+dfsg-2 [407 kB]\n", + "Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenni2-0 amd64 2.2.0.33+dfsg-15 [389 kB]\n", + "Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libqrencode4 amd64 4.1.1-1 [24.0 kB]\n", + "Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsecret-common all 0.20.5-2 [4,278 B]\n", + "Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsecret-1-0 amd64 0.20.5-2 [124 kB]\n", + "Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsoundtouch1 amd64 2.3.1+ds1-1 [38.3 kB]\n", + "Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsoup-3.0-common all 3.0.7-0ubuntu1 [62.1 kB]\n", + "Get:76 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsoup-3.0-0 amd64 3.0.7-0ubuntu1 [278 kB]\n", + "Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libspandsp2 amd64 0.0.6+dfsg-2 [272 kB]\n", + "Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsrtp2-1 amd64 2.4.2-2 [40.7 kB]\n", + "Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libwebrtc-audio-processing1 amd64 0.3.1-0ubuntu5 [291 kB]\n", + "Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libwildmidi2 amd64 0.4.3-1 [59.9 kB]\n", + "Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 libwoff1 amd64 1.0.2-1build4 [45.2 kB]\n", + "Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxtst6 amd64 2:1.2.3-1build4 [13.4 kB]\n", + "Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzbar0 amd64 0.23.92-4build2 [121 kB]\n", + "Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzxingcore1 amd64 1.2.0-1 [619 kB]\n", + "Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB]\n", + "Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-utils amd64 1:7.7+6build2 [94.6 kB]\n", + "Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xfonts-cyrillic all 1:1.0.5 [386 kB]\n", + "Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-scalable all 1:1.0.3-1.2ubuntu1 [306 kB]\n", + "Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdca0 amd64 0.0.7-2 [88.2 kB]\n", + "Get:90 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libgstreamer-plugins-bad1.0-0 amd64 1.20.3-0ubuntu1.1 [489 kB]\n", + "Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsbc1 amd64 1.5-3build2 [34.4 kB]\n", + "Get:92 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libvo-aacenc0 amd64 0.1.3-2 [69.4 kB]\n", + "Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libvo-amrwbenc0 amd64 0.1.3-2 [68.2 kB]\n", + "Get:94 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 gstreamer1.0-plugins-bad amd64 1.20.3-0ubuntu1.1 [2,602 kB]\n", + "Fetched 48.2 MB in 5s (10.2 MB/s)\n", + "Extracting templates from packages: 100%\n", + "Preconfiguring packages ...\n", + "Selecting previously unselected package fonts-ipafont-gothic.\n", + "(Reading database ... 126675 files and directories currently installed.)\n", + "Preparing to unpack .../00-fonts-ipafont-gothic_00303-21ubuntu1_all.deb ...\n", + "Unpacking fonts-ipafont-gothic (00303-21ubuntu1) ...\n", + "Selecting previously unselected package libtext-iconv-perl.\n", + "Preparing to unpack .../01-libtext-iconv-perl_1.7-7build3_amd64.deb ...\n", + "Unpacking libtext-iconv-perl (1.7-7build3) ...\n", + "Selecting previously unselected package dictionaries-common.\n", + "Preparing to unpack .../02-dictionaries-common_1.28.14_all.deb ...\n", + "Adding 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictionaries-common by dictionaries-common'\n", + "Unpacking dictionaries-common (1.28.14) ...\n", + "Selecting previously unselected package fonts-freefont-ttf.\n", + "Preparing to unpack .../03-fonts-freefont-ttf_20120503-10build1_all.deb ...\n", + "Unpacking fonts-freefont-ttf (20120503-10build1) ...\n", + "Selecting previously unselected package fonts-noto-color-emoji.\n", + "Preparing to unpack .../04-fonts-noto-color-emoji_2.047-0ubuntu0.22.04.1_all.deb ...\n", + "Unpacking fonts-noto-color-emoji (2.047-0ubuntu0.22.04.1) ...\n", + "Selecting previously unselected package fonts-tlwg-loma-otf.\n", + "Preparing to unpack .../05-fonts-tlwg-loma-otf_1%3a0.7.3-1_all.deb ...\n", + "Unpacking fonts-tlwg-loma-otf (1:0.7.3-1) ...\n", + "Selecting previously unselected package fonts-unifont.\n", + "Preparing to unpack .../06-fonts-unifont_1%3a14.0.01-1_all.deb ...\n", + "Unpacking fonts-unifont (1:14.0.01-1) ...\n", + "Selecting previously unselected package fonts-wqy-zenhei.\n", + "Preparing to unpack .../07-fonts-wqy-zenhei_0.9.45-8_all.deb ...\n", + "Unpacking fonts-wqy-zenhei (0.9.45-8) ...\n", + "Selecting previously unselected package libproxy1v5:amd64.\n", + "Preparing to unpack .../08-libproxy1v5_0.4.17-2_amd64.deb ...\n", + "Unpacking libproxy1v5:amd64 (0.4.17-2) ...\n", + "Selecting previously unselected package glib-networking-common.\n", + "Preparing to unpack .../09-glib-networking-common_2.72.0-1_all.deb ...\n", + "Unpacking glib-networking-common (2.72.0-1) ...\n", + "Selecting previously unselected package glib-networking-services.\n", + "Preparing to unpack .../10-glib-networking-services_2.72.0-1_amd64.deb ...\n", + "Unpacking glib-networking-services (2.72.0-1) ...\n", + "Selecting previously unselected package session-migration.\n", + "Preparing to unpack .../11-session-migration_0.3.6_amd64.deb ...\n", + "Unpacking session-migration (0.3.6) ...\n", + "Selecting previously unselected package gsettings-desktop-schemas.\n", + "Preparing to unpack .../12-gsettings-desktop-schemas_42.0-1ubuntu1_all.deb ...\n", + "Unpacking gsettings-desktop-schemas (42.0-1ubuntu1) ...\n", + "Selecting previously unselected package glib-networking:amd64.\n", + "Preparing to unpack .../13-glib-networking_2.72.0-1_amd64.deb ...\n", + "Unpacking glib-networking:amd64 (2.72.0-1) ...\n", + "Selecting previously unselected package gstreamer1.0-libav:amd64.\n", + "Preparing to unpack .../14-gstreamer1.0-libav_1.20.3-0ubuntu1_amd64.deb ...\n", + "Unpacking gstreamer1.0-libav:amd64 (1.20.3-0ubuntu1) ...\n", + "Selecting previously unselected package libcdparanoia0:amd64.\n", + "Preparing to unpack .../15-libcdparanoia0_3.10.2+debian-14build2_amd64.deb ...\n", + "Unpacking libcdparanoia0:amd64 (3.10.2+debian-14build2) ...\n", + "Selecting previously unselected package libvisual-0.4-0:amd64.\n", + "Preparing to unpack .../16-libvisual-0.4-0_0.4.0-17build2_amd64.deb ...\n", + "Unpacking libvisual-0.4-0:amd64 (0.4.0-17build2) ...\n", + "Selecting previously unselected package gstreamer1.0-plugins-base:amd64.\n", + "Preparing to unpack .../17-gstreamer1.0-plugins-base_1.20.1-1ubuntu0.5_amd64.deb ...\n", + "Unpacking gstreamer1.0-plugins-base:amd64 (1.20.1-1ubuntu0.5) ...\n", + "Selecting previously unselected package libaa1:amd64.\n", + "Preparing to unpack .../18-libaa1_1.4p5-50build1_amd64.deb ...\n", + "Unpacking libaa1:amd64 (1.4p5-50build1) ...\n", + "Selecting previously unselected package libdv4:amd64.\n", + "Preparing to unpack .../19-libdv4_1.0.0-14build1_amd64.deb ...\n", + "Unpacking libdv4:amd64 (1.0.0-14build1) ...\n", + "Selecting previously unselected package libgstreamer-plugins-good1.0-0:amd64.\n", + "Preparing to unpack .../20-libgstreamer-plugins-good1.0-0_1.20.3-0ubuntu1.4_amd64.deb ...\n", + "Unpacking libgstreamer-plugins-good1.0-0:amd64 (1.20.3-0ubuntu1.4) ...\n", + "Selecting previously unselected package libgudev-1.0-0:amd64.\n", + "Preparing to unpack .../21-libgudev-1.0-0_1%3a237-2build1_amd64.deb ...\n", + "Unpacking libgudev-1.0-0:amd64 (1:237-2build1) ...\n", + "Selecting previously unselected package libshout3:amd64.\n", + "Preparing to unpack .../22-libshout3_2.4.5-1build3_amd64.deb ...\n", + "Unpacking libshout3:amd64 (2.4.5-1build3) ...\n", + "Selecting previously unselected package libtag1v5-vanilla:amd64.\n", + "Preparing to unpack .../23-libtag1v5-vanilla_1.11.1+dfsg.1-3ubuntu3_amd64.deb ...\n", + "Unpacking libtag1v5-vanilla:amd64 (1.11.1+dfsg.1-3ubuntu3) ...\n", + "Selecting previously unselected package libtag1v5:amd64.\n", + "Preparing to unpack .../24-libtag1v5_1.11.1+dfsg.1-3ubuntu3_amd64.deb ...\n", + "Unpacking libtag1v5:amd64 (1.11.1+dfsg.1-3ubuntu3) ...\n", + "Selecting previously unselected package libv4lconvert0:amd64.\n", + "Preparing to unpack .../25-libv4lconvert0_1.22.1-2build1_amd64.deb ...\n", + "Unpacking libv4lconvert0:amd64 (1.22.1-2build1) ...\n", + "Selecting previously unselected package libv4l-0:amd64.\n", + "Preparing to unpack .../26-libv4l-0_1.22.1-2build1_amd64.deb ...\n", + "Unpacking libv4l-0:amd64 (1.22.1-2build1) ...\n", + "Selecting previously unselected package libwavpack1:amd64.\n", + "Preparing to unpack .../27-libwavpack1_5.4.0-1build2_amd64.deb ...\n", + "Unpacking libwavpack1:amd64 (5.4.0-1build2) ...\n", + "Selecting previously unselected package libsoup2.4-common.\n", + "Preparing to unpack .../28-libsoup2.4-common_2.74.2-3ubuntu0.6_all.deb ...\n", + "Unpacking libsoup2.4-common (2.74.2-3ubuntu0.6) ...\n", + "Selecting previously unselected package libsoup2.4-1:amd64.\n", + "Preparing to unpack .../29-libsoup2.4-1_2.74.2-3ubuntu0.6_amd64.deb ...\n", + "Unpacking libsoup2.4-1:amd64 (2.74.2-3ubuntu0.6) ...\n", + "Selecting previously unselected package gstreamer1.0-plugins-good:amd64.\n", + "Preparing to unpack .../30-gstreamer1.0-plugins-good_1.20.3-0ubuntu1.4_amd64.deb ...\n", + "Unpacking gstreamer1.0-plugins-good:amd64 (1.20.3-0ubuntu1.4) ...\n", + "Selecting previously unselected package hunspell-en-us.\n", + "Preparing to unpack .../31-hunspell-en-us_1%3a2020.12.07-2_all.deb ...\n", + "Unpacking hunspell-en-us (1:2020.12.07-2) ...\n", + "Selecting previously unselected package libabsl20210324:amd64.\n", + "Preparing to unpack .../32-libabsl20210324_0~20210324.2-2ubuntu0.2_amd64.deb ...\n", + "Unpacking libabsl20210324:amd64 (0~20210324.2-2ubuntu0.2) ...\n", + "Selecting previously unselected package libaspell15:amd64.\n", + "Preparing to unpack .../33-libaspell15_0.60.8-4build1_amd64.deb ...\n", + "Unpacking libaspell15:amd64 (0.60.8-4build1) ...\n", + "Selecting previously unselected package libgav1-0:amd64.\n", + "Preparing to unpack .../34-libgav1-0_0.17.0-1build1_amd64.deb ...\n", + "Unpacking libgav1-0:amd64 (0.17.0-1build1) ...\n", + "Selecting previously unselected package libyuv0:amd64.\n", + "Preparing to unpack .../35-libyuv0_0.0~git20220104.b91df1a-2_amd64.deb ...\n", + "Unpacking libyuv0:amd64 (0.0~git20220104.b91df1a-2) ...\n", + "Selecting previously unselected package libavif13:amd64.\n", + "Preparing to unpack .../36-libavif13_0.9.3-3_amd64.deb ...\n", + "Unpacking libavif13:amd64 (0.9.3-3) ...\n", + "Selecting previously unselected package libdbus-glib-1-2:amd64.\n", + "Preparing to unpack .../37-libdbus-glib-1-2_0.112-2build1_amd64.deb ...\n", + "Unpacking libdbus-glib-1-2:amd64 (0.112-2build1) ...\n", + "Selecting previously unselected package libdvdread8:amd64.\n", + "Preparing to unpack .../38-libdvdread8_6.1.2-1_amd64.deb ...\n", + "Unpacking libdvdread8:amd64 (6.1.2-1) ...\n", + "Selecting previously unselected package libdvdnav4:amd64.\n", + "Preparing to unpack .../39-libdvdnav4_6.1.1-1_amd64.deb ...\n", + "Unpacking libdvdnav4:amd64 (6.1.1-1) ...\n", + "Selecting previously unselected package libhunspell-1.7-0:amd64.\n", + "Preparing to unpack .../40-libhunspell-1.7-0_1.7.0-4build1_amd64.deb ...\n", + "Unpacking libhunspell-1.7-0:amd64 (1.7.0-4build1) ...\n", + "Selecting previously unselected package libenchant-2-2:amd64.\n", + "Preparing to unpack .../41-libenchant-2-2_2.3.2-1ubuntu2_amd64.deb ...\n", + "Unpacking libenchant-2-2:amd64 (2.3.2-1ubuntu2) ...\n", + "Selecting previously unselected package libfaad2:amd64.\n", + "Preparing to unpack .../42-libfaad2_2.10.0-2_amd64.deb ...\n", + "Unpacking libfaad2:amd64 (2.10.0-2) ...\n", + "Selecting previously unselected package libffi7:amd64.\n", + "Preparing to unpack .../43-libffi7_3.3-5ubuntu1_amd64.deb ...\n", + "Unpacking libffi7:amd64 (3.3-5ubuntu1) ...\n", + "Selecting previously unselected package libinstpatch-1.0-2:amd64.\n", + "Preparing to unpack .../44-libinstpatch-1.0-2_1.1.6-1_amd64.deb ...\n", + "Unpacking libinstpatch-1.0-2:amd64 (1.1.6-1) ...\n", + "Selecting previously unselected package timgm6mb-soundfont.\n", + "Preparing to unpack .../45-timgm6mb-soundfont_1.3-5_all.deb ...\n", + "Unpacking timgm6mb-soundfont (1.3-5) ...\n", + "Selecting previously unselected package libfluidsynth3:amd64.\n", + "Preparing to unpack .../46-libfluidsynth3_2.2.5-1_amd64.deb ...\n", + "Unpacking libfluidsynth3:amd64 (2.2.5-1) ...\n", + "Selecting previously unselected package libfreeaptx0:amd64.\n", + "Preparing to unpack .../47-libfreeaptx0_0.1.1-1_amd64.deb ...\n", + "Unpacking libfreeaptx0:amd64 (0.1.1-1) ...\n", + "Selecting previously unselected package libgssdp-1.2-0:amd64.\n", + "Preparing to unpack .../48-libgssdp-1.2-0_1.4.0.1-2build1_amd64.deb ...\n", + "Unpacking libgssdp-1.2-0:amd64 (1.4.0.1-2build1) ...\n", + "Selecting previously unselected package libgstreamer-gl1.0-0:amd64.\n", + "Preparing to unpack .../49-libgstreamer-gl1.0-0_1.20.1-1ubuntu0.5_amd64.deb ...\n", + "Unpacking libgstreamer-gl1.0-0:amd64 (1.20.1-1ubuntu0.5) ...\n", + "Selecting previously unselected package libgupnp-1.2-1:amd64.\n", + "Preparing to unpack .../50-libgupnp-1.2-1_1.4.3-1_amd64.deb ...\n", + "Unpacking libgupnp-1.2-1:amd64 (1.4.3-1) ...\n", + "Selecting previously unselected package libgupnp-igd-1.0-4:amd64.\n", + "Preparing to unpack .../51-libgupnp-igd-1.0-4_1.2.0-1build1_amd64.deb ...\n", + "Unpacking libgupnp-igd-1.0-4:amd64 (1.2.0-1build1) ...\n", + "Selecting previously unselected package libharfbuzz-icu0:amd64.\n", + "Preparing to unpack .../52-libharfbuzz-icu0_2.7.4-1ubuntu3.2_amd64.deb ...\n", + "Unpacking libharfbuzz-icu0:amd64 (2.7.4-1ubuntu3.2) ...\n", + "Selecting previously unselected package libhyphen0:amd64.\n", + "Preparing to unpack .../53-libhyphen0_2.8.8-7build2_amd64.deb ...\n", + "Unpacking libhyphen0:amd64 (2.8.8-7build2) ...\n", + "Selecting previously unselected package libjson-glib-1.0-common.\n", + "Preparing to unpack .../54-libjson-glib-1.0-common_1.6.6-1build1_all.deb ...\n", + "Unpacking libjson-glib-1.0-common (1.6.6-1build1) ...\n", + "Selecting previously unselected package libjson-glib-1.0-0:amd64.\n", + "Preparing to unpack .../55-libjson-glib-1.0-0_1.6.6-1build1_amd64.deb ...\n", + "Unpacking libjson-glib-1.0-0:amd64 (1.6.6-1build1) ...\n", + "Selecting previously unselected package libkate1:amd64.\n", + "Preparing to unpack .../56-libkate1_0.4.1-11build1_amd64.deb ...\n", + "Unpacking libkate1:amd64 (0.4.1-11build1) ...\n", + "Selecting previously unselected package libldacbt-enc2:amd64.\n", + "Preparing to unpack .../57-libldacbt-enc2_2.0.2.3+git20200429+ed310a0-4_amd64.deb ...\n", + "Unpacking libldacbt-enc2:amd64 (2.0.2.3+git20200429+ed310a0-4) ...\n", + "Selecting previously unselected package libltc11:amd64.\n", + "Preparing to unpack .../58-libltc11_1.3.1-1_amd64.deb ...\n", + "Unpacking libltc11:amd64 (1.3.1-1) ...\n", + "Selecting previously unselected package libevdev2:amd64.\n", + "Preparing to unpack .../59-libevdev2_1.12.1+dfsg-1_amd64.deb ...\n", + "Unpacking libevdev2:amd64 (1.12.1+dfsg-1) ...\n", + "Selecting previously unselected package libmanette-0.2-0:amd64.\n", + "Preparing to unpack .../60-libmanette-0.2-0_0.2.6-3build1_amd64.deb ...\n", + "Unpacking libmanette-0.2-0:amd64 (0.2.6-3build1) ...\n", + "Selecting previously unselected package libmjpegutils-2.1-0:amd64.\n", + "Preparing to unpack .../61-libmjpegutils-2.1-0_1%3a2.1.0+debian-6build1_amd64.deb ...\n", + "Unpacking libmjpegutils-2.1-0:amd64 (1:2.1.0+debian-6build1) ...\n", + "Selecting previously unselected package libmodplug1:amd64.\n", + "Preparing to unpack .../62-libmodplug1_1%3a0.8.9.0-3_amd64.deb ...\n", + "Unpacking libmodplug1:amd64 (1:0.8.9.0-3) ...\n", + "Selecting previously unselected package libmpcdec6:amd64.\n", + "Preparing to unpack .../63-libmpcdec6_2%3a0.1~r495-2_amd64.deb ...\n", + "Unpacking libmpcdec6:amd64 (2:0.1~r495-2) ...\n", + "Selecting previously unselected package libmpeg2encpp-2.1-0:amd64.\n", + "Preparing to unpack .../64-libmpeg2encpp-2.1-0_1%3a2.1.0+debian-6build1_amd64.deb ...\n", + "Unpacking libmpeg2encpp-2.1-0:amd64 (1:2.1.0+debian-6build1) ...\n", + "Selecting previously unselected package libmplex2-2.1-0:amd64.\n", + "Preparing to unpack .../65-libmplex2-2.1-0_1%3a2.1.0+debian-6build1_amd64.deb ...\n", + "Unpacking libmplex2-2.1-0:amd64 (1:2.1.0+debian-6build1) ...\n", + "Selecting previously unselected package libnice10:amd64.\n", + "Preparing to unpack .../66-libnice10_0.1.18-2_amd64.deb ...\n", + "Unpacking libnice10:amd64 (0.1.18-2) ...\n", + "Selecting previously unselected package libnotify4:amd64.\n", + "Preparing to unpack .../67-libnotify4_0.7.9-3ubuntu5.22.04.1_amd64.deb ...\n", + "Unpacking libnotify4:amd64 (0.7.9-3ubuntu5.22.04.1) ...\n", + "Selecting previously unselected package libopenh264-6:amd64.\n", + "Preparing to unpack .../68-libopenh264-6_2.2.0+dfsg-2_amd64.deb ...\n", + "Unpacking libopenh264-6:amd64 (2.2.0+dfsg-2) ...\n", + "Selecting previously unselected package libopenni2-0:amd64.\n", + "Preparing to unpack .../69-libopenni2-0_2.2.0.33+dfsg-15_amd64.deb ...\n", + "Unpacking libopenni2-0:amd64 (2.2.0.33+dfsg-15) ...\n", + "Selecting previously unselected package libqrencode4:amd64.\n", + "Preparing to unpack .../70-libqrencode4_4.1.1-1_amd64.deb ...\n", + "Unpacking libqrencode4:amd64 (4.1.1-1) ...\n", + "Selecting previously unselected package libsecret-common.\n", + "Preparing to unpack .../71-libsecret-common_0.20.5-2_all.deb ...\n", + "Unpacking libsecret-common (0.20.5-2) ...\n", + "Selecting previously unselected package libsecret-1-0:amd64.\n", + "Preparing to unpack .../72-libsecret-1-0_0.20.5-2_amd64.deb ...\n", + "Unpacking libsecret-1-0:amd64 (0.20.5-2) ...\n", + "Selecting previously unselected package libsoundtouch1:amd64.\n", + "Preparing to unpack .../73-libsoundtouch1_2.3.1+ds1-1_amd64.deb ...\n", + "Unpacking libsoundtouch1:amd64 (2.3.1+ds1-1) ...\n", + "Selecting previously unselected package libsoup-3.0-common.\n", + "Preparing to unpack .../74-libsoup-3.0-common_3.0.7-0ubuntu1_all.deb ...\n", + "Unpacking libsoup-3.0-common (3.0.7-0ubuntu1) ...\n", + "Selecting previously unselected package libsoup-3.0-0:amd64.\n", + "Preparing to unpack .../75-libsoup-3.0-0_3.0.7-0ubuntu1_amd64.deb ...\n", + "Unpacking libsoup-3.0-0:amd64 (3.0.7-0ubuntu1) ...\n", + "Selecting previously unselected package libspandsp2:amd64.\n", + "Preparing to unpack .../76-libspandsp2_0.0.6+dfsg-2_amd64.deb ...\n", + "Unpacking libspandsp2:amd64 (0.0.6+dfsg-2) ...\n", + "Selecting previously unselected package libsrtp2-1:amd64.\n", + "Preparing to unpack .../77-libsrtp2-1_2.4.2-2_amd64.deb ...\n", + "Unpacking libsrtp2-1:amd64 (2.4.2-2) ...\n", + "Selecting previously unselected package libwebrtc-audio-processing1:amd64.\n", + "Preparing to unpack .../78-libwebrtc-audio-processing1_0.3.1-0ubuntu5_amd64.deb ...\n", + "Unpacking libwebrtc-audio-processing1:amd64 (0.3.1-0ubuntu5) ...\n", + "Selecting previously unselected package libwildmidi2:amd64.\n", + "Preparing to unpack .../79-libwildmidi2_0.4.3-1_amd64.deb ...\n", + "Unpacking libwildmidi2:amd64 (0.4.3-1) ...\n", + "Selecting previously unselected package libwoff1:amd64.\n", + "Preparing to unpack .../80-libwoff1_1.0.2-1build4_amd64.deb ...\n", + "Unpacking libwoff1:amd64 (1.0.2-1build4) ...\n", + "Selecting previously unselected package libxtst6:amd64.\n", + "Preparing to unpack .../81-libxtst6_2%3a1.2.3-1build4_amd64.deb ...\n", + "Unpacking libxtst6:amd64 (2:1.2.3-1build4) ...\n", + "Selecting previously unselected package libzbar0:amd64.\n", + "Preparing to unpack .../82-libzbar0_0.23.92-4build2_amd64.deb ...\n", + "Unpacking libzbar0:amd64 (0.23.92-4build2) ...\n", + "Selecting previously unselected package libzxingcore1:amd64.\n", + "Preparing to unpack .../83-libzxingcore1_1.2.0-1_amd64.deb ...\n", + "Unpacking libzxingcore1:amd64 (1.2.0-1) ...\n", + "Selecting previously unselected package xfonts-encodings.\n", + "Preparing to unpack .../84-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ...\n", + "Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ...\n", + "Selecting previously unselected package xfonts-utils.\n", + "Preparing to unpack .../85-xfonts-utils_1%3a7.7+6build2_amd64.deb ...\n", + "Unpacking xfonts-utils (1:7.7+6build2) ...\n", + "Selecting previously unselected package xfonts-cyrillic.\n", + "Preparing to unpack .../86-xfonts-cyrillic_1%3a1.0.5_all.deb ...\n", + "Unpacking xfonts-cyrillic (1:1.0.5) ...\n", + "Selecting previously unselected package xfonts-scalable.\n", + "Preparing to unpack .../87-xfonts-scalable_1%3a1.0.3-1.2ubuntu1_all.deb ...\n", + "Unpacking xfonts-scalable (1:1.0.3-1.2ubuntu1) ...\n", + "Selecting previously unselected package libdca0:amd64.\n", + "Preparing to unpack .../88-libdca0_0.0.7-2_amd64.deb ...\n", + "Unpacking libdca0:amd64 (0.0.7-2) ...\n", + "Selecting previously unselected package libgstreamer-plugins-bad1.0-0:amd64.\n", + "Preparing to unpack .../89-libgstreamer-plugins-bad1.0-0_1.20.3-0ubuntu1.1_amd64.deb ...\n", + "Unpacking libgstreamer-plugins-bad1.0-0:amd64 (1.20.3-0ubuntu1.1) ...\n", + "Selecting previously unselected package libsbc1:amd64.\n", + "Preparing to unpack .../90-libsbc1_1.5-3build2_amd64.deb ...\n", + "Unpacking libsbc1:amd64 (1.5-3build2) ...\n", + "Selecting previously unselected package libvo-aacenc0:amd64.\n", + "Preparing to unpack .../91-libvo-aacenc0_0.1.3-2_amd64.deb ...\n", + "Unpacking libvo-aacenc0:amd64 (0.1.3-2) ...\n", + "Selecting previously unselected package libvo-amrwbenc0:amd64.\n", + "Preparing to unpack .../92-libvo-amrwbenc0_0.1.3-2_amd64.deb ...\n", + "Unpacking libvo-amrwbenc0:amd64 (0.1.3-2) ...\n", + "Selecting previously unselected package gstreamer1.0-plugins-bad:amd64.\n", + "Preparing to unpack .../93-gstreamer1.0-plugins-bad_1.20.3-0ubuntu1.1_amd64.deb ...\n", + "Unpacking gstreamer1.0-plugins-bad:amd64 (1.20.3-0ubuntu1.1) ...\n", + "Setting up libtext-iconv-perl (1.7-7build3) ...\n", + "Setting up libfreeaptx0:amd64 (0.1.1-1) ...\n", + "Setting up libmodplug1:amd64 (1:0.8.9.0-3) ...\n", + "Setting up libcdparanoia0:amd64 (3.10.2+debian-14build2) ...\n", + "Setting up libvo-amrwbenc0:amd64 (0.1.3-2) ...\n", + "Setting up session-migration (0.3.6) ...\n", + "Created symlink /etc/systemd/user/graphical-session-pre.target.wants/session-migration.service → /usr/lib/systemd/user/session-migration.service.\n", + "Setting up libsbc1:amd64 (1.5-3build2) ...\n", + "Setting up libproxy1v5:amd64 (0.4.17-2) ...\n", + "Setting up libtag1v5-vanilla:amd64 (1.11.1+dfsg.1-3ubuntu3) ...\n", + "Setting up libkate1:amd64 (0.4.1-11build1) ...\n", + "Setting up libharfbuzz-icu0:amd64 (2.7.4-1ubuntu3.2) ...\n", + "Setting up libopenni2-0:amd64 (2.2.0.33+dfsg-15) ...\n", + "Setting up libwoff1:amd64 (1.0.2-1build4) ...\n", + "Setting up libqrencode4:amd64 (4.1.1-1) ...\n", + "Setting up libhyphen0:amd64 (2.8.8-7build2) ...\n", + "Setting up dictionaries-common (1.28.14) ...\n", + "Setting up fonts-noto-color-emoji (2.047-0ubuntu0.22.04.1) ...\n", + "Setting up libvisual-0.4-0:amd64 (0.4.0-17build2) ...\n", + "Setting up libaspell15:amd64 (0.60.8-4build1) ...\n", + "Setting up libxtst6:amd64 (2:1.2.3-1build4) ...\n", + "Setting up libsrtp2-1:amd64 (2.4.2-2) ...\n", + "Setting up libffi7:amd64 (3.3-5ubuntu1) ...\n", + "Setting up libldacbt-enc2:amd64 (2.0.2.3+git20200429+ed310a0-4) ...\n", + "Setting up fonts-wqy-zenhei (0.9.45-8) ...\n", + "Setting up libwebrtc-audio-processing1:amd64 (0.3.1-0ubuntu5) ...\n", + "Setting up fonts-freefont-ttf (20120503-10build1) ...\n", + "Setting up libsoup-3.0-common (3.0.7-0ubuntu1) ...\n", + "Setting up libmpcdec6:amd64 (2:0.1~r495-2) ...\n", + "Setting up libspandsp2:amd64 (0.0.6+dfsg-2) ...\n", + "Setting up libvo-aacenc0:amd64 (0.1.3-2) ...\n", + "Setting up libgstreamer-plugins-bad1.0-0:amd64 (1.20.3-0ubuntu1.1) ...\n", + "Setting up libgstreamer-plugins-good1.0-0:amd64 (1.20.3-0ubuntu1.4) ...\n", + "Setting up libsoundtouch1:amd64 (2.3.1+ds1-1) ...\n", + "Setting up gstreamer1.0-plugins-base:amd64 (1.20.1-1ubuntu0.5) ...\n", + "Setting up fonts-tlwg-loma-otf (1:0.7.3-1) ...\n", + "Setting up libdvdread8:amd64 (6.1.2-1) ...\n", + "Setting up libdbus-glib-1-2:amd64 (0.112-2build1) ...\n", + "Setting up libnotify4:amd64 (0.7.9-3ubuntu5.22.04.1) ...\n", + "Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ...\n", + "Setting up libfaad2:amd64 (2.10.0-2) ...\n", + "Setting up libshout3:amd64 (2.4.5-1build3) ...\n", + "Setting up libabsl20210324:amd64 (0~20210324.2-2ubuntu0.2) ...\n", + "Setting up libltc11:amd64 (1.3.1-1) ...\n", + "Setting up libsoup2.4-common (2.74.2-3ubuntu0.6) ...\n", + "Setting up libtag1v5:amd64 (1.11.1+dfsg.1-3ubuntu3) ...\n", + "Setting up libdv4:amd64 (1.0.0-14build1) ...\n", + "Setting up fonts-ipafont-gothic (00303-21ubuntu1) ...\n", + "update-alternatives: using /usr/share/fonts/opentype/ipafont-gothic/ipag.ttf to provide /usr/share/fonts/truetype/fonts-japanese-gothic.ttf (fonts-japanese-gothic.ttf) in auto mode\n", + "Setting up libwildmidi2:amd64 (0.4.3-1) ...\n", + "Setting up libopenh264-6:amd64 (2.2.0+dfsg-2) ...\n", + "Setting up libwavpack1:amd64 (5.4.0-1build2) ...\n", + "Setting up libzxingcore1:amd64 (1.2.0-1) ...\n", + "Setting up libv4lconvert0:amd64 (1.22.1-2build1) ...\n", + "Setting up hunspell-en-us (1:2020.12.07-2) ...\n", + "Setting up libdca0:amd64 (0.0.7-2) ...\n", + "Setting up libjson-glib-1.0-common (1.6.6-1build1) ...\n", + "Setting up libhunspell-1.7-0:amd64 (1.7.0-4build1) ...\n", + "Setting up glib-networking-common (2.72.0-1) ...\n", + "Setting up timgm6mb-soundfont (1.3-5) ...\n", + "update-alternatives: using /usr/share/sounds/sf2/TimGM6mb.sf2 to provide /usr/share/sounds/sf2/default-GM.sf2 (default-GM.sf2) in auto mode\n", + "update-alternatives: using /usr/share/sounds/sf2/TimGM6mb.sf2 to provide /usr/share/sounds/sf3/default-GM.sf3 (default-GM.sf3) in auto mode\n", + "Setting up libyuv0:amd64 (0.0~git20220104.b91df1a-2) ...\n", + "Setting up libevdev2:amd64 (1.12.1+dfsg-1) ...\n", + "Setting up gstreamer1.0-libav:amd64 (1.20.3-0ubuntu1) ...\n", + "Setting up libinstpatch-1.0-2:amd64 (1.1.6-1) ...\n", + "Setting up libmjpegutils-2.1-0:amd64 (1:2.1.0+debian-6build1) ...\n", + "Setting up libgudev-1.0-0:amd64 (1:237-2build1) ...\n", + "Setting up libsecret-common (0.20.5-2) ...\n", + "Setting up libfluidsynth3:amd64 (2.2.5-1) ...\n", + "Setting up libdvdnav4:amd64 (6.1.1-1) ...\n", + "Setting up fonts-unifont (1:14.0.01-1) ...\n", + "Setting up libaa1:amd64 (1.4p5-50build1) ...\n", + "Setting up gsettings-desktop-schemas (42.0-1ubuntu1) ...\n", + "Setting up glib-networking-services (2.72.0-1) ...\n", + "Setting up libenchant-2-2:amd64 (2.3.2-1ubuntu2) ...\n", + "Setting up libmanette-0.2-0:amd64 (0.2.6-3build1) ...\n", + "Setting up xfonts-utils (1:7.7+6build2) ...\n", + "Setting up libjson-glib-1.0-0:amd64 (1.6.6-1build1) ...\n", + "Setting up libv4l-0:amd64 (1.22.1-2build1) ...\n", + "Setting up libsecret-1-0:amd64 (0.20.5-2) ...\n", + "Setting up libgstreamer-gl1.0-0:amd64 (1.20.1-1ubuntu0.5) ...\n", + "Setting up libgav1-0:amd64 (0.17.0-1build1) ...\n", + "Setting up libmpeg2encpp-2.1-0:amd64 (1:2.1.0+debian-6build1) ...\n", + "Setting up libavif13:amd64 (0.9.3-3) ...\n", + "Setting up xfonts-cyrillic (1:1.0.5) ...\n", + "Setting up libmplex2-2.1-0:amd64 (1:2.1.0+debian-6build1) ...\n", + "Setting up xfonts-scalable (1:1.0.3-1.2ubuntu1) ...\n", + "Setting up libzbar0:amd64 (0.23.92-4build2) ...\n", + "Processing triggers for man-db (2.10.2-1) ...\n", + "Processing triggers for fontconfig (2.13.1-4.2ubuntu5) ...\n", + "Processing triggers for libglib2.0-0:amd64 (2.72.4-0ubuntu2.6) ...\n", + "Processing triggers for libc-bin (2.35-0ubuntu3.8) ...\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libumf.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero_v2.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n", + "\n", + "Setting up glib-networking:amd64 (2.72.0-1) ...\n", + "Setting up libsoup2.4-1:amd64 (2.74.2-3ubuntu0.6) ...\n", + "Setting up gstreamer1.0-plugins-good:amd64 (1.20.3-0ubuntu1.4) ...\n", + "Setting up libsoup-3.0-0:amd64 (3.0.7-0ubuntu1) ...\n", + "Setting up libgssdp-1.2-0:amd64 (1.4.0.1-2build1) ...\n", + "Setting up libgupnp-1.2-1:amd64 (1.4.3-1) ...\n", + "Setting up libgupnp-igd-1.0-4:amd64 (1.2.0-1build1) ...\n", + "Setting up libnice10:amd64 (0.1.18-2) ...\n", + "Setting up gstreamer1.0-plugins-bad:amd64 (1.20.3-0ubuntu1.1) ...\n", + "Processing triggers for dictionaries-common (1.28.14) ...\n", + "Processing triggers for libc-bin (2.35-0ubuntu3.8) ...\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libumf.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero_v2.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n", + "\n", + "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n", + "\n", + "Collecting pdfplumber\n", + " Downloading pdfplumber-0.11.7-py3-none-any.whl.metadata (42 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m42.8/42.8 kB\u001b[0m \u001b[31m4.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hCollecting pdfminer.six==20250506 (from pdfplumber)\n", + " Downloading pdfminer_six-20250506-py3-none-any.whl.metadata (4.2 kB)\n", + "Requirement already satisfied: Pillow>=9.1 in /usr/local/lib/python3.12/dist-packages (from pdfplumber) (11.3.0)\n", + "Collecting pypdfium2>=4.18.0 (from pdfplumber)\n", + " Downloading pypdfium2-4.30.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (48 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m48.5/48.5 kB\u001b[0m \u001b[31m5.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hRequirement already satisfied: charset-normalizer>=2.0.0 in /usr/local/lib/python3.12/dist-packages (from pdfminer.six==20250506->pdfplumber) (3.4.4)\n", + "Requirement already satisfied: cryptography>=36.0.0 in /usr/local/lib/python3.12/dist-packages (from pdfminer.six==20250506->pdfplumber) (43.0.3)\n", + "Requirement already satisfied: cffi>=1.12 in /usr/local/lib/python3.12/dist-packages (from cryptography>=36.0.0->pdfminer.six==20250506->pdfplumber) (2.0.0)\n", + "Requirement already satisfied: pycparser in /usr/local/lib/python3.12/dist-packages (from cffi>=1.12->cryptography>=36.0.0->pdfminer.six==20250506->pdfplumber) (2.23)\n", + "Downloading pdfplumber-0.11.7-py3-none-any.whl (60 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m60.0/60.0 kB\u001b[0m \u001b[31m6.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading pdfminer_six-20250506-py3-none-any.whl (5.6 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m5.6/5.6 MB\u001b[0m \u001b[31m55.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading pypdfium2-4.30.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m2.8/2.8 MB\u001b[0m \u001b[31m79.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hInstalling collected packages: pypdfium2, pdfminer.six, pdfplumber\n", + "Successfully installed pdfminer.six-20250506 pdfplumber-0.11.7 pypdfium2-4.30.0\n", + "Collecting trafilatura\n", + " Downloading trafilatura-2.0.0-py3-none-any.whl.metadata (12 kB)\n", + "Requirement already satisfied: certifi in /usr/local/lib/python3.12/dist-packages (from trafilatura) (2025.10.5)\n", + "Requirement already satisfied: charset_normalizer>=3.4.0 in /usr/local/lib/python3.12/dist-packages (from trafilatura) (3.4.4)\n", + "Collecting courlan>=1.3.2 (from trafilatura)\n", + " Downloading courlan-1.3.2-py3-none-any.whl.metadata (17 kB)\n", + "Collecting htmldate>=1.9.2 (from trafilatura)\n", + " Downloading htmldate-1.9.3-py3-none-any.whl.metadata (10 kB)\n", + "Collecting justext>=3.0.1 (from trafilatura)\n", + " Downloading justext-3.0.2-py2.py3-none-any.whl.metadata (7.3 kB)\n", + "Requirement already satisfied: lxml>=5.3.0 in /usr/local/lib/python3.12/dist-packages (from trafilatura) (6.0.2)\n", + "Requirement already satisfied: urllib3<3,>=1.26 in /usr/local/lib/python3.12/dist-packages (from trafilatura) (2.5.0)\n", + "Requirement already satisfied: babel>=2.16.0 in /usr/local/lib/python3.12/dist-packages (from courlan>=1.3.2->trafilatura) (2.17.0)\n", + "Collecting tld>=0.13 (from courlan>=1.3.2->trafilatura)\n", + " Downloading tld-0.13.1-py2.py3-none-any.whl.metadata (10 kB)\n", + "Collecting dateparser>=1.1.2 (from htmldate>=1.9.2->trafilatura)\n", + " Downloading dateparser-1.2.2-py3-none-any.whl.metadata (29 kB)\n", + "Collecting lxml>=5.3.0 (from trafilatura)\n", + " Downloading lxml-5.4.0-cp312-cp312-manylinux_2_28_x86_64.whl.metadata (3.5 kB)\n", + "Requirement already satisfied: python-dateutil>=2.9.0.post0 in /usr/local/lib/python3.12/dist-packages (from htmldate>=1.9.2->trafilatura) (2.9.0.post0)\n", + "Requirement already satisfied: pytz>=2024.2 in /usr/local/lib/python3.12/dist-packages (from dateparser>=1.1.2->htmldate>=1.9.2->trafilatura) (2025.2)\n", + "Requirement already satisfied: regex>=2024.9.11 in /usr/local/lib/python3.12/dist-packages (from dateparser>=1.1.2->htmldate>=1.9.2->trafilatura) (2024.11.6)\n", + "Requirement already satisfied: tzlocal>=0.2 in /usr/local/lib/python3.12/dist-packages (from dateparser>=1.1.2->htmldate>=1.9.2->trafilatura) (5.3.1)\n", + "Collecting lxml_html_clean (from lxml[html_clean]>=4.4.2->justext>=3.0.1->trafilatura)\n", + " Downloading lxml_html_clean-0.4.3-py3-none-any.whl.metadata (2.3 kB)\n", + "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.12/dist-packages (from python-dateutil>=2.9.0.post0->htmldate>=1.9.2->trafilatura) (1.17.0)\n", + "Downloading trafilatura-2.0.0-py3-none-any.whl (132 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m132.6/132.6 kB\u001b[0m \u001b[31m11.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading courlan-1.3.2-py3-none-any.whl (33 kB)\n", + "Downloading htmldate-1.9.3-py3-none-any.whl (31 kB)\n", + "Downloading justext-3.0.2-py2.py3-none-any.whl (837 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m837.9/837.9 kB\u001b[0m \u001b[31m50.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading lxml-5.4.0-cp312-cp312-manylinux_2_28_x86_64.whl (5.0 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m5.0/5.0 MB\u001b[0m \u001b[31m130.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading dateparser-1.2.2-py3-none-any.whl (315 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m315.5/315.5 kB\u001b[0m \u001b[31m28.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading tld-0.13.1-py2.py3-none-any.whl (274 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m274.7/274.7 kB\u001b[0m \u001b[31m22.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading lxml_html_clean-0.4.3-py3-none-any.whl (14 kB)\n", + "Installing collected packages: tld, lxml, lxml_html_clean, dateparser, courlan, htmldate, justext, trafilatura\n", + " Attempting uninstall: lxml\n", + " Found existing installation: lxml 6.0.2\n", + " Uninstalling lxml-6.0.2:\n", + " Successfully uninstalled lxml-6.0.2\n", + "\u001b[31mERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", + "ddgs 9.6.1 requires lxml>=6.0.0, but you have lxml 5.4.0 which is incompatible.\u001b[0m\u001b[31m\n", + "\u001b[0mSuccessfully installed courlan-1.3.2 dateparser-1.2.2 htmldate-1.9.3 justext-3.0.2 lxml-5.4.0 lxml_html_clean-0.4.3 tld-0.13.1 trafilatura-2.0.0\n" + ] + }, + { + "output_type": "display_data", + "data": { + "application/vnd.colab-display-data+json": { + "pip_warning": { + "packages": [ + "lxml" + ] + }, + "id": "1cbfe8fd46734f9d861a6e131b3c74ae" + } + }, + "metadata": {} + } + ], + "source": [ + "!pip install playwright\n", + "!pip install playwright-stealth\n", + "!playwright install\n", + "!playwright install-deps\n", + "!pip install pdfplumber\n", + "!pip install trafilatura" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "uNgeNVFoMErV", + "metadata": { + "id": "uNgeNVFoMErV" + }, + "outputs": [], + "source": [ + "import requests\n", + "from pdfminer.high_level import extract_text\n", + "import asyncio\n", + "import aiohttp\n", + "import json" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "tvAnpg8zMA08", + "metadata": { + "id": "tvAnpg8zMA08" + }, + "outputs": [], + "source": [ + "async def extract_text_from_pdf(url: str, session: aiohttp.ClientSession) -> str | None:\n", + " \"\"\"\n", + " Tải file PDF từ URL và trích xuất văn bản nhanh bằng pdfminer.six (dùng session async)\n", + " \"\"\"\n", + " print(f\" -> Detect PDF link. Handle by pdfminer.six: {url}\")\n", + " try:\n", + " async with session.get(url, timeout=60) as response:\n", + " if response.status != 200:\n", + " print(f\"❌ Failed to download PDF ({response.status})\")\n", + " return None\n", + "\n", + " data = await response.read()\n", + "\n", + " text = extract_text(io.BytesIO(data))\n", + " print(\"✅ SUCCESS! Extracted text using pdfminer.six ---\")\n", + " return text.strip()\n", + "\n", + " except Exception as e:\n", + " print(f\"❌ Error when open file PDF {url}: {e}\")\n", + " return None" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "xSKWwAbIBwTu", + "metadata": { + "id": "xSKWwAbIBwTu" + }, + "outputs": [], + "source": [ + "from playwright.async_api import async_playwright\n", + "from playwright_stealth import Stealth\n", + "import trafilatura" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "6QF-79pKSBw1", + "metadata": { + "id": "6QF-79pKSBw1" + }, + "outputs": [], + "source": [ + "async def extract_text_from_web(url: str, session: aiohttp.ClientSession) -> str | None:\n", + " \"\"\"\n", + " Thử dùng trafilatura để trích xuất nội dung trước, nếu có lỗi\n", + " thì dùng Playwright hoặc Stealth Playwright để lấy nội dung HTML.\n", + " \"\"\"\n", + " print(f\" -> Detect web link. Handle by Trafilatura: {url}\")\n", + "\n", + " try:\n", + " # Fetch HTML bằng session (nhanh hơn nhiều so với trafilatura.fetch_url)\n", + " async with session.get(url, timeout=30) as resp:\n", + " if resp.status != 200:\n", + " raise ValueError(f\"HTTP {resp.status}\")\n", + " html_content = await resp.text()\n", + "\n", + " text = trafilatura.extract(html_content)\n", + " if text:\n", + " print(\"✅ SUCCESS! Extracted text using Trafilatura ---\")\n", + " return text\n", + "\n", + " raise ValueError(\"Trafilatura extraction return None\")\n", + "\n", + " except Exception as e:\n", + " print(f\"⚠️ Error using Trafilatura for URL {url}: {e}\")\n", + " print(f\"Falling back to Playwright extraction ...\")\n", + "\n", + " try:\n", + " async with async_playwright() as p:\n", + " browser = await p.chromium.launch(headless=True)\n", + " page = await browser.new_page()\n", + "\n", + " await page.goto(url, timeout=15000, wait_until=\"domcontentloaded\")\n", + " html_content = await page.content()\n", + " await browser.close()\n", + "\n", + " if not html_content:\n", + " return None\n", + "\n", + " # Nếu bị Cloudflare block, fallback stealth\n", + " if \"Cloudflare Ray ID\" in html_content:\n", + " print(\"⚠️ Detected Cloudflare! Retrying with Stealth...\")\n", + " async with Stealth().use_async(async_playwright()) as p2:\n", + " browser = await p2.chromium.launch(headless=True)\n", + " page = await browser.new_page()\n", + " await page.goto(url, timeout=20000)\n", + " html_content = await page.content()\n", + " await browser.close()\n", + "\n", + " main_text = trafilatura.extract(html_content, include_comments=False)\n", + " print(f\"✅ SUCCESS! Extracted text using Playwright ---\")\n", + " return main_text\n", + "\n", + " except Exception as e1:\n", + " print(f\"❌ Error using Playwright extraction for URL {url}: {e1}\")\n", + " return None" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "rL1vDTvHMwAj", + "metadata": { + "id": "rL1vDTvHMwAj" + }, + "outputs": [], + "source": [ + "async def fetch_content_from_url(url: str, session: aiohttp.ClientSession) -> str | None:\n", + " \"\"\"\n", + " Hàm điều phối: Kiểm tra loại URL và gọi hàm xử lý tương ứng.\n", + " \"\"\"\n", + " if url.lower().endswith('.pdf'):\n", + " return await extract_text_from_pdf(url, session)\n", + " else:\n", + " return await extract_text_from_web(url, session)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "w3y0tq_pLIXu", + "metadata": { + "id": "w3y0tq_pLIXu" + }, + "outputs": [], + "source": [ + "import re\n", + "\n", + "def clean_text(text: str) -> str:\n", + " \"\"\"\n", + " Hàm để làm sạch văn bản thô:\n", + " - Loại bỏ URL và địa chỉ email.\n", + " - Thay thế nhiều ký tự xuống dòng, tab bằng một dấu cách.\n", + " - Xóa các dấu cách thừa.\n", + " \"\"\"\n", + " if not text:\n", + " return \"\"\n", + "\n", + " # Loại bỏ URL\n", + " text = re.sub(r'https?://\\S+|www\\.\\S+', '', text)\n", + "\n", + " # Loại bỏ địa chỉ email\n", + " text = re.sub(r'\\S+@\\S+', '', text)\n", + "\n", + " # Thay thế các ký tự xuống dòng, tab, và các loại khoảng trắng khác bằng một dấu cách\n", + " text = re.sub(r'[\\n\\r\\t\\xa0]+', ' ', text)\n", + "\n", + " # Thay thế nhiều dấu cách liên tiếp bằng một dấu cách duy nhất\n", + " text = re.sub(r'\\s{2,}', ' ', text)\n", + "\n", + " # Xóa dấu cách ở đầu và cuối chuỗi\n", + " return text.strip()" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "0eJs0RfoBz5o", + "metadata": { + "id": "0eJs0RfoBz5o" + }, + "outputs": [], + "source": [ + "import json\n", + "from langchain.text_splitter import RecursiveCharacterTextSplitter\n", + "\n", + "def chunk_text(text: str, chunk_size: int = 512, chunk_overlap: int = 50) -> list[str]:\n", + " \"\"\"Hàm tiện ích để chia văn bản dài thành các chunk nhỏ hơn.\"\"\"\n", + " text_splitter = RecursiveCharacterTextSplitter(\n", + " chunk_size=chunk_size,\n", + " chunk_overlap=chunk_overlap,\n", + " length_function=len\n", + " )\n", + " return text_splitter.split_text(text)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "BsLJSWmbHrPf", + "metadata": { + "id": "BsLJSWmbHrPf" + }, + "outputs": [], + "source": [ + "async def process_claims_parallel(retrieved_data):\n", + " evidence_by_claim = {}\n", + " claims = list(retrieved_data.keys())\n", + "\n", + " async with aiohttp.ClientSession() as session:\n", + " for claim in claims:\n", + " print(f\"\\n{'='*50}\\nHandle claim: '{claim}'\")\n", + " documents = retrieved_data[claim]\n", + " all_chunks_for_this_claim = []\n", + "\n", + " # Gom tất cả link cần crawl\n", + " urls = [doc['link'] for doc in documents]\n", + "\n", + " # Chạy crawl song song\n", + " print(f\" -> Crawling {len(urls)} links in parallel...\")\n", + " tasks = [fetch_content_from_url(u, session) for u in urls]\n", + " full_contents = await asyncio.gather(*tasks)\n", + "\n", + " # Ghép kết quả với từng doc\n", + " for doc, full_content in zip(documents, full_contents):\n", + " content_to_process = \"\"\n", + "\n", + " if full_content and len(full_content) > 100:\n", + " print(f\"SUCCESS!! {doc['link']}\")\n", + " cleaned_full_content = clean_text(full_content)\n", + " content_to_process = f\"{doc.get('title', '')}. {cleaned_full_content}\"\n", + " else:\n", + " print(f\"FAIL!! Using snippet for {doc['link']}\")\n", + " cleaned_snippet = clean_text(doc.get('snippet', ''))\n", + " content_to_process = f\"{doc.get('title', '')}. {cleaned_snippet}\"\n", + "\n", + " # Chia nhỏ nội dung\n", + " chunks = chunk_text(content_to_process)\n", + "\n", + " # Lưu lại\n", + " for chunk_text_part in chunks:\n", + " all_chunks_for_this_claim.append({\n", + " \"text\": chunk_text_part,\n", + " \"link\": doc['link']\n", + " })\n", + "\n", + " evidence_by_claim[claim] = all_chunks_for_this_claim\n", + " print(f\"==> Finish for claim '{claim}'. Total: {len(all_chunks_for_this_claim)} chunks.\")\n", + "\n", + " return evidence_by_claim" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "hFOOzyCCTWEq", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "hFOOzyCCTWEq", + "outputId": "a06baa91-4b74-409e-fb5e-9cac6c14d775" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "==================================================\n", + "Handle claim: 'Biến đổi khí hậu đang làm thời tiết cực đoan hơn.'\n", + " -> Crawling 5 links in parallel...\n", + " -> Detect web link. Handle by Trafilatura: https://vietnam.un.org/vi/175280-nguyên-nhân-và-ảnh-hưởng-của-biến-đổi-khí-hậu\n", + " -> Detect web link. Handle by Trafilatura: https://nhandan.vn/bao-dong-ve-cac-hinh-thai-khi-hau-cuc-doan-post792907.html\n", + " -> Detect web link. Handle by Trafilatura: https://cafef.vn/bien-doi-khi-hau-gay-ra-nhieu-thay-doi-ve-luong-mua-khien-bao-du-doi-hon-188240729100143888.chn\n", + " -> Detect web link. Handle by Trafilatura: https://vnexpress.net/bien-doi-khi-hau-cham-ngoi-cho-thoi-tiet-cuc-doan-the-nao-4739038.html\n", + " -> Detect web link. Handle by Trafilatura: https://vnexpress.net/bien-doi-khi-hau-4796505.html\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "SUCCESS!! https://vietnam.un.org/vi/175280-nguyên-nhân-và-ảnh-hưởng-của-biến-đổi-khí-hậu\n", + "SUCCESS!! https://nhandan.vn/bao-dong-ve-cac-hinh-thai-khi-hau-cuc-doan-post792907.html\n", + "SUCCESS!! https://cafef.vn/bien-doi-khi-hau-gay-ra-nhieu-thay-doi-ve-luong-mua-khien-bao-du-doi-hon-188240729100143888.chn\n", + "SUCCESS!! https://vnexpress.net/bien-doi-khi-hau-cham-ngoi-cho-thoi-tiet-cuc-doan-the-nao-4739038.html\n", + "SUCCESS!! https://vnexpress.net/bien-doi-khi-hau-4796505.html\n", + "==> Finish for claim 'Biến đổi khí hậu đang làm thời tiết cực đoan hơn.'. Total: 67 chunks.\n", + "\n", + "==================================================\n", + "Handle claim: 'Nhiệt độ toàn cầu đã tăng 1,1°C trong 100 năm qua.'\n", + " -> Crawling 5 links in parallel...\n", + " -> Detect web link. Handle by Trafilatura: https://nhandan.vn/nhiet-do-toan-cau-se-tang-len-muc-ky-luc-moi-trong-vong-5-nam-toi-post753212.html\n", + " -> Detect web link. Handle by Trafilatura: https://vnexpress.net/bien-doi-khi-hau-4796505.html\n", + " -> Detect web link. Handle by Trafilatura: https://vnexpress.net/qua-trinh-trai-dat-ruc-nong-trong-100-nam-qua-3601999.html\n", + " -> Detect web link. Handle by Trafilatura: https://nhandan.vn/su-nong-len-toan-cau-giua-15-c-va-2-c-khac-biet-nhau-nhu-the-nao-post672944.html\n", + " -> Detect web link. Handle by Trafilatura: http://vnmha.gov.vn/tin-tuc-bdkh-112/khi-hau-toan-cau-bien-doi-the-nao-trong-100-nam-qua-18658.html\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "✅ SUCCESS! Extracted text using Trafilatura ---\n", + "⚠️ Error using Trafilatura for URL http://vnmha.gov.vn/tin-tuc-bdkh-112/khi-hau-toan-cau-bien-doi-the-nao-trong-100-nam-qua-18658.html: \n", + "Falling back to Playwright extraction ...\n", + "❌ Error using Playwright extraction for URL http://vnmha.gov.vn/tin-tuc-bdkh-112/khi-hau-toan-cau-bien-doi-the-nao-trong-100-nam-qua-18658.html: Page.goto: Timeout 15000ms exceeded.\n", + "Call log:\n", + " - navigating to \"http://vnmha.gov.vn/tin-tuc-bdkh-112/khi-hau-toan-cau-bien-doi-the-nao-trong-100-nam-qua-18658.html\", waiting until \"domcontentloaded\"\n", + "\n", + "SUCCESS!! https://nhandan.vn/nhiet-do-toan-cau-se-tang-len-muc-ky-luc-moi-trong-vong-5-nam-toi-post753212.html\n", + "SUCCESS!! https://vnexpress.net/bien-doi-khi-hau-4796505.html\n", + "SUCCESS!! https://vnexpress.net/qua-trinh-trai-dat-ruc-nong-trong-100-nam-qua-3601999.html\n", + "SUCCESS!! https://nhandan.vn/su-nong-len-toan-cau-giua-15-c-va-2-c-khac-biet-nhau-nhu-the-nao-post672944.html\n", + "FAIL!! Using snippet for http://vnmha.gov.vn/tin-tuc-bdkh-112/khi-hau-toan-cau-bien-doi-the-nao-trong-100-nam-qua-18658.html\n", + "==> Finish for claim 'Nhiệt độ toàn cầu đã tăng 1,1°C trong 100 năm qua.'. Total: 31 chunks.\n" + ] + } + ], + "source": [ + "# Tải dữ liệu\n", + "with open('document_retrieval_results_duckduckgo_v2.json', 'r', encoding='utf-8') as f:\n", + " retrieved_data = json.load(f)\n", + " retrieved_dict = {\n", + " item[\"claim\"]: item[\"sources\"]\n", + " for item in retrieved_data\n", + "}\n", + "\n", + "evidence_by_claim = await process_claims_parallel(retrieved_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "-CcEWKwlpLII", + "metadata": { + "id": "-CcEWKwlpLII" + }, + "outputs": [], + "source": [ + "HF_TOKEN = os.getenv(\"HF_TOKEN\")" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "F2Wl6CytHxXu", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000, + "referenced_widgets": [ + "22991ea9fa854a64a6a3e767117bab2e", + "169b598ffdf444e7b3bdba45b967539b", + "eb11daddd5ed43aca8be24985c014007", + "d05888d1d5c0468abf41a0a05c0bae3f", + "c02af79512c74d6fb0e8493b2e2b415b", + "9f1aca34d91448698c7b83ce6b6eb973", + "6e34c407dd65441e82e71b2c071cb1a5", + "13e2b6924fe6491cae16c8c88876f390", + "76ac525fe6fe4c4bb0b7c850aaeea56f", + "2bb21bc90fad42c79ee7740000918751", + "91358b9cc19a4a0ca8ecd04be0eeb5ec", + "0149f31f91ce4a4d8efd139e1ba80119", + "ce238b9a92dd46108c3e6d006158afaa", + "95e4a6ef48f8487da5715922460604e1", + "17da67a2d8f149a0b5e81b668a88a31a", + "ae02191f05854425b66d5a0be918d9fc", + "6f70045e9d654c9c88df38783ecb32bd", + "526f08098973427e8cce73f2f5cda919", + "e4f87d57cffb46dd8680f2415f244280", + "ad8ea4fb968d43b5b58bfd6518250ada", + "3caf36bc07e242da9709c040368f4538", + "f8b314185d754ad4992581508d9d752e", + "abbce9dd185646a28398c9a1c6aeadef", + "1efeb37ce8b945ae83fb642203755af4", + "8ef4fa2e3a5248a3bbcfcbc607107913", + "9b2edee1bc394197b8df7ddae09cfd7b", + "1a46a8c99cc24d59b0be5d42ff86f9fc", + "508f99b0542b498581608d3b2b4fd69f", + "591b5581d1c947a98a0d9755089b16ef", + "d8e05e9f29dc4e30973bec603dd00d0c", + "a9095d2f21654abd84bb502d8c0ceef7", + "0c218d2bbdc2452681f39c6254ae6fa2", + "71c42e87d49c4e4dbf7f5c5e25971a58", + "4718b1cd172b4ad488ca1b0a4b8768a0", + "f5184c7b61b843a185ee174f2275e40e", + "7cdd2648f99945589e3318bc99a6bee4", + "fe20461e21274f56a277fbec2167b26d", + "759767a4afc347e2b1f0f7054d6ecc7c", + "d88b0702e3ad4958ae2bf14228b2fe20", + "c5b64a08d3cc455bad8d489143a82caa", + "0dccd6b9c88e45bbb6966cedbb4b3dc0", + "8a34eb13429f49c696bf1c8f4b1fc65e", + "4543ea0f71c54ee1b5a9a88a0e8454b7", + "31484c2059444376b782580c1d308d0f", + "46355bf25b98487196549e70071d4f6e", + "9610ecbce42d4bd7b480d1b3e248af7e", + "4b3f995db4cd45aa93f192173b896236", + "e88d6163a3d64fbd8f682288a91c070c", + "b6bb7088a2504230bf8a5273d12050bf", + "8f0cfae8397a453d90349d0e40543f2c", + "df186100655449c9b3be2bdac440c6d8", + "1c8f4b7336344bfe9d45d49005f5d10a", + "2b122b42ff094f8e97f6e0467542c016", + "89be612b7f6b4a768dbfb7b59289f4fe", + "5ddf3c91bcc24c93b7aeefe43afc286a", + "6fd675c151df4470b42caaabfaee56e0", + "01c809e2eb9f4b2da5a7a9dc08c3fd2d", + "2f07d5f672464c33b3506ad6addec065", + "09125bc2ba2c4473af184d2d1ae4f863", + "bc40829ed0ca481499b62232beb8f930", + "5cfe3904d0ae4899aabf6c4f99c5ec1b", + "91005ed66c1b4435b4304eb72e8da06d", + "abccd96323494c2a94a19670f4b9c51b", + "40357042a7fd4e62b6296e75a7147da9", + "f187c26857b8440f8bba9c1f04a34da9", + "a1e9439f90b34a9ea7a6c5fc651b57e6", + "125a848084bd4871a8055b814f6ec624", + "043acf4e32c04271ad4781f846c0d110", + "6f01e88bda2a46129876622f129e3192", + "91abc01ca8854d878e4e824bae736c44", + "51eab1e3243c4f129a396f28dfcab6a6", + "9473b9e5b8ab44ec9d484d056631cd3f", + "909f5da9c6bf482e8afbbbdc4116a512", + "a95571e77ecd42fb9a7a9a4bc9e33e10", + "e18d5fccd7694a529deaa6036dec4ec7", + "907795aaddba4df38f7688604b3eab74", + "7dea5e7d2e4446879a9379e4bcd088bb", + "9014700952184c23a21727eb4e41777d", + "f687f7e95ac84d409e1f75a3beb5074d", + "e4f7305aa73142d1b27657968550d580", + "1fb99b83c090428286c4130011057cfd", + "88bdc241ddac4f609c6202d8d72509a2", + "abe749a90b3c4811b53df67b3de24a06", + "08d8102ccdfc4eb58ff075c72d494239", + "92c33a36df024e8883e38f49583e0e87", + "74774123c97f4b3d9adb9e93b82b03f3", + "95d2cb1d40a649b3aef5886b046396ae", + "a3803629a1ca408ebc87b02e8bea4b8e", + "04d28a100d4546258f7e2369141d9b8f", + "3dc714bf04ef48699bc9e3c8c5abac97", + "fac80fb6ca6749a99a36ee86a830e789", + "6e3b9366ef3746eeb644e08c0c33a71c", + "bfb0fffd1a8043578049fb0f7f3c6087", + "2ecb182f936544e0954c9cee38a1ebff", + "b6a5fed82101415080485775e50c87f2", + "a71434bac0f04383a1e363d1d6f0bc64", + "9b168d87abdc4efa830f16ef46473212", + "cb7093996c4146648f20298fda2e7915", + "f1b97afde2444664a2c2ed06b13e6b73", + "6fa02c4b53e144c6acf0f5b656f00e9f", + "42cc0feefef540e08b045b56fcdd3b9d", + "7e3c39b0f53a42c8b8230050ed6cdc75", + "9851c9e5302347d1b6b90dbe80fc26e0", + "16b0a443e3504e0294a552a248dce940", + "90477fb74d354a8392a8ec2c32cafa1f", + "98ec36909ed44bc98f83204a58e24ec8", + "48ce05c69c04491fa5a873cd4065c742", + "a8827d5558ea4f80ad9ee0c236f3c531", + "db0f214cc2e943daa043384d8e8e3bf8", + "53709578cd324a28a7dce04873f71f82", + "8a3528ef89d6438bad2eb15d0deb459b", + "39c5c2382e12482dbf1d43c641bb3479", + "c137b0709cd44419b1139b2418451c43", + "8fe86ccf3d164e53be2a7dc01c0d9747", + "12270522f64c46adb001bfc7e9f9d10c", + "c0413bfdcc1d46428f34dd4c2692b9a1", + "9925f9a0530b4833971ff87475efa646", + "e2093df686864e27a48c8e317e2790a0", + "627dc7cbeb9f407cb6d8d3af3866a250", + "6f9584a286cb4f6c87962d132d1ac429", + "1d95e5bae645445b91fb09726e7aece6", + "cf8cdf517a8f4bd89dc2433db5a07f51", + "9a08e95b55fd48bca482096d9db68de4", + "73f054775a4e41d4b545ff48bdde34a2", + "4e621f2b58f34f469bc370c64bbedecc", + "22fb4d1a98eb43f1b51f4758d86ac8d4", + "1eee416e84bf457b8182f5a1de529106", + "c680e238d0134ab09c75781525639897", + "f12a9468cf98454a903ab43aa49bc6a5", + "1fb77d55c38d4b33a4b6fedd6ac24a3c", + "8a5e5c49891541f69129c876aac88de9", + "584c810783b64f86b8c37ce93f351bae" + ] + }, + "id": "F2Wl6CytHxXu", + "outputId": "566e3cd1-f7a5-4be7-b82a-899ba7a793e7" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Downloading Bi-Encoder model...\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": [ + "modules.json: 0%| | 0.00/229 [00:00 dict:\n", + " \"\"\"\n", + " Phân loại lập trường của một bằng chứng so với một claim sử dụng mô hình NLI.\n", + " (Hàm này giữ nguyên y hệt như trong notebook gốc của bạn)\n", + " \"\"\"\n", + " # Mã hóa cặp (bằng chứng, claim)\n", + " # Premise = evidence_text, Hypothesis = claim\n", + "\n", + " # Cắt bớt văn bản để tránh lỗi token quá dài\n", + " tokenized_input = tokenizer(evidence_text, claim, return_tensors='pt', truncation=True, max_length=512)\n", + "\n", + " with torch.no_grad():\n", + " outputs = nli_model(**tokenized_input)\n", + "\n", + " # Lấy điểm số xác suất cho mỗi nhãn\n", + " logits = outputs.logits\n", + " probabilities = torch.softmax(logits, dim=1).squeeze().tolist()\n", + "\n", + " # Các mô hình XNLI thường có thứ tự nhãn: [contradiction, neutral, entailment]\n", + " # tương ứng với index [0, 1, 2]\n", + " # (Mô hình Moritz này cũng theo thứ tự đó)\n", + " labels = ['Refute', 'Neutral', 'Support']\n", + "\n", + " # Tìm nhãn có xác suất cao nhất\n", + " predicted_index = torch.argmax(logits, dim=1).item()\n", + " predicted_label = labels[predicted_index]\n", + "\n", + " return {\n", + " \"stance\": predicted_label,\n", + " \"score\": probabilities[predicted_index],\n", + " \"scores_all\": {\n", + " \"refute\": probabilities[0],\n", + " \"neutral\": probabilities[1],\n", + " \"support\": probabilities[2]\n", + " }\n", + " }" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "kBYXeNpdIRdt", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "kBYXeNpdIRdt", + "outputId": "d8a22fe8-b830-4da8-a8f6-1a5dcf59797c" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "--- Phân loại lập trường cho claim: 'Biến đổi khí hậu đang làm thời tiết cực đoan hơn.' ---\n", + " -> Stance: Neutral ({'refute': 0.004481097217649221, 'neutral': 0.6608585715293884, 'support': 0.3346603810787201}): | Text: VnExpress Biến đổi khí hậu châm ngòi cho thời tiết cực đoan thế nào - Báo VnExpress. 1. Mưa lớn Mỗi khi nhiệt độ trung bình tăng thêm một độ C, khí quyển có thể chứa thêm khoảng 7% hơi ẩm. Điều này có thể dẫn tới nhiều hạt mưa và mưa nặng hạt hơn, đôi khi trong thời gian ngắn và khu vực nhỏ. Các nhà khoa học đánh giá liệu sự kiện thời tiết cực đoan có thể quy cho biến đổi khí hậu hay không bằng cách xem xét nguyên nhân từ nhiên và con người. Trong trường hợp mưa lớn ở Dubai, Các tiểu vương quốc Arab thống\n", + " -> Stance: Support ({'refute': 0.0004723505408037454, 'neutral': 0.00014160694263409823, 'support': 0.9993860721588135}): | Text: sơ tán. Tổng Thư ký WMO Celeste Saulo nêu rõ, các hình thái thời tiết cực đoan do biến đổi khí hậu ngày càng gia tăng và đáng báo động, khởi nguồn từ các hoạt động xâm hại thiên nhiên của con người. Ông kêu gọi thế giới nỗ lực hơn nữa để giảm phát thải khí nhà kính, hạn chế sự nóng lên toàn cầu, qua đó giảm thảm họa thiên nhiên tàn khốc trong tương lai.\n", + " -> Stance: Support ({'refute': 0.0012948333751410246, 'neutral': 0.04007403180003166, 'support': 0.9586310982704163}): | Text: Biến đổi khí hậu gây ra nhiều thay đổi về lượng mưa, khiến bão dữ.... Biến đổi khí hậu gây ra nhiều thay đổi về lượng mưa, khiến bão dữ dội hơn Các nhà khoa học cho biết các cơn bão nhiệt đới mạnh hơn là một phần của hiện tượng thời tiết khắc nghiệt do nhiệt độ tăng cao gây ra. - 23-07-2024Chỉ có thể là Nhật Bản: Nhà máy sản xuất sake duy nhất ở Tokyo cho rượu \"nghe nhạc\", hứa hẹn công nghệ hiện đại chống tác động biến đổi khí hậu - 01-07-2024Châu Âu chìm trong bão lũ kinh hoàng, những thảm kịch nối tiếp\n", + " -> Stance: Support ({'refute': 0.0028366579208523035, 'neutral': 0.006512293592095375, 'support': 0.99065101146698}): | Text: hơn không bởi nhiều yếu tố khác cũng góp phần như thay đổi sử dụng đất. Nhưng biến đổi khí hậu tạo ra những điều kiện thời tiết cần thiết để đám cháy lan rộng hơn, theo IPCC. Nắng nóng cực đoan kéo dài hút nhiều hơi ẩm từ đất đai và cây cối. Điều kiện khô hạn cung cấp nhiên liệu cho đám cháy lan ra ở tốc độ khó tin, đặc biệt khi gió mạnh. Canada trải qua mùa cháy rừng tồi tệ nhất trong lịch sử vào năm 2023. Biến đổi khí hậu cũng tăng gấp đôi khả năng xuất hiện điều kiện cháy rừng ở phía đông Canada trong\n", + " -> Stance: Support ({'refute': 0.0006083892076276243, 'neutral': 0.002158908871933818, 'support': 0.9972327351570129}): | Text: độ cao và khiến việc thực hiện các công việc ngoài trời trở nên khó khăn hơn. Rủi ro cháy rừng cao hơn và lây lan nhanh hơn rất nhiều khi khí hậu nóng lên. Nhiệt độ ở hai Cực đã tăng lên ít nhất là gấp hai lần so với mức tăng trung bình của thế giới. Hình thành thêm nhiều cơn bão dữ dội Những cơn bão lớn đang trở nên khốc liệt hơn và xuất hiện thường xuyên hơn ở nhiều khu vực. Do nhiệt độ tăng, nước bốc hơi càng nhiều khiến tình trạng mưa cực lớn và ngập lụt trở nên trầm trọng hơn, kéo theo thêm nhiều cơn\n", + " -> Stance: Support ({'refute': 0.00623288843780756, 'neutral': 0.01699606329202652, 'support': 0.9767709970474243}): | Text: các hiện tượng thời tiết cực đoan là một trong những lý do làm gia tăng nạn đói cũng như tình trạng thiếu thốn dinh dưỡng. Thuỷ sản, cây trồng và vật nuôi có thể bị huỷ hoại hoặc năng suất sẽ kém đi. Khi mà nồng độ axit trong nước biển tăng cao, nguồn hải sản đang nuôi sống hàng tỷ người đang bị đe doạ. Sự thay đổi của lớp băng tuyết ở nhiều vùng cực Bắc đã làm gián đoạn nguồn lương thực đến từ hoạt động chăn nuôi, săn bắn và đánh cá. Tình trạng nóng lên có thể làm giảm nguồn nước và mất đi những đồng cỏ\n", + " -> Stance: Support ({'refute': 0.002327292924746871, 'neutral': 0.027496401220560074, 'support': 0.9701762795448303}): | Text: sự thay đổi lớn hơn giữa thời tiết ẩm ướt và khô hạn. Nhiệt độ ấm lên đã tăng cường khả năng giữ độ ẩm của khí quyển, điều này đang gây ra sự biến động lớn hơn về lượng mưa - các nhà nghiên cứu cho biết trong một bài báo được công bố trên tạp chí Science. Ông Steven Sherwood - nhà khoa học tại Trung tâm Nghiên cứu biến đổi khí hậu thuộc Đại học New South Wales, người không tham gia vào nghiên cứu này - cho biết: \"Tình trạng nóng lên toàn cầu tiếp tục diễn ra làm tăng khả năng xảy ra hạn hán và/hoặc lũ\n", + " -> Stance: Support ({'refute': 0.0012274438049644232, 'neutral': 0.004618845414370298, 'support': 0.9941536784172058}): | Text: tình trạng thiếu dinh dưỡng ở những khu vực mà con người không thể trồng trọt hay tìm nguồn lương thực cần thiết. Mỗi năm, các yếu tố môi trường đã lấy đi sinh mạng của khoảng 13 triệu người. Những thay đổi về thời tiết đang làm gia tăng dịch bệnh và các hiện tượng thời tiết cực đoan, dẫn đến số người thiệt mạng ngày càng tăng và khiến cho hệ thống y tế không thể theo kịp. Nghèo đói và di dân Biến đổi khí hậu làm gia tăng các yếu tố khiến con người rơi vào đói nghèo. Lũ lụt quét trôi các khu ổ chuột ở đô\n", + " -> Stance: Support ({'refute': 0.0003164652443956584, 'neutral': 0.0009834031807258725, 'support': 0.9987001419067383}): | Text: trung bình toàn cầu cũng đạt mức kỷ lục trong 12 năm liên tiếp, hiện cao khoảng 101,4 mm so với mức trung bình của năm 1993. Hiện tượng thời tiết cực đoan Sự ấm lên của nhiệt độ bề mặt trái đất đang góp phần làm gia tăng tần suất và cường độ của các hiện tượng thời tiết cực đoan như nắng nóng, hạn hán, lũ lụt, bão lớn... Nghiên cứu của IPCC cho thấy rằng lượng mưa toàn cầu đã gia tăng trung bình khoảng 1% mỗi thập kỷ, từ 10-20% trong 100 năm qua, nhưng sự phân bố lượng mưa lại không đồng đều. Một số khu\n", + " -> Stance: Neutral ({'refute': 0.0030858905520290136, 'neutral': 0.7913430333137512, 'support': 0.20557105541229248}): | Text: tồi tệ nhất 40 năm, khiến 1,2 triệu người dân ở Somalia mất chỗ ở. Biến đổi khí hậu làm hạn hán kiểu này nhiều khả năng xảy ra hơn ít nhất 100 lần, theo WWA. Hiện tượng ấm lên do con người gây ra cũng là nguyên nhân chính phía sau đợt hạn hán nặng nề nhất ở rừng mưa Amazon trong nửa thế kỷ, xảy ra vào nửa cuối năm 2023. 4. Cháy rừng Những đám cháy xảy ra trong tự nhiên ở nhiều nơi trên thế giới. Rất khó biết liệu biến đổi khí hậu có làm cháy rừng tồi tệ hơn không bởi nhiều yếu tố khác cũng góp phần như\n", + "\n", + "--- Phân loại lập trường cho claim: 'Nhiệt độ toàn cầu đã tăng 1,1°C trong 100 năm qua.' ---\n", + " -> Stance: Neutral ({'refute': 0.3276432156562805, 'neutral': 0.47004708647727966, 'support': 0.20230969786643982}): | Text: Khí hậu toàn cầu biến đổi thế nào trong 100 năm qua. Nhiệt độ toàn cầu tăng Theo NASA, trong 100 năm qua , nhiệt độ toàn cầu đã tăng khoảng 1,1-1,2 độ C (2 độ F) so với mức trung bình trong thời kỳ trước công nghiệp (khoảng năm 1850-1900). Sự tăng nhiệt này không đều và có sự thay đổi theo từng giai đoạn.\n", + " -> Stance: Support ({'refute': 0.19048526883125305, 'neutral': 0.028782133013010025, 'support': 0.7807326316833496}): | Text: ra nhanh hơn. Biểu hiện của hiện tượng này bao gồm băng tan, mực nước biển dâng, nhiệt độ toàn cầu tăng, gây ra thời tiết cực đoan... Nhiệt độ toàn cầu tăng Theo NASA, trong 100 năm qua, nhiệt độ toàn cầu đã tăng khoảng 1,1-1,2 độ C (2 độ F) so với mức trung bình trong thời kỳ trước công nghiệp (khoảng năm 1850-1900). Sự tăng nhiệt này không đều và có sự thay đổi theo từng giai đoạn. Từ năm 1900 đến 1970, sự gia tăng trung bình của nhiệt độ toàn cầu ước tính khoảng 0,2-0,3 độ C. Trong giai đoạn này, nhiệt\n", + " -> Stance: Refute ({'refute': 0.731618344783783, 'neutral': 0.10845255106687546, 'support': 0.1599290668964386}): | Text: độ nóng lên đang ảnh hưởng đến Trái đất như thế nào? Hiện thế giới đã nóng lên khoảng 1,1°C so với mức thời kỳ tiền công nghiệp. Mỗi thập kỷ trong bốn thập kỷ qua đều nóng hơn bất kỳ thập kỷ nào kể từ năm 1850. Nhà khoa học khí hậu Daniela Jacob, Trung tâm Khí hậu Đức cho biết: “Chúng ta chưa bao giờ có hiện tượng trái đất nóng lên như vậy chỉ trong vài thập kỷ”. \"Nửa độ có nghĩa là thời tiết khắc nghiệt hơn nhiều và nó có thể thường xuyên hơn, dữ dội hơn hoặc thời gian kéo dài\". Chỉ trong năm nay, những\n", + " -> Stance: Neutral ({'refute': 0.004190084990113974, 'neutral': 0.9906176924705505, 'support': 0.005192165728658438}): | Text: VnExpress Quá trình Trái Đất rực nóng trong 100 năm qua - Báo VnExpress. Cơ quan Hàng không Vũ trụ Mỹ (NASA) đầu tháng 6 công bố đồ họa mô tả xu hướng nóng lên toàn cầu trong giai đoạn 1880-2015, theo Telegraph. Đồ họa cho thấy trong hơn 100 năm qua, nhiệt độ trên Trái Đất đã thay đổi từ màu xanh lam biểu thị cho mức nhiệt lạnh hơn trung bình cho đến màu cam rực nóng trên toàn cầu, thể hiện nhiệt độ ấm hơn mức trung bình. Trái Đất xuất hiện với phần lớn là màu xanh lam trong giai đoạn đầu của thế kỷ 20.\n", + " -> Stance: Support ({'refute': 0.4021055996417999, 'neutral': 0.040325768291950226, 'support': 0.5575685501098633}): | Text: khoảng 0,2-0,3 độ C. Trong giai đoạn này, nhiệt độ tăng chậm hơn so với những thập kỷ sau mặc dù các hoạt động công nghiệp đã bắt đầu phát thải lượng lớn khí nhà kính. Những năm 1970 - 2010, tốc độ tăng nhiệt trở nên nhanh hơn. Theo dữ liệu của NASA và NOAA, nhiệt độ trung bình toàn cầu trong thời gian này tăng thêm khoảng 0,7 độ C. Giai đoạn 2010 đến nay là những năm có nhiệt độ cao nhất trong lịch sử hiện đại. Cụ thể, năm 2016 và 2020 là 2 năm nóng kỷ lục khi nhiệt độ toàn cầu cao hơn khoảng 1,2 độ C so\n", + " -> Stance: Support ({'refute': 0.12996670603752136, 'neutral': 0.3996541202068329, 'support': 0.47037920355796814}): | Text: 20 cm từ năm 1901 đến 2018 và dự đoán có thể tăng thêm từ 0,3 đến 1,1 mét vào cuối thế kỷ 21 nếu không có biện pháp kiềm chế khí thải. Tuy nhiên, tốc độ tăng này diễn ra không đều ở một vài giai đoạn. Trong 50 năm qua, đại dương đã hấp thụ hơn 90% năng lượng dư thừa mà khí nhà kính và các yếu tố khác giữ lại trong trái đất. Nhiệt độ của đại dương, được đo từ bề mặt cho đến độ sâu 2.000 m tiếp tục tăng và đạt mức cao kỷ lục vào năm 2023. Đồng thời, mực nước biển trung bình toàn cầu cũng đạt mức kỷ lục trong\n", + " -> Stance: Neutral ({'refute': 0.12315519899129868, 'neutral': 0.8421717286109924, 'support': 0.03467310592532158}): | Text: trung bình toàn cầu cũng đạt mức kỷ lục trong 12 năm liên tiếp, hiện cao khoảng 101,4 mm so với mức trung bình của năm 1993. Hiện tượng thời tiết cực đoan Sự ấm lên của nhiệt độ bề mặt trái đất đang góp phần làm gia tăng tần suất và cường độ của các hiện tượng thời tiết cực đoan như nắng nóng, hạn hán, lũ lụt, bão lớn... Nghiên cứu của IPCC cho thấy rằng lượng mưa toàn cầu đã gia tăng trung bình khoảng 1% mỗi thập kỷ, từ 10-20% trong 100 năm qua, nhưng sự phân bố lượng mưa lại không đồng đều. Một số khu\n", + " -> Stance: Neutral ({'refute': 0.07706407457590103, 'neutral': 0.9169617295265198, 'support': 0.005974248051643372}): | Text: sẽ vĩnh viễn vượt quá mức 1,5°C đề ra trong Hiệp định Paris về biến đổi khí hậu. Tuy nhiên, WMO đang gióng lên hồi chuông cảnh báo rằng nhiệt độ Trái đất sẽ tạm thời \"vi phạm\" mức 1,5°C với tần suất ngày càng tăng. Ông Petteri Taalas nêu rõ hiện tượng El Nino nóng lên dự kiến sẽ gia tăng trong những tháng tới và điều này kết hợp với biến đổi khí hậu do con người gây ra sẽ đẩy nhiệt độ toàn cầu lên một mức chưa từng có. Điều này sẽ có những tác động sâu rộng đối với sức khỏe, an ninh lương thực, quản lý\n", + " -> Stance: Neutral ({'refute': 0.315163791179657, 'neutral': 0.6653332710266113, 'support': 0.019502999261021614}): | Text: WMO cho rằng nhiệt độ bề mặt trung bình toàn cầu hàng năm cho mỗi năm từ năm 2023 đến năm 2027 được dự đoán là cao hơn từ 1,1°C đến 1,8°C so với mức trung bình của những năm 1850-1900. WMO cho rằng có tới 98%, một trong năm 5 tới sẽ là năm nóng kỷ lục, vượt cả năm 2016 - thời điểm nhiệt độ toàn cầu tăng thêm 1,3 độ C.\n", + " -> Stance: Support ({'refute': 0.14296405017375946, 'neutral': 0.046621669083833694, 'support': 0.8104143142700195}): | Text: khi nhiệt độ toàn cầu cao hơn khoảng 1,2 độ C so với thời kỳ tiền công nghiệp. Mức tăng nhiệt độ không đều trên toàn cầu, Bắc Cực là nơi đã trải qua sự gia tăng nhiệt độ lớn nhất, ghi nhận sự ấm lên 2-3 độ C so với trung bình một số khu vực. Mực nước biển dâng Nóng lên toàn cầu gây ra hiện tượng tan chảy băng ở các vùng cực và sông băng, làm mực nước biển dâng lên. Theo báo cáo của IPCC (Ban liên chính phủ về biến đổi khí hậu), mực nước biển đã tăng khoảng 20 cm từ năm 1901 đến 2018 và dự đoán có thể tăng\n" + ] + } + ], + "source": [ + "results_with_stance = {}\n", + "\n", + "for claim, top_evidence in final_evidence_by_claim.items():\n", + " evidence_with_stance = []\n", + " print(f\"\\n--- Phân loại lập trường cho claim: '{claim}' ---\")\n", + "\n", + " for score, chunk in top_evidence:\n", + " stance_result = classify_stance(claim, chunk['text'])\n", + "\n", + " evidence_with_stance.append({\n", + " 'text': chunk['text'],\n", + " 'link': chunk['link'],\n", + " 'rerank_score': score,\n", + " 'stance': stance_result['stance'],\n", + " 'stance_score': stance_result['score'],\n", + " 'stance_scores': stance_result['scores_all']\n", + " })\n", + " print(f\" -> Stance: {stance_result['stance']} ({stance_result['scores_all']}): | Text: {chunk['text']}\")\n", + "\n", + " results_with_stance[claim] = evidence_with_stance" + ] + }, + { + "cell_type": "markdown", + "id": "iQPAXW8skFwV", + "metadata": { + "id": "iQPAXW8skFwV" + }, + "source": [ + "## **V. Output**" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "9uWkAS27vOiz", + "metadata": { + "id": "9uWkAS27vOiz" + }, + "outputs": [], + "source": [ + "from collections import Counter\n", + "import numpy as np\n", + "import os\n", + "from azure.ai.inference import ChatCompletionsClient\n", + "from azure.ai.inference.models import SystemMessage, UserMessage\n", + "from azure.core.credentials import AzureKeyCredential" + ] + }, + { + "cell_type": "markdown", + "id": "XRmR7DoZvK8E", + "metadata": { + "id": "XRmR7DoZvK8E" + }, + "source": [ + "### 1. HÀM TỔNG HỢP KẾT LUẬN (VERDICT)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "lil5l1E9amjz", + "metadata": { + "id": "lil5l1E9amjz" + }, + "outputs": [], + "source": [ + "def aggregate_verdict_weighted(evidence_with_stance):\n", + " \"\"\"\n", + " Tổng hợp verdict (True / False / Unknown) dựa trên stance_scores có trọng số.\n", + " \"\"\"\n", + " if not evidence_with_stance:\n", + " return {\"verdict\": \"Unknown\", \"confidence\": 0.0}\n", + "\n", + " weights = {\"Support\": 0.0, \"Refute\": 0.0, \"Neutral\": 0.0}\n", + " total_weight = 0.0\n", + "\n", + " for e in evidence_with_stance:\n", + " s = e[\"stance_scores\"]\n", + " rel = e.get(\"rerank_score\", 1.0) # nếu có rerank_score thì dùng làm trọng số phụ\n", + " weights[\"Support\"] += s[\"support\"] * rel\n", + " weights[\"Refute\"] += s[\"refute\"] * rel\n", + " weights[\"Neutral\"] += s[\"neutral\"] * rel\n", + " total_weight += rel\n", + "\n", + " # Chuẩn hóa lại tỷ lệ\n", + " ratio = {k: v / total_weight for k, v in weights.items()}\n", + "\n", + " if ratio[\"Support\"] > 0.5:\n", + " verdict = \"True\"\n", + " elif ratio[\"Refute\"] > 0.5:\n", + " verdict = \"False\"\n", + " else:\n", + " verdict = \"Unknown\"\n", + "\n", + " confidence = max(ratio.values())\n", + " return {\"verdict\": verdict, \"confidence\": confidence, \"stance_ratio\": ratio}" + ] + }, + { + "cell_type": "markdown", + "id": "0wD8ptjDvkPN", + "metadata": { + "id": "0wD8ptjDvkPN" + }, + "source": [ + "### 2. HÀM SINH GIẢI THÍCH (JUSTIFICATION)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "nRmnXAp-viUr", + "metadata": { + "id": "nRmnXAp-viUr" + }, + "outputs": [], + "source": [ + "# Cấu hình Azure LLM (GPT-4o-mini)\n", + "endpoint = \"https://models.github.ai/inference\"\n", + "model = \"openai/gpt-4o-mini\"\n", + "token = os.environ[\"GITHUB_TOKEN\"]\n", + "\n", + "client = ChatCompletionsClient(\n", + " endpoint=endpoint,\n", + " credential=AzureKeyCredential(token)\n", + ")\n", + "\n", + "def explain_factcheck_with_best_evidence(claim, verdict, best_evidence, stance_ratio):\n", + " prompt = f\"\"\"\n", + "Bạn là trợ lý fact-check trung lập và chính xác.\n", + "Dưới đây là thông tin hệ thống đã thu thập:\n", + "\n", + "Claim: \"{claim}\"\n", + "System verdict (tổng hợp): {verdict}\n", + "Stance ratio (tổng hợp): {stance_ratio}\n", + "\n", + "Best evidence (đã chọn):\n", + "\"{best_evidence['text']}\"\n", + "Nguồn: {best_evidence.get('link','(no link)')}\n", + "\n", + "YÊU CẦU (bắt buộc):\n", + "- Dựa vào 'System verdict' và 'Stance ratio' khi viết. KHÔNG được mâu thuẫn với verdict đã cho.\n", + "- Nếu best evidence ủng hộ nhưng verdict là Unknown, hãy viết theo cấu trúc:\n", + " \"[Nhận định]: (True/False/Unknown)\"\n", + " \"[Giải thích]: Giải thích ngắn (2 câu). Nếu có mâu thuẫn giữa best evidence và verdict, nêu rõ: 'Mặc dù một bằng chứng mạnh cho thấy..., tổng thể bằng chứng hiện nay vẫn...'\"\n", + "\n", + "Viết tiếng Việt, 2-3 câu, trung lập và rõ ràng.\n", + "\"\"\"\n", + " response = client.complete(\n", + " messages=[\n", + " SystemMessage(\"Bạn là trợ lý fact-check chuyên nghiệp, không mâu thuẫn với verdict đã cho.\"),\n", + " UserMessage(prompt)\n", + " ],\n", + " model=model,\n", + " temperature=0.2\n", + " )\n", + " return response.choices[0].message.content.strip()" + ] + }, + { + "cell_type": "markdown", + "id": "pSgDqMuDvt8T", + "metadata": { + "id": "pSgDqMuDvt8T" + }, + "source": [ + "### 3. SINH KẾT LUẬN & IN KẾT QUẢ" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "MABYca6Lvn--", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "MABYca6Lvn--", + "outputId": "3588f225-ec2b-44ce-92cd-62a91551d50f" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "================================================================================\n", + "Claim: Biến đổi khí hậu đang làm thời tiết cực đoan hơn.\n", + "→ Verdict: True (Confidence: 0.87)\n", + "→ Stance ratio: {'Support': np.float32(0.86512274), 'Refute': np.float32(0.0023346895), 'Neutral': np.float32(0.13254265)}\n", + "→ Best Evidence (score=1.00):\n", + "sơ tán. Tổng Thư ký WMO Celeste Saulo nêu rõ, các hình thái thời tiết cực đoan do biến đổi khí hậu ngày càng gia tăng và đáng báo động, khởi nguồn từ các hoạt động xâm hại thiên nhiên của con người. Ông kêu gọi thế giới nỗ lực hơn nữa để giảm phát thải khí nhà kính, hạn chế sự nóng lên toàn cầu, qua...\n", + "[Source: https://nhandan.vn/bao-dong-ve-cac-hinh-thai-khi-hau-cuc-doan-post792907.html]\n", + "→ Giải thích kiểm chứng:\n", + "[Nhận định]: True \n", + "[Giải thích]: Bằng chứng cho thấy biến đổi khí hậu đang làm gia tăng các hình thái thời tiết cực đoan, như được nêu bởi Tổng Thư ký WMO. Tổng thể bằng chứng hiện nay hỗ trợ cho tuyên bố rằng biến đổi khí hậu có liên quan đến sự gia tăng tần suất và cường độ của các hiện tượng thời tiết cực đoan.\n", + "\n", + "================================================================================\n", + "Claim: Nhiệt độ toàn cầu đã tăng 1,1°C trong 100 năm qua.\n", + "→ Verdict: Unknown (Confidence: 0.44)\n", + "→ Stance ratio: {'Support': np.float32(0.30232018), 'Refute': np.float32(0.2552713), 'Neutral': np.float32(0.44240847)}\n", + "→ Best Evidence (score=0.99):\n", + "VnExpress Quá trình Trái Đất rực nóng trong 100 năm qua - Báo VnExpress. Cơ quan Hàng không Vũ trụ Mỹ (NASA) đầu tháng 6 công bố đồ họa mô tả xu hướng nóng lên toàn cầu trong giai đoạn 1880-2015, theo Telegraph. Đồ họa cho thấy trong hơn 100 năm qua, nhiệt độ trên Trái Đất đã thay đổi từ màu xanh la...\n", + "[Source: https://vnexpress.net/qua-trinh-trai-dat-ruc-nong-trong-100-nam-qua-3601999.html]\n", + "→ Giải thích kiểm chứng:\n", + "[Nhận định]: Unknown \n", + "[Giải thích]: Mặc dù một bằng chứng mạnh cho thấy nhiệt độ toàn cầu đã tăng trong hơn 100 năm qua, tổng thể bằng chứng hiện nay vẫn chưa đủ để xác định chính xác mức tăng là 1,1°C. Do đó, cần thêm thông tin và nghiên cứu để có kết luận rõ ràng hơn.\n" + ] + } + ], + "source": [ + "final_results = {}\n", + "\n", + "for claim, evidences in results_with_stance.items():\n", + " if not evidences:\n", + " continue\n", + "\n", + " # Tính verdict có trọng số\n", + " agg = aggregate_verdict_weighted(evidences)\n", + "\n", + " # Chọn bằng chứng mạnh nhất (score cao nhất)\n", + " best_evidence = max(evidences, key=lambda e: e[\"stance_score\"])\n", + "\n", + " # Gọi LLM sinh phần giải thích (theo hướng A: tuân thủ verdict)\n", + " justification = explain_factcheck_with_best_evidence(\n", + " claim,\n", + " agg[\"verdict\"],\n", + " best_evidence,\n", + " agg[\"stance_ratio\"]\n", + " )\n", + "\n", + " # Lưu kết quả\n", + " final_results[claim] = {\n", + " \"claim\": claim,\n", + " \"verdict\": agg[\"verdict\"],\n", + " \"confidence\": agg[\"confidence\"],\n", + " \"stance_ratio\": agg[\"stance_ratio\"],\n", + " \"best_evidence\": best_evidence,\n", + " \"justification\": justification\n", + " }\n", + "\n", + " # In ra cho người dùng xem\n", + " print(\"\\n\" + \"=\"*80)\n", + " print(f\"Claim: {claim}\")\n", + " print(f\"→ Verdict: {agg['verdict']} (Confidence: {agg['confidence']:.2f})\")\n", + " print(f\"→ Stance ratio: {agg['stance_ratio']}\")\n", + " print(f\"→ Best Evidence (score={best_evidence['stance_score']:.2f}):\")\n", + " print(f\"{best_evidence['text'][:300]}...\")\n", + " print(f\"[Source: {best_evidence['link']}]\")\n", + " print(\"→ Giải thích kiểm chứng:\")\n", + " print(justification)" + ] + }, + { + "cell_type": "markdown", + "source": [ + "## **Test Module 4 & 5**\n", + "\n", + "Phần này kiểm thử module 4 và 5 với dữ liệu có sẵn." + ], + "metadata": { + "id": "pbAvGqf8Pohv" + }, + "id": "pbAvGqf8Pohv" + }, + { + "cell_type": "code", + "source": [ + "# Import thư viện cần thiết\n", + "from datasets import load_dataset\n", + "from tqdm import tqdm\n", + "import json\n", + "from sklearn.metrics import classification_report, confusion_matrix\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import random" + ], + "metadata": { + "id": "loR1nDAxQZSD" + }, + "id": "loR1nDAxQZSD", + "execution_count": 35, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "### 1. Tải và xử lý dữ liệu" + ], + "metadata": { + "id": "qj5AMtrvQoP0" + }, + "id": "qj5AMtrvQoP0" + }, + { + "cell_type": "code", + "source": [ + "ds = load_dataset(\"tranthaihoa/vifactcheck\")\n", + "\n", + "# Map nhãn số (0, 1, 2) sang chuỗi (Support, Refute, Neutral)\n", + "label_map = {\n", + " 0: \"Support\",\n", + " 1: \"Refute\",\n", + " 2: \"Neutral\"\n", + "}\n", + "\n", + "ds = ds.map(lambda x: {\"label\": label_map.get(x[\"labels\"], x[\"labels\"])})" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 337, + "referenced_widgets": [ + "875e0db07c904d678c0778ea301af430", + "1ba5022eb0374757ab4c1a7f1d80ba1c", + "7334d17e98bd4a1ca842f3bb46d06c3c", + "4e9dc87390944621a377a36cfcc4e252", + "06536a6b1d6a4c1c9d0d93449be0ad44", + "83238ff734ec4ae2afe058282745a797", + "f0fba469d3e743efac8607cc6597edd9", + "647dd61f13804d36ad333a17cabff0b6", + "524660188cbd41ca9bd6a007903d15d4", + "09646d43211748e5a5a67d08cdf4d7f4", + "631742ecb067431785b3127d81cacf5e", + "e7a73f5ae7f54504a7737ebeea9c816e", + "1a61e2b3ed3442cd82daadb71e2d149d", + "acc9d7a653a841448c8b92d904a3c474", + "567f73389e864a36acad39dd8f14243d", + "e2b762153c58466b8ac93224835050ae", + "56f72b13c7184931a71893022768d731", + "291eb5c5bad8477b9eed6da608180892", + "9fa590f637034c9888404c78a46431f5", + "71382bf102494f829ba1a23f8aa681c5", + "52f4cdc51f7842d1b29fba390235c49f", + "edaa3acd8a5e4dc88ae3cf334bafb87e", + "43a0030de1004edabb802c42195f2398", + "a2e731dffb724f61bae96c0991edac4e", + "243b2adcd4f14a55b1302f91c90f9efe", + "efba264f856d43599674ba3404602ff1", + "b81a94392a9c47d584e49ff49afa8969", + "d5f8f262ddff40b692a50d65e59e37fa", + "c7a9e328774c46d6be2d864300de3f83", + "ba7b22eb80cb4724a1c52e3d853e0d5a", + "30c2cdbc32b34e9eb9cc6aba6316e690", + "7d74b251823a4dd1980103c79d909f33", + "db2b704a6eb540c3be1a20e2fcd48fc9", + "531c484f2ec9491fadb12aea9f1fa813", + "a2b6318f6f9048ba9877158fba4ebb81", + "f6f64b852a5c46fbbf143dcec8ae5375", + "3e4d69484b2b4658aae0192b720b074c", + "5a0373962d2e4fa4812be47d402aa0ee", + "e6de57c1d5b64b80ba96c84d149e60be", + "ef48ed65c51e4981b35f67fff6a0c022", + "217a47a1a97b45bdbd9691a709883056", + "7390aeaf50044d72b7c499a0eba0322c", + "914b57f67f354d3ca6a529290acbae95", + "8d490218619845359b55647b18f9154f", + "c596eb330aab4ecf9ffee09889e7f846", + "81f929319ff444229f3afa1c51e5d128", + "bf65956bd6ea43ef804e872a85981a07", + "1778cfb90ac3405fb0c8de307e98a915", + "85cb0ec82d3b47c79a75761e85be37d4", + "86c21f4971b24ae0b8385518e1520e88", + "a8c3f0be2d1f4f5792ceb95bbc60f2ef", + "ecf63e6c2a4040f6b848856ea415341c", + "b78adef3c81d407e9bbd927246a9efda", + "55536d3805df4acba4f3df1f78c65bea", + "2373564aaa664cd4ba7d3e9335bd46dd", + "75ce7d9b748a449dbe22f8d04cf1a9d7", + "d8c5b2f1c62246cea3acacd1dc1a4566", + "dc08c731af2c4d7199f3c766baa68548", + "92b2fc4775b4407bb66dfb0da9ea1659", + "7b3296ab411b46608e9e1550e0f7b267", + "c484ff113399431fae56f046ed9700db", + "95177ade0d6d47a1a6ff884e611ab5a5", + "3725b7cc1e5d4ece871a1c64c805e61e", + "f4bf88f2000748e2b6facbb74af08304", + "9730480d651948d28884fef186d74c20", + "a4312b47da264154b56be3baa2efed22", + "792b0fd7d4684c6a854f2dd8f1e82311", + "b31a0f0c16974d2a9b2e5289b705e639", + "9c3412f3629e4c218f70f93119c56068", + "bdae447277714595ab3115fb9dad41d0", + "62fc4b2b88394b65adbc5a9b8136adf5", + "1fa79b9664bf4c3dbe15c7827dde5001", + "0dee6400aff84a30837beedbb7bf8563", + "0a6a37dcf0e346c7b4c0474a3dcd4d7d", + "c03480c8dec74597ab3955d336720b77", + "66dbbfa05161490da0f9aba1696b5355", + "21cab9a9ef124508b205c332bea271c6", + "1485619287b2441989cd06e74991539e", + "c2124a095e15417889a02d06a6c22bb4", + "bf2ccdd055134df1bf2d6893e46979bd", + "edd583a5ed3b41e79113c7568faa6243", + "9708abd06665492a84b23c7106e9050c", + "a5571da52fd048db91eebf1bfc8f7620", + "72387183e7a24311b08b4fafc4304ade", + "caddac85b9a442229915a95ed17cfbf6", + "c712d26c2947433c8a2d7d0151985310", + "5d7c55d04cb74bff97ac410df2aebdd1", + "1da35248bc664fec9c17fce496fed068", + "c8e7533ad041418bbf3cf91f45ac5470", + "569afc58021141b7a94a7ac144005c72", + "3a7766d090b247aa81a86963fc2c378d", + "091f14ab9d354094867f3cf569a6f614", + "3084c3f49cda4f24aa22dbb03dff892a", + "9b82c6ecf6ad4ba09663f6e9ab04e35d", + "aff07e1f59b54da29076f3ceb9b4ac67", + "fbbec2d9fbe14cb99f9375fb74070c9c", + "9fbdef85cf5a4683a30de9399a85ff2a", + "61f3bf31fca745ddac9b292474447619", + "1dceb75e7ed2494abd56ced60d664dde", + "a68fe356ae23425ebb66d809aaf86663", + "53907d3f8e8f4069805f25b7c34f824c", + "0ba9ad3a0706425785e1e2b1c90e1356", + "fe66ef5ebc034e3aa64ab083eceea37e", + "e10010c806cc4d21b9f900996e1e88a0", + "b6b66ed3cf3548b3a4868ef2a96c6d97", + "971d88070f534d6d9bcb00205d14b303", + "6d36afa70fdd4b42bc8cdace7b804fa7", + "87e53a13bfb643b0b1adbe195ba2ae50", + "81b152aeda5348b7865a4c066e60bde1", + "81fba5a394f94eb68ffff1bb01a2bbd4" + ] + }, + "id": "Y3sqY-nIQn0S", + "outputId": "33a38205-31c9-4f2b-db1b-9966632e0bf5" + }, + "id": "Y3sqY-nIQn0S", + "execution_count": 36, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "README.md: 0%| | 0.00/853 [00:00" + ], + "image/png": "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z88PgwYNgkQiwbp1674pIcnJ+0FqpI4pCQXJvXv3RK9evYSjo6PQ09MTJiYmonbt2mL+/Ply02dSUlLExIkTRalSpYSurq4oUaKE8Pf3l6sjROb5tBk+n5qW3RRBIT7OM65UqZLQ09MTzs7OYv369ZmmCB49elS0adNG2NvbCz09PWFvby9++uknce/evUzX+Hwa3ZEjR0Tt2rWFgYGBMDU1FT4+PuL27dtydTKu9/kUxFWrVgkAcmsKZOXTKYLZyW6K4PDhw4WdnZ0wMDAQtWvXFiEhIVlO7du1a5dwcXEROjo6cs+zfv36omLFille89PzvHv3Tjg4OIhq1arJTbMSQoihQ4cKLS0tERIS8sXnoIzsfjYy7N69W1SuXFno6+sLR0dHMW3aNLFy5cosX+/du3eLWrVqyd7D7777TmzatEm2Py4uTnTq1EmYm5sLAJmmC759+1aMHz9euLq6CkNDQ6Gvry8qVaok/P39RWRkpKxedq9lVlNZk5OTxbRp00TFihWFVCoVFhYWwt3dXUycOFHExsbK1V25cqWoWrWqrF79+vXF4cOHv/hanT9/XpiYmIh69eplOe3t05jxydRAiUQiLC0tRevWrcXly5cz1Y+Ojhb9+/cXJUqUELq6usLW1lY0btxYLFu2TFYnY4rg1q1b5Y7N7nfs9OnTokmTJsLExEQYGRmJypUri/nz58u9fln9fnz+e57d34ns4sn4/bx48aKs7MyZM6JmzZrCwMBA2Nvbi99++002Lfb48eNyr1t2vzff8n6QekmEUEMbFBEREakdxwQQERFpKCYBREREGopJABERkYZiEkBERKShmAQQERFpKCYBREREGopJABERkYYqlCsGGlQdoO4QKA+9Oj9f3SFQHnqfmKruECgP2Zrq5ur5Vfl58eHqApWdK6+wJYCIiEhDFcqWACIiIoVINPu7MJMAIiLSXCq87XhBpNkpEBERkQZjSwAREWkudgcQERFpKHYHEBERkSZiSwAREWkudgcQERFpKHYHEBERkSZiSwAREWkudgcQERFpKHYHEBERkSZiSwAREWkudgcQERFpKHYHEBERkSZiSwAREWkudgcQERFpKHYHEBERkSZiSwAREWkudgcQERFpKA1PAjT72RMREWkwJgFERKS5tCSq23Jo6tSpkEgkGDJkiKwsMTER/fv3R5EiRWBsbAxf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\n" + }, + "metadata": {} + } + ] + } + ], + "metadata": { + "accelerator": "GPU", + "colab": { + "gpuType": "T4", + "provenance": [] + }, + "kernelspec": { + "display_name": "Python 3", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.16" + }, + "widgets": { + "application/vnd.jupyter.widget-state+json": { + "d4481213539642a7970f984091bf5887": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_48bfe1be537f4531a5bc170ce9a1b4bc", + "IPY_MODEL_e4c24b2a204e43839ed894bea99764d0", + "IPY_MODEL_ba8a292d16a24b8895d6986aae899565" + ], + "layout": "IPY_MODEL_b2d42fe91c084986b9ec98449ca3086e" + } + }, + "48bfe1be537f4531a5bc170ce9a1b4bc": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_b3331e3bb2ae49fe9790f34665b026b7", + "placeholder": "​", + "style": "IPY_MODEL_d5520ee91c9348f9b297072cbe7cd1c8", + "value": "modules.json: 100%" + } + }, + "e4c24b2a204e43839ed894bea99764d0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_5707665c23c9449286a0d5e2b3817755", + "max": 229, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_f109fe6c40974157afd2b2664d9d3d9a", + "value": 229 + } + }, + "ba8a292d16a24b8895d6986aae899565": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_9548e26de53f4fb7a39e96a4dfb09125", + "placeholder": "​", + "style": "IPY_MODEL_52aae43a65c442768e7bf6bea4db5291", + "value": " 229/229 [00:00<00:00, 10.0kB/s]" + } + }, + "b2d42fe91c084986b9ec98449ca3086e": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "b3331e3bb2ae49fe9790f34665b026b7": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "d5520ee91c9348f9b297072cbe7cd1c8": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "5707665c23c9449286a0d5e2b3817755": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f109fe6c40974157afd2b2664d9d3d9a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "9548e26de53f4fb7a39e96a4dfb09125": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "52aae43a65c442768e7bf6bea4db5291": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "b0cdc80f50c945d48d391d78bc0deb39": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_c3cbfaeeb6ec40a1b079fdb4962b390f", + "IPY_MODEL_cc79933cfbb7422ea91c80ad72766432", + "IPY_MODEL_866884ea8cba49cd86b255b5c12c0308" + ], + "layout": "IPY_MODEL_36246ff0dc1d4954964927206aa6535b" + } + }, + "c3cbfaeeb6ec40a1b079fdb4962b390f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_3bb11ed3e3044d84b0545341d411b529", + "placeholder": "​", + "style": "IPY_MODEL_ad929bbee45546428100f72c695ea088", + "value": "config_sentence_transformers.json: 100%" + } + }, + "cc79933cfbb7422ea91c80ad72766432": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_471ffc5f3636420981ebb5e83807af9e", + "max": 122, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_fd5ea8e78ade46e4bc0df8a9123183bd", + "value": 122 + } + }, + "866884ea8cba49cd86b255b5c12c0308": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_a6d812c943524cd288de55bc4748a76f", + "placeholder": "​", + "style": "IPY_MODEL_6e5ff24d4bf2442193a3a50688f96c59", + "value": " 122/122 [00:00<00:00, 7.02kB/s]" + } + }, + "36246ff0dc1d4954964927206aa6535b": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "3bb11ed3e3044d84b0545341d411b529": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "ad929bbee45546428100f72c695ea088": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "471ffc5f3636420981ebb5e83807af9e": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "fd5ea8e78ade46e4bc0df8a9123183bd": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "a6d812c943524cd288de55bc4748a76f": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "6e5ff24d4bf2442193a3a50688f96c59": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e359dded87284610a5f23b95c981cfce": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_296be6e8cbd44f90bc48ee595878e217", + "IPY_MODEL_5d7d1f2fb60d40d3b14e21676fdc5b09", + "IPY_MODEL_0b5105b41c934fd3a4f0280cb4764ad2" + ], + "layout": "IPY_MODEL_f2427737cc324658b61b5edff334e3e3" + } + }, + "296be6e8cbd44f90bc48ee595878e217": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_6c6b29b969cd48ca9bbc9d117140cb27", + "placeholder": "​", + "style": "IPY_MODEL_676bc186682144a0865c904774de79d0", + "value": "README.md: " + } + }, + "5d7d1f2fb60d40d3b14e21676fdc5b09": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_7180143a9dc9486eb58162a08c68f169", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_6533a341e31b4685afefd9552ff545ff", + "value": 1 + } + }, + "0b5105b41c934fd3a4f0280cb4764ad2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_74ca809b5dc048dda2c354ef1c171600", + "placeholder": "​", + "style": "IPY_MODEL_9831e82a176c49e68fb600e0daf9157d", + "value": " 3.90k/? [00:00<00:00, 119kB/s]" + } + }, + "f2427737cc324658b61b5edff334e3e3": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "6c6b29b969cd48ca9bbc9d117140cb27": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "676bc186682144a0865c904774de79d0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "7180143a9dc9486eb58162a08c68f169": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "6533a341e31b4685afefd9552ff545ff": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "74ca809b5dc048dda2c354ef1c171600": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "9831e82a176c49e68fb600e0daf9157d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "821eff4f3d0a47f8995c4310239ddd68": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_100d8adcedc843a39c20811698894af0", + "IPY_MODEL_2594a204dce6434badc22ec7df98a398", + "IPY_MODEL_076fa38ef6ad4661be46c10f06e267e5" + ], + "layout": "IPY_MODEL_c5e8c845a2c342f0841bfc17d0d17d70" + } + }, + "100d8adcedc843a39c20811698894af0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_120ffb114d584fb5852254d15a550334", + "placeholder": "​", + "style": "IPY_MODEL_7b95a9b5d41e4519b7b8cc50845cc33c", + "value": "sentence_bert_config.json: 100%" + } + }, + "2594a204dce6434badc22ec7df98a398": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_d9bef211f70b46028cf3e63de1663f42", + "max": 53, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_5f1cafb08bcd456192d54e93875f9c32", + "value": 53 + } + }, + "076fa38ef6ad4661be46c10f06e267e5": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_a7c38ba9ff684db294c4379f9ef18dc6", + "placeholder": "​", + "style": "IPY_MODEL_7028535260424956840cec2427b5ac74", + "value": " 53.0/53.0 [00:00<00:00, 1.30kB/s]" + } + }, + "c5e8c845a2c342f0841bfc17d0d17d70": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "120ffb114d584fb5852254d15a550334": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "7b95a9b5d41e4519b7b8cc50845cc33c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "d9bef211f70b46028cf3e63de1663f42": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "5f1cafb08bcd456192d54e93875f9c32": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "a7c38ba9ff684db294c4379f9ef18dc6": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "7028535260424956840cec2427b5ac74": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e7c6c64b6b774d70b78094961704c2c9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_73467ccde0904aeba7c21966878247e1", + "IPY_MODEL_21b0e0e1f9d944989e049f7de09fbd81", + "IPY_MODEL_4bf2b395eb4c43919ec19721c5dd2c7a" + ], + "layout": "IPY_MODEL_23a7ae32211643c58503a27c9c60bc1f" + } + }, + "73467ccde0904aeba7c21966878247e1": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_8363922f18924dccbd07122d22e1354e", + "placeholder": "​", + "style": "IPY_MODEL_5481b390d73d41fe92428a24bc6b4b6b", + "value": "config.json: 100%" + } + }, + "21b0e0e1f9d944989e049f7de09fbd81": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_33d57d9d1e714707b816e2e5489f3a36", + "max": 752, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_5858edfa288749f383d60ce65761662d", + "value": 752 + } + }, + "4bf2b395eb4c43919ec19721c5dd2c7a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_6d53bedf50264305bebbc23bdffb301d", + "placeholder": "​", + "style": "IPY_MODEL_e1a35f4b2be64268bd6c79650c64a442", + "value": " 752/752 [00:00<00:00, 25.3kB/s]" + } + }, + "23a7ae32211643c58503a27c9c60bc1f": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "8363922f18924dccbd07122d22e1354e": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "5481b390d73d41fe92428a24bc6b4b6b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "33d57d9d1e714707b816e2e5489f3a36": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "5858edfa288749f383d60ce65761662d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "6d53bedf50264305bebbc23bdffb301d": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "e1a35f4b2be64268bd6c79650c64a442": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "29d13cb3b7804b9180196f777c0905da": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_4e89318c122147558f4b6e4eb1085cbd", + "IPY_MODEL_abcbe0c5029d4cc4bc78cff0c580737b", + "IPY_MODEL_b2fbe45944b04e08b5f167823f02eaac" + ], + "layout": "IPY_MODEL_f4a77960be1a41d587e4ffef905cf672" + } + }, + "4e89318c122147558f4b6e4eb1085cbd": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_89c11aa917a34770ab6f1359f343843c", + "placeholder": "​", + "style": "IPY_MODEL_3433baf76bef47868c33a47185ddd3f2", + "value": "pytorch_model.bin: 100%" + } + }, + "abcbe0c5029d4cc4bc78cff0c580737b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_d95a12bdc4d04e1aa559e1c40ebc2185", + "max": 540069681, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_089536c1c06f4658adb927b4c7175d0c", + "value": 540069681 + } + }, + "b2fbe45944b04e08b5f167823f02eaac": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_f511736a5cad458bbe018e6720272458", + "placeholder": "​", + "style": "IPY_MODEL_ad58cb682e0c436da440a696c2f7769f", + "value": " 540M/540M [00:12<00:00, 87.2MB/s]" + } + }, + "f4a77960be1a41d587e4ffef905cf672": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "89c11aa917a34770ab6f1359f343843c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "3433baf76bef47868c33a47185ddd3f2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "d95a12bdc4d04e1aa559e1c40ebc2185": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "089536c1c06f4658adb927b4c7175d0c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "f511736a5cad458bbe018e6720272458": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "ad58cb682e0c436da440a696c2f7769f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "adfbd0a64a4748688cf18b40329eabbd": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_8efed691baea4c3d81b09b7265fe304f", + "IPY_MODEL_8a284d80d61a45bf9caed49cb5cca1ff", + "IPY_MODEL_159c19239bd74df183707f6df3c0393e" + ], + "layout": "IPY_MODEL_88344b2d8c1d460aaf126bfe7b72d1d6" + } + }, + "8efed691baea4c3d81b09b7265fe304f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_a6999ee1fd32479686d686ef8ecf7ac1", + "placeholder": "​", + "style": "IPY_MODEL_c41bedee8e344892af02c13aa2f6e81e", + "value": "model.safetensors: 100%" + } + }, + "8a284d80d61a45bf9caed49cb5cca1ff": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_d1c021eec24b4bfc86423c9592f6d258", + "max": 540017608, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_36def44b75c948879d1bc23f77817575", + "value": 540017608 + } + }, + "159c19239bd74df183707f6df3c0393e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_79f1a17dfc2f466787dc78d6025efd23", + "placeholder": "​", + "style": "IPY_MODEL_4d7d9aabdb954ff5bedc61b1f52712c9", + "value": " 540M/540M [00:10<00:00, 74.6MB/s]" + } + }, + "88344b2d8c1d460aaf126bfe7b72d1d6": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "a6999ee1fd32479686d686ef8ecf7ac1": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c41bedee8e344892af02c13aa2f6e81e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "d1c021eec24b4bfc86423c9592f6d258": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "36def44b75c948879d1bc23f77817575": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "79f1a17dfc2f466787dc78d6025efd23": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "4d7d9aabdb954ff5bedc61b1f52712c9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "16c096926d714eab9af5a20fa0f79e36": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_2f775f94db404873b7c2a31ee7fd8414", + "IPY_MODEL_f2baa60293e44c4b9e569294b0ecfd1d", + "IPY_MODEL_b5fa6435445f41148cfff8e49b73ba83" + ], + "layout": "IPY_MODEL_8bdfa4251dc9484692d06eaed1d8c268" + } + }, + "2f775f94db404873b7c2a31ee7fd8414": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_7eb005d909914dd38b591c2b02991b98", + "placeholder": "​", + "style": "IPY_MODEL_ebd61b485fb24caa9a04e9e2d3886166", + "value": "tokenizer_config.json: 100%" + } + }, + "f2baa60293e44c4b9e569294b0ecfd1d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_47486743481247f783221f9ec3ef767c", + "max": 313, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_10131fb3369c40b59bb7d51fdf3de06f", + "value": 313 + } + }, + "b5fa6435445f41148cfff8e49b73ba83": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_2579ff1b0d60419b92be1a821e0db8bf", + "placeholder": "​", + "style": "IPY_MODEL_75c2d793db5846078b5b167c002483eb", + "value": " 313/313 [00:00<00:00, 36.5kB/s]" + } + }, + "8bdfa4251dc9484692d06eaed1d8c268": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "7eb005d909914dd38b591c2b02991b98": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "ebd61b485fb24caa9a04e9e2d3886166": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "47486743481247f783221f9ec3ef767c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "10131fb3369c40b59bb7d51fdf3de06f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "2579ff1b0d60419b92be1a821e0db8bf": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "75c2d793db5846078b5b167c002483eb": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "d0496d936b5f4e9d8e89fbfc96e7ee5f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_9481e9793cab4e2da204eba6c176b01a", + "IPY_MODEL_1fed5a72856d4d668fbf924437a42a8b", + "IPY_MODEL_c2ef250bf5d7435da6ebc615c6dd0cf1" + ], + "layout": "IPY_MODEL_9c6a1ecf69e24e179a359de4f45f1fb2" + } + }, + "9481e9793cab4e2da204eba6c176b01a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_e05cb019a83a4dad9301e18ae9baa2a8", + "placeholder": "​", + "style": "IPY_MODEL_1d4331e12a454d4cb6921f089502080e", + "value": "vocab.txt: " + } + }, + "1fed5a72856d4d668fbf924437a42a8b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_e26844ffe82b4b85ad37566634fd1beb", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_e16aee88ddf54670880612c8b6c58c67", + "value": 1 + } + }, + "c2ef250bf5d7435da6ebc615c6dd0cf1": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_12a74f70fdae4f08aca8b4b5bfb23b51", + "placeholder": "​", + "style": "IPY_MODEL_ae99d3d971fd458a838990a5fc077b63", + "value": " 895k/? [00:00<00:00, 1.66MB/s]" + } + }, + "9c6a1ecf69e24e179a359de4f45f1fb2": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "e05cb019a83a4dad9301e18ae9baa2a8": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "1d4331e12a454d4cb6921f089502080e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e26844ffe82b4b85ad37566634fd1beb": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "e16aee88ddf54670880612c8b6c58c67": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "12a74f70fdae4f08aca8b4b5bfb23b51": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "ae99d3d971fd458a838990a5fc077b63": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "f14bfa1674aa449aa33eddc8bb13a056": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_06b1e75784394ae9a33cfec35be773c6", + "IPY_MODEL_08d43a0dd9bd4ef5a6f1c6f800d1da71", + "IPY_MODEL_e5c365ef52124c2d818093d2dda56b98" + ], + "layout": "IPY_MODEL_23358561762c4fd78b50c7c20ce68f60" + } + }, + "06b1e75784394ae9a33cfec35be773c6": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_8851747130574640942e8121cb0e57bf", + "placeholder": "​", + "style": "IPY_MODEL_186d017ace2b409687b0d855a6029042", + "value": "bpe.codes: " + } + }, + "08d43a0dd9bd4ef5a6f1c6f800d1da71": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_69eee8fbc85a4f1582d47291576323e2", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_367557d37102413d9b33ef62035dc01b", + "value": 1 + } + }, + "e5c365ef52124c2d818093d2dda56b98": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_5649a658932f40359b12eaff1ab45670", + "placeholder": "​", + "style": "IPY_MODEL_26d9be8f6c8a4d61bbc8bc45ecba2464", + "value": " 1.14M/? [00:00<00:00, 12.1MB/s]" + } + }, + "23358561762c4fd78b50c7c20ce68f60": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "8851747130574640942e8121cb0e57bf": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "186d017ace2b409687b0d855a6029042": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "69eee8fbc85a4f1582d47291576323e2": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "367557d37102413d9b33ef62035dc01b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "5649a658932f40359b12eaff1ab45670": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "26d9be8f6c8a4d61bbc8bc45ecba2464": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "bf0fe090ddf349608b093703aac4a542": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_387010c873ec4534a0260b07cc0abf61", + "IPY_MODEL_da7cf8ded5894969aec9ec3299951d8a", + "IPY_MODEL_59935dafcdfd46fcbd16d6b5ca2bfd9d" + ], + "layout": "IPY_MODEL_1616be132e4a4547bbcd91f6f3b2cdbb" + } + }, + "387010c873ec4534a0260b07cc0abf61": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_69f7d830d01948febc8b615195d4d6fe", + "placeholder": "​", + "style": "IPY_MODEL_97e613f7d07e4d8792f4ad9d0cefa4e8", + "value": "added_tokens.json: 100%" + } + }, + "da7cf8ded5894969aec9ec3299951d8a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_6977d54cb7f7479ca60b6692795b7c74", + "max": 17, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_5c24cf3cdf734dc5a7f4791d0ca520fa", + "value": 17 + } + }, + "59935dafcdfd46fcbd16d6b5ca2bfd9d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_de2210c703e84fb3ba921ff52ec9578c", + "placeholder": "​", + "style": "IPY_MODEL_7d4e353b244a4dcd9d9164cfbb94d614", + "value": " 17.0/17.0 [00:00<00:00, 484B/s]" + } + }, + "1616be132e4a4547bbcd91f6f3b2cdbb": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "69f7d830d01948febc8b615195d4d6fe": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "97e613f7d07e4d8792f4ad9d0cefa4e8": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "6977d54cb7f7479ca60b6692795b7c74": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "5c24cf3cdf734dc5a7f4791d0ca520fa": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "de2210c703e84fb3ba921ff52ec9578c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "7d4e353b244a4dcd9d9164cfbb94d614": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e8e10c3fa08e4231bcd14e94fb34d23b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_75c6567162d248f6a9e680e94f9d8c4b", + "IPY_MODEL_cc7462cf692f4e5fa6e126b839e0445e", + "IPY_MODEL_dcd24ff55bd1470ab6f8eb48406a04b5" + ], + "layout": "IPY_MODEL_1bb5222433094d419c3951f4d2d8d886" + } + }, + "75c6567162d248f6a9e680e94f9d8c4b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_ccd959eb894d4409a2c1dafdf30dca4e", + "placeholder": "​", + "style": "IPY_MODEL_8b2ffc66b96248a0a4c0c6846b157100", + "value": "special_tokens_map.json: 100%" + } + }, + "cc7462cf692f4e5fa6e126b839e0445e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_0355299c2d7e49518a0041502b4002b4", + "max": 150, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_0f3453c6012c49d7a31ae2f4d501a604", + "value": 150 + } + }, + "dcd24ff55bd1470ab6f8eb48406a04b5": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_289830a2edd5409a8e86771355846fb4", + "placeholder": "​", + "style": "IPY_MODEL_259cbdd5dbbf4c9eb204e4d2ef88b887", + "value": " 150/150 [00:00<00:00, 9.39kB/s]" + } + }, + "1bb5222433094d419c3951f4d2d8d886": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "ccd959eb894d4409a2c1dafdf30dca4e": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "8b2ffc66b96248a0a4c0c6846b157100": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "0355299c2d7e49518a0041502b4002b4": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "0f3453c6012c49d7a31ae2f4d501a604": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "289830a2edd5409a8e86771355846fb4": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "259cbdd5dbbf4c9eb204e4d2ef88b887": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e43ec7d44b6c4fea8294692cb0b490e2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_fa09498a3a864755aee4ad794ff5763e", + "IPY_MODEL_c041598711d3462686b4e2e4c7a20d6f", + "IPY_MODEL_275f2f5c78e042b6ae73dc35a2a1e441" + ], + "layout": "IPY_MODEL_6de0b5cf8a694be5bfdc5465f0ce7493" + } + }, + "fa09498a3a864755aee4ad794ff5763e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_babfc336714340e082ee33c1b3ccef5a", + "placeholder": "​", + "style": "IPY_MODEL_e5b929d7fe2543b8b32118f5367c8365", + "value": "config.json: 100%" + } + }, + "c041598711d3462686b4e2e4c7a20d6f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_b12577804a8f44e0ab14cfef5be447c4", + "max": 190, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_0f39f5b6c0ce4657a2bb3f2fbf913526", + "value": 190 + } + }, + "275f2f5c78e042b6ae73dc35a2a1e441": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_f46e31eb353d48cf9b40e69aafbb2eed", + "placeholder": "​", + "style": "IPY_MODEL_3407b16beacf4e2d81dfdb33898c16e3", + "value": " 190/190 [00:00<00:00, 20.4kB/s]" + } + }, + "6de0b5cf8a694be5bfdc5465f0ce7493": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "babfc336714340e082ee33c1b3ccef5a": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "e5b929d7fe2543b8b32118f5367c8365": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "b12577804a8f44e0ab14cfef5be447c4": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "0f39f5b6c0ce4657a2bb3f2fbf913526": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "f46e31eb353d48cf9b40e69aafbb2eed": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "3407b16beacf4e2d81dfdb33898c16e3": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "22991ea9fa854a64a6a3e767117bab2e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_169b598ffdf444e7b3bdba45b967539b", + "IPY_MODEL_eb11daddd5ed43aca8be24985c014007", + "IPY_MODEL_d05888d1d5c0468abf41a0a05c0bae3f" + ], + "layout": "IPY_MODEL_c02af79512c74d6fb0e8493b2e2b415b" + } + }, + "169b598ffdf444e7b3bdba45b967539b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_9f1aca34d91448698c7b83ce6b6eb973", + "placeholder": "​", + "style": "IPY_MODEL_6e34c407dd65441e82e71b2c071cb1a5", + "value": "modules.json: 100%" + } + }, + "eb11daddd5ed43aca8be24985c014007": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_13e2b6924fe6491cae16c8c88876f390", + "max": 229, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_76ac525fe6fe4c4bb0b7c850aaeea56f", + "value": 229 + } + }, + "d05888d1d5c0468abf41a0a05c0bae3f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_2bb21bc90fad42c79ee7740000918751", + "placeholder": "​", + "style": "IPY_MODEL_91358b9cc19a4a0ca8ecd04be0eeb5ec", + "value": " 229/229 [00:00<00:00, 25.8kB/s]" + } + }, + "c02af79512c74d6fb0e8493b2e2b415b": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "9f1aca34d91448698c7b83ce6b6eb973": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "6e34c407dd65441e82e71b2c071cb1a5": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "13e2b6924fe6491cae16c8c88876f390": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "76ac525fe6fe4c4bb0b7c850aaeea56f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "2bb21bc90fad42c79ee7740000918751": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "91358b9cc19a4a0ca8ecd04be0eeb5ec": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "0149f31f91ce4a4d8efd139e1ba80119": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_ce238b9a92dd46108c3e6d006158afaa", + "IPY_MODEL_95e4a6ef48f8487da5715922460604e1", + "IPY_MODEL_17da67a2d8f149a0b5e81b668a88a31a" + ], + "layout": "IPY_MODEL_ae02191f05854425b66d5a0be918d9fc" + } + }, + "ce238b9a92dd46108c3e6d006158afaa": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_6f70045e9d654c9c88df38783ecb32bd", + "placeholder": "​", + "style": "IPY_MODEL_526f08098973427e8cce73f2f5cda919", + "value": "config_sentence_transformers.json: 100%" + } + }, + "95e4a6ef48f8487da5715922460604e1": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_e4f87d57cffb46dd8680f2415f244280", + "max": 123, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_ad8ea4fb968d43b5b58bfd6518250ada", + "value": 123 + } + }, + "17da67a2d8f149a0b5e81b668a88a31a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_3caf36bc07e242da9709c040368f4538", + "placeholder": "​", + "style": "IPY_MODEL_f8b314185d754ad4992581508d9d752e", + "value": " 123/123 [00:00<00:00, 13.0kB/s]" + } + }, + "ae02191f05854425b66d5a0be918d9fc": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "6f70045e9d654c9c88df38783ecb32bd": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "526f08098973427e8cce73f2f5cda919": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e4f87d57cffb46dd8680f2415f244280": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "ad8ea4fb968d43b5b58bfd6518250ada": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "3caf36bc07e242da9709c040368f4538": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f8b314185d754ad4992581508d9d752e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "abbce9dd185646a28398c9a1c6aeadef": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_1efeb37ce8b945ae83fb642203755af4", + "IPY_MODEL_8ef4fa2e3a5248a3bbcfcbc607107913", + "IPY_MODEL_9b2edee1bc394197b8df7ddae09cfd7b" + ], + "layout": "IPY_MODEL_1a46a8c99cc24d59b0be5d42ff86f9fc" + } + }, + "1efeb37ce8b945ae83fb642203755af4": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_508f99b0542b498581608d3b2b4fd69f", + "placeholder": "​", + "style": "IPY_MODEL_591b5581d1c947a98a0d9755089b16ef", + "value": "README.md: " + } + }, + "8ef4fa2e3a5248a3bbcfcbc607107913": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_d8e05e9f29dc4e30973bec603dd00d0c", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_a9095d2f21654abd84bb502d8c0ceef7", + "value": 1 + } + }, + "9b2edee1bc394197b8df7ddae09cfd7b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_0c218d2bbdc2452681f39c6254ae6fa2", + "placeholder": "​", + "style": "IPY_MODEL_71c42e87d49c4e4dbf7f5c5e25971a58", + "value": " 6.46k/? [00:00<00:00, 727kB/s]" + } + }, + "1a46a8c99cc24d59b0be5d42ff86f9fc": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "508f99b0542b498581608d3b2b4fd69f": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "591b5581d1c947a98a0d9755089b16ef": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "d8e05e9f29dc4e30973bec603dd00d0c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "a9095d2f21654abd84bb502d8c0ceef7": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "0c218d2bbdc2452681f39c6254ae6fa2": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "71c42e87d49c4e4dbf7f5c5e25971a58": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "4718b1cd172b4ad488ca1b0a4b8768a0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_f5184c7b61b843a185ee174f2275e40e", + "IPY_MODEL_7cdd2648f99945589e3318bc99a6bee4", + "IPY_MODEL_fe20461e21274f56a277fbec2167b26d" + ], + "layout": "IPY_MODEL_759767a4afc347e2b1f0f7054d6ecc7c" + } + }, + "f5184c7b61b843a185ee174f2275e40e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_d88b0702e3ad4958ae2bf14228b2fe20", + "placeholder": "​", + "style": "IPY_MODEL_c5b64a08d3cc455bad8d489143a82caa", + "value": "sentence_bert_config.json: 100%" + } + }, + "7cdd2648f99945589e3318bc99a6bee4": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_0dccd6b9c88e45bbb6966cedbb4b3dc0", + "max": 53, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_8a34eb13429f49c696bf1c8f4b1fc65e", + "value": 53 + } + }, + "fe20461e21274f56a277fbec2167b26d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_4543ea0f71c54ee1b5a9a88a0e8454b7", + "placeholder": "​", + "style": "IPY_MODEL_31484c2059444376b782580c1d308d0f", + "value": " 53.0/53.0 [00:00<00:00, 4.42kB/s]" + } + }, + "759767a4afc347e2b1f0f7054d6ecc7c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "d88b0702e3ad4958ae2bf14228b2fe20": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c5b64a08d3cc455bad8d489143a82caa": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "0dccd6b9c88e45bbb6966cedbb4b3dc0": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "8a34eb13429f49c696bf1c8f4b1fc65e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "4543ea0f71c54ee1b5a9a88a0e8454b7": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "31484c2059444376b782580c1d308d0f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "46355bf25b98487196549e70071d4f6e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_9610ecbce42d4bd7b480d1b3e248af7e", + "IPY_MODEL_4b3f995db4cd45aa93f192173b896236", + "IPY_MODEL_e88d6163a3d64fbd8f682288a91c070c" + ], + "layout": "IPY_MODEL_b6bb7088a2504230bf8a5273d12050bf" + } + }, + "9610ecbce42d4bd7b480d1b3e248af7e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_8f0cfae8397a453d90349d0e40543f2c", + "placeholder": "​", + "style": "IPY_MODEL_df186100655449c9b3be2bdac440c6d8", + "value": "config.json: 100%" + } + }, + "4b3f995db4cd45aa93f192173b896236": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_1c8f4b7336344bfe9d45d49005f5d10a", + "max": 777, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_2b122b42ff094f8e97f6e0467542c016", + "value": 777 + } + }, + "e88d6163a3d64fbd8f682288a91c070c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_89be612b7f6b4a768dbfb7b59289f4fe", + "placeholder": "​", + "style": "IPY_MODEL_5ddf3c91bcc24c93b7aeefe43afc286a", + "value": " 777/777 [00:00<00:00, 42.6kB/s]" + } + }, + "b6bb7088a2504230bf8a5273d12050bf": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "8f0cfae8397a453d90349d0e40543f2c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "df186100655449c9b3be2bdac440c6d8": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "1c8f4b7336344bfe9d45d49005f5d10a": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "2b122b42ff094f8e97f6e0467542c016": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "89be612b7f6b4a768dbfb7b59289f4fe": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "5ddf3c91bcc24c93b7aeefe43afc286a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "6fd675c151df4470b42caaabfaee56e0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_01c809e2eb9f4b2da5a7a9dc08c3fd2d", + "IPY_MODEL_2f07d5f672464c33b3506ad6addec065", + "IPY_MODEL_09125bc2ba2c4473af184d2d1ae4f863" + ], + "layout": "IPY_MODEL_bc40829ed0ca481499b62232beb8f930" + } + }, + "01c809e2eb9f4b2da5a7a9dc08c3fd2d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_5cfe3904d0ae4899aabf6c4f99c5ec1b", + "placeholder": "​", + "style": "IPY_MODEL_91005ed66c1b4435b4304eb72e8da06d", + "value": "model.safetensors: 100%" + } + }, + "2f07d5f672464c33b3506ad6addec065": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_abccd96323494c2a94a19670f4b9c51b", + "max": 540015464, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_40357042a7fd4e62b6296e75a7147da9", + "value": 540015464 + } + }, + "09125bc2ba2c4473af184d2d1ae4f863": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_f187c26857b8440f8bba9c1f04a34da9", + "placeholder": "​", + "style": "IPY_MODEL_a1e9439f90b34a9ea7a6c5fc651b57e6", + "value": " 540M/540M [00:06<00:00, 133MB/s]" + } + }, + "bc40829ed0ca481499b62232beb8f930": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "5cfe3904d0ae4899aabf6c4f99c5ec1b": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "91005ed66c1b4435b4304eb72e8da06d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "abccd96323494c2a94a19670f4b9c51b": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "40357042a7fd4e62b6296e75a7147da9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "f187c26857b8440f8bba9c1f04a34da9": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "a1e9439f90b34a9ea7a6c5fc651b57e6": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "125a848084bd4871a8055b814f6ec624": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_043acf4e32c04271ad4781f846c0d110", + "IPY_MODEL_6f01e88bda2a46129876622f129e3192", + "IPY_MODEL_91abc01ca8854d878e4e824bae736c44" + ], + "layout": "IPY_MODEL_51eab1e3243c4f129a396f28dfcab6a6" + } + }, + "043acf4e32c04271ad4781f846c0d110": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_9473b9e5b8ab44ec9d484d056631cd3f", + "placeholder": "​", + "style": "IPY_MODEL_909f5da9c6bf482e8afbbbdc4116a512", + "value": "tokenizer_config.json: " + } + }, + "6f01e88bda2a46129876622f129e3192": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_a95571e77ecd42fb9a7a9a4bc9e33e10", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_e18d5fccd7694a529deaa6036dec4ec7", + "value": 1 + } + }, + "91abc01ca8854d878e4e824bae736c44": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_907795aaddba4df38f7688604b3eab74", + "placeholder": "​", + "style": "IPY_MODEL_7dea5e7d2e4446879a9379e4bcd088bb", + "value": " 1.17k/? [00:00<00:00, 17.9kB/s]" + } + }, + "51eab1e3243c4f129a396f28dfcab6a6": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "9473b9e5b8ab44ec9d484d056631cd3f": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "909f5da9c6bf482e8afbbbdc4116a512": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "a95571e77ecd42fb9a7a9a4bc9e33e10": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "e18d5fccd7694a529deaa6036dec4ec7": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "907795aaddba4df38f7688604b3eab74": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "7dea5e7d2e4446879a9379e4bcd088bb": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "9014700952184c23a21727eb4e41777d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_f687f7e95ac84d409e1f75a3beb5074d", + "IPY_MODEL_e4f7305aa73142d1b27657968550d580", + "IPY_MODEL_1fb99b83c090428286c4130011057cfd" + ], + "layout": "IPY_MODEL_88bdc241ddac4f609c6202d8d72509a2" + } + }, + "f687f7e95ac84d409e1f75a3beb5074d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_abe749a90b3c4811b53df67b3de24a06", + "placeholder": "​", + "style": "IPY_MODEL_08d8102ccdfc4eb58ff075c72d494239", + "value": "vocab.txt: " + } + }, + "e4f7305aa73142d1b27657968550d580": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_92c33a36df024e8883e38f49583e0e87", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_74774123c97f4b3d9adb9e93b82b03f3", + "value": 1 + } + }, + "1fb99b83c090428286c4130011057cfd": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_95d2cb1d40a649b3aef5886b046396ae", + "placeholder": "​", + "style": "IPY_MODEL_a3803629a1ca408ebc87b02e8bea4b8e", + "value": " 895k/? [00:00<00:00, 163kB/s]" + } + }, + "88bdc241ddac4f609c6202d8d72509a2": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "abe749a90b3c4811b53df67b3de24a06": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "08d8102ccdfc4eb58ff075c72d494239": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "92c33a36df024e8883e38f49583e0e87": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "74774123c97f4b3d9adb9e93b82b03f3": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "95d2cb1d40a649b3aef5886b046396ae": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "a3803629a1ca408ebc87b02e8bea4b8e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "04d28a100d4546258f7e2369141d9b8f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_3dc714bf04ef48699bc9e3c8c5abac97", + "IPY_MODEL_fac80fb6ca6749a99a36ee86a830e789", + "IPY_MODEL_6e3b9366ef3746eeb644e08c0c33a71c" + ], + "layout": "IPY_MODEL_bfb0fffd1a8043578049fb0f7f3c6087" + } + }, + "3dc714bf04ef48699bc9e3c8c5abac97": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_2ecb182f936544e0954c9cee38a1ebff", + "placeholder": "​", + "style": "IPY_MODEL_b6a5fed82101415080485775e50c87f2", + "value": "bpe.codes: " + } + }, + "fac80fb6ca6749a99a36ee86a830e789": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_a71434bac0f04383a1e363d1d6f0bc64", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_9b168d87abdc4efa830f16ef46473212", + "value": 1 + } + }, + "6e3b9366ef3746eeb644e08c0c33a71c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_cb7093996c4146648f20298fda2e7915", + "placeholder": "​", + "style": "IPY_MODEL_f1b97afde2444664a2c2ed06b13e6b73", + "value": " 1.14M/? [00:00<00:00, 2.13MB/s]" + } + }, + "bfb0fffd1a8043578049fb0f7f3c6087": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "2ecb182f936544e0954c9cee38a1ebff": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "b6a5fed82101415080485775e50c87f2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "a71434bac0f04383a1e363d1d6f0bc64": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "9b168d87abdc4efa830f16ef46473212": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "cb7093996c4146648f20298fda2e7915": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f1b97afde2444664a2c2ed06b13e6b73": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "6fa02c4b53e144c6acf0f5b656f00e9f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_42cc0feefef540e08b045b56fcdd3b9d", + "IPY_MODEL_7e3c39b0f53a42c8b8230050ed6cdc75", + "IPY_MODEL_9851c9e5302347d1b6b90dbe80fc26e0" + ], + "layout": "IPY_MODEL_16b0a443e3504e0294a552a248dce940" + } + }, + "42cc0feefef540e08b045b56fcdd3b9d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_90477fb74d354a8392a8ec2c32cafa1f", + "placeholder": "​", + "style": "IPY_MODEL_98ec36909ed44bc98f83204a58e24ec8", + "value": "added_tokens.json: 100%" + } + }, + "7e3c39b0f53a42c8b8230050ed6cdc75": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_48ce05c69c04491fa5a873cd4065c742", + "max": 22, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_a8827d5558ea4f80ad9ee0c236f3c531", + "value": 22 + } + }, + "9851c9e5302347d1b6b90dbe80fc26e0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_db0f214cc2e943daa043384d8e8e3bf8", + "placeholder": "​", + "style": "IPY_MODEL_53709578cd324a28a7dce04873f71f82", + "value": " 22.0/22.0 [00:00<00:00, 662B/s]" + } + }, + "16b0a443e3504e0294a552a248dce940": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "90477fb74d354a8392a8ec2c32cafa1f": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "98ec36909ed44bc98f83204a58e24ec8": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "48ce05c69c04491fa5a873cd4065c742": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "a8827d5558ea4f80ad9ee0c236f3c531": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "db0f214cc2e943daa043384d8e8e3bf8": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "53709578cd324a28a7dce04873f71f82": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "8a3528ef89d6438bad2eb15d0deb459b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_39c5c2382e12482dbf1d43c641bb3479", + "IPY_MODEL_c137b0709cd44419b1139b2418451c43", + "IPY_MODEL_8fe86ccf3d164e53be2a7dc01c0d9747" + ], + "layout": "IPY_MODEL_12270522f64c46adb001bfc7e9f9d10c" + } + }, + "39c5c2382e12482dbf1d43c641bb3479": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_c0413bfdcc1d46428f34dd4c2692b9a1", + "placeholder": "​", + "style": "IPY_MODEL_9925f9a0530b4833971ff87475efa646", + "value": "special_tokens_map.json: 100%" + } + }, + "c137b0709cd44419b1139b2418451c43": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_e2093df686864e27a48c8e317e2790a0", + "max": 167, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_627dc7cbeb9f407cb6d8d3af3866a250", + "value": 167 + } + }, + "8fe86ccf3d164e53be2a7dc01c0d9747": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_6f9584a286cb4f6c87962d132d1ac429", + "placeholder": "​", + "style": "IPY_MODEL_1d95e5bae645445b91fb09726e7aece6", + "value": " 167/167 [00:00<00:00, 6.81kB/s]" + } + }, + "12270522f64c46adb001bfc7e9f9d10c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c0413bfdcc1d46428f34dd4c2692b9a1": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "9925f9a0530b4833971ff87475efa646": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e2093df686864e27a48c8e317e2790a0": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "627dc7cbeb9f407cb6d8d3af3866a250": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "6f9584a286cb4f6c87962d132d1ac429": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "1d95e5bae645445b91fb09726e7aece6": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "cf8cdf517a8f4bd89dc2433db5a07f51": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_9a08e95b55fd48bca482096d9db68de4", + "IPY_MODEL_73f054775a4e41d4b545ff48bdde34a2", + "IPY_MODEL_4e621f2b58f34f469bc370c64bbedecc" + ], + "layout": "IPY_MODEL_22fb4d1a98eb43f1b51f4758d86ac8d4" + } + }, + "9a08e95b55fd48bca482096d9db68de4": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_1eee416e84bf457b8182f5a1de529106", + "placeholder": "​", + "style": "IPY_MODEL_c680e238d0134ab09c75781525639897", + "value": "config.json: 100%" + } + }, + "73f054775a4e41d4b545ff48bdde34a2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_f12a9468cf98454a903ab43aa49bc6a5", + "max": 270, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_1fb77d55c38d4b33a4b6fedd6ac24a3c", + "value": 270 + } + }, + "4e621f2b58f34f469bc370c64bbedecc": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_8a5e5c49891541f69129c876aac88de9", + "placeholder": "​", + "style": "IPY_MODEL_584c810783b64f86b8c37ce93f351bae", + "value": " 270/270 [00:00<00:00, 20.4kB/s]" + } + }, + "22fb4d1a98eb43f1b51f4758d86ac8d4": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "1eee416e84bf457b8182f5a1de529106": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c680e238d0134ab09c75781525639897": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "f12a9468cf98454a903ab43aa49bc6a5": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "1fb77d55c38d4b33a4b6fedd6ac24a3c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "8a5e5c49891541f69129c876aac88de9": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "584c810783b64f86b8c37ce93f351bae": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "0a677ee9d40542b89334d2498e2fa408": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_9a2fda81931047a69e8d5e765c76555a", + "IPY_MODEL_f91ed30ecbe4402ab0206180e0e00e16", + "IPY_MODEL_0b4bad43ffd341a880a4a1942b74e507" + ], + "layout": "IPY_MODEL_7db4aab2c863421bb56cb875502fe091" + } + }, + "9a2fda81931047a69e8d5e765c76555a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_264518ffad364a23afe01b7166f10882", + "placeholder": "​", + "style": "IPY_MODEL_3ce4c4943f6149bcb8693a7bca6d2f59", + "value": "config.json: 100%" + } + }, + "f91ed30ecbe4402ab0206180e0e00e16": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_2c091a747b5a4f5d81735f019ee7862f", + "max": 814, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_68e1617d49fa42748aee17d3e632ea61", + "value": 814 + } + }, + "0b4bad43ffd341a880a4a1942b74e507": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_8fbeed78ed894ac7a8860b1adabf9578", + "placeholder": "​", + "style": "IPY_MODEL_e6ee939f9a7f4b98a42986e80c1010d2", + "value": " 814/814 [00:00<00:00, 33.2kB/s]" + } + }, + "7db4aab2c863421bb56cb875502fe091": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "264518ffad364a23afe01b7166f10882": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "3ce4c4943f6149bcb8693a7bca6d2f59": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "2c091a747b5a4f5d81735f019ee7862f": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "68e1617d49fa42748aee17d3e632ea61": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "8fbeed78ed894ac7a8860b1adabf9578": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "e6ee939f9a7f4b98a42986e80c1010d2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "10e63302f87142f29093aa1d0bd75ed8": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_70cab0da0ed6436bbab28efdc29ec51b", + "IPY_MODEL_61dd928ac8c542e2b0cd3fb164e4ab3d", + "IPY_MODEL_81c94b8b2afe459dbfe886b704766cfb" + ], + "layout": "IPY_MODEL_e4f9fd57bb674d7fb70e4a55e4a1f945" + } + }, + "70cab0da0ed6436bbab28efdc29ec51b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_4fb525dc088a417684ad1455eaa20846", + "placeholder": "​", + "style": "IPY_MODEL_f6355c7ee13a41dcb6eb1659d5533e69", + "value": "model.safetensors: 100%" + } + }, + "61dd928ac8c542e2b0cd3fb164e4ab3d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_bea752ab986441159f26f4318d40bbb8", + "max": 540020308, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_43335c464b4745bfa87a5cea717ff11e", + "value": 540020308 + } + }, + "81c94b8b2afe459dbfe886b704766cfb": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_46e6d8f4a46c428ea3cde6ca188d29d1", + "placeholder": "​", + "style": "IPY_MODEL_b3eb306489e942239e2df88508586d99", + "value": " 540M/540M [00:10<00:00, 71.3MB/s]" + } + }, + "e4f9fd57bb674d7fb70e4a55e4a1f945": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "4fb525dc088a417684ad1455eaa20846": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f6355c7ee13a41dcb6eb1659d5533e69": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "bea752ab986441159f26f4318d40bbb8": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "43335c464b4745bfa87a5cea717ff11e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "46e6d8f4a46c428ea3cde6ca188d29d1": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "b3eb306489e942239e2df88508586d99": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "972743ecb36448098d16b0263637fcc9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_79b5b918e9a74959aef6c00290719e22", + "IPY_MODEL_5d6e6c0e43c9433bb4520d600f904429", + "IPY_MODEL_379d4cce3e564dfdb0458b16aa6af59f" + ], + "layout": "IPY_MODEL_74eeb531ae60411c9143bd734f9d67a2" + } + }, + "79b5b918e9a74959aef6c00290719e22": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_e403dd78277d48d1ae6e19669403a0b3", + "placeholder": "​", + "style": "IPY_MODEL_9ec47d1828574b5f828762b7bfda427b", + "value": "tokenizer_config.json: 100%" + } + }, + "5d6e6c0e43c9433bb4520d600f904429": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_9540b34c356949cd9c698ab7c0023365", + "max": 28, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_3f5b59d85ee2442ea6143ee24e9e1a4a", + "value": 28 + } + }, + "379d4cce3e564dfdb0458b16aa6af59f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_344c329bc4404d80ac28733e817d9bb3", + "placeholder": "​", + "style": "IPY_MODEL_b487e63811e142e48ae0e12ee5c075bf", + "value": " 28.0/28.0 [00:00<00:00, 1.21kB/s]" + } + }, + "74eeb531ae60411c9143bd734f9d67a2": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "e403dd78277d48d1ae6e19669403a0b3": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "9ec47d1828574b5f828762b7bfda427b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "9540b34c356949cd9c698ab7c0023365": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "3f5b59d85ee2442ea6143ee24e9e1a4a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "344c329bc4404d80ac28733e817d9bb3": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "b487e63811e142e48ae0e12ee5c075bf": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e096f87376ba495b92aa2d1896068110": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_7594a966a2bf4cb7b5445b0f0eb5ddf6", + "IPY_MODEL_c4d7523918934a8fbc95a2e25054f326", + "IPY_MODEL_7b497a73a1f3457e9c1dfc372315764d" + ], + "layout": "IPY_MODEL_b28bb843946f4884b54f460fb7635196" + } + }, + "7594a966a2bf4cb7b5445b0f0eb5ddf6": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_88c828b11d874e99a8708a593454b2db", + "placeholder": "​", + "style": "IPY_MODEL_31ec6577a619434a87264e6774cfc509", + "value": "vocab.txt: " + } + }, + "c4d7523918934a8fbc95a2e25054f326": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_28c7a09c57dc47329425f1482c0ffe41", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_99c9c1005bc542eead232b7b27013ae6", + "value": 1 + } + }, + "7b497a73a1f3457e9c1dfc372315764d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_43700f22b93c4979873b8606c3a877e9", + "placeholder": "​", + "style": "IPY_MODEL_f1e0f196fba14165b941e115f6df5897", + "value": " 895k/? [00:00<00:00, 10.5MB/s]" + } + }, + "b28bb843946f4884b54f460fb7635196": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "88c828b11d874e99a8708a593454b2db": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "31ec6577a619434a87264e6774cfc509": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "28c7a09c57dc47329425f1482c0ffe41": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "99c9c1005bc542eead232b7b27013ae6": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "43700f22b93c4979873b8606c3a877e9": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f1e0f196fba14165b941e115f6df5897": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "8009957e03944efb82e5a6b3c32c43ce": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_6691cb016f69427eb0efc7c4823bb0c2", + "IPY_MODEL_a288fdb6d0ee4ec38da8a90891601767", + "IPY_MODEL_6cb469a5dc5d4020a491595cb7cc70e9" + ], + "layout": "IPY_MODEL_fe0dbf41b35e427cb64173a32fd1c7e8" + } + }, + "6691cb016f69427eb0efc7c4823bb0c2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_641b187604ba44e4b0253da23228a04d", + "placeholder": "​", + "style": "IPY_MODEL_0db77509769f4cd78f538cdd66d310b0", + "value": "bpe.codes: " + } + }, + "a288fdb6d0ee4ec38da8a90891601767": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_67424d8c450f4ed4b2871f5bbf3da3ca", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_e6f1fcb686d84dec85078b1fbffd7e18", + "value": 1 + } + }, + "6cb469a5dc5d4020a491595cb7cc70e9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_29b7bb4969cc403189ffbd9f3ba9178b", + "placeholder": "​", + "style": "IPY_MODEL_7570bb258cb24e459871f41af82393ac", + "value": " 1.14M/? [00:00<00:00, 13.0MB/s]" + } + }, + "fe0dbf41b35e427cb64173a32fd1c7e8": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "641b187604ba44e4b0253da23228a04d": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "0db77509769f4cd78f538cdd66d310b0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "67424d8c450f4ed4b2871f5bbf3da3ca": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "e6f1fcb686d84dec85078b1fbffd7e18": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "29b7bb4969cc403189ffbd9f3ba9178b": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "7570bb258cb24e459871f41af82393ac": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "ad49bb621f6c4e83a2fceca8d39ca71b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_12374248b58d453ea5716c16c3a20367", + "IPY_MODEL_93e881e65863473c879535ea1ba8632b", + "IPY_MODEL_84eb60a1ffcf4de4848333c1dbe9eb46" + ], + "layout": "IPY_MODEL_5dccbf3832d14e58abd653b6c5a86d2d" + } + }, + "12374248b58d453ea5716c16c3a20367": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_84fab1f620e543c5969554174be551b7", + "placeholder": "​", + "style": "IPY_MODEL_746bfd281ce9401eb4ab52d1c3ef2813", + "value": "tokenizer.json: " + } + }, + "93e881e65863473c879535ea1ba8632b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_dafa0a94c29f4adbbd076f77e7f6cebd", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_7553363a7c4b48ea9fb2b99f607c12d7", + "value": 1 + } + }, + "84eb60a1ffcf4de4848333c1dbe9eb46": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_6c2c7e4dea2e44b2ab9170e0b4557bfb", + "placeholder": "​", + "style": "IPY_MODEL_1f551aa59bc949728d632a9dbe9f8057", + "value": " 3.13M/? [00:00<00:00, 7.73MB/s]" + } + }, + "5dccbf3832d14e58abd653b6c5a86d2d": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "84fab1f620e543c5969554174be551b7": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "746bfd281ce9401eb4ab52d1c3ef2813": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "dafa0a94c29f4adbbd076f77e7f6cebd": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "7553363a7c4b48ea9fb2b99f607c12d7": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "6c2c7e4dea2e44b2ab9170e0b4557bfb": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "1f551aa59bc949728d632a9dbe9f8057": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "b89322ce43754470b4baae3b7bb304a3": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_a121d4784146415795d3b622624f7f1d", + "IPY_MODEL_2985f5bda3f24df0be6d5833817a3792", + "IPY_MODEL_947a572eaf0a4f059d0c32ae5d4faaa4" + ], + "layout": "IPY_MODEL_8ef99e9a2c0c4ae3997138f72e095d9c" + } + }, + "a121d4784146415795d3b622624f7f1d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_f6675b236cbc467a9e6565d669a79d10", + "placeholder": "​", + "style": "IPY_MODEL_cec003b54afa44b6832a9fda9d7cbdc5", + "value": "README.md: " + } + }, + "2985f5bda3f24df0be6d5833817a3792": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_b50f4baeb0d949e7afd8289b06009ccf", + "max": 1, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_b479a71b0ebf41bcbdc43d6f4bf8c1c0", + "value": 1 + } + }, + "947a572eaf0a4f059d0c32ae5d4faaa4": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_a849074d7c5245a6b4a1391efa4bc0bd", + "placeholder": "​", + "style": "IPY_MODEL_15b156aa07ea4dd4bd388ee597a7d71c", + "value": " 6.10k/? [00:00<00:00, 367kB/s]" + } + }, + "8ef99e9a2c0c4ae3997138f72e095d9c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f6675b236cbc467a9e6565d669a79d10": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "cec003b54afa44b6832a9fda9d7cbdc5": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "b50f4baeb0d949e7afd8289b06009ccf": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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": "20px" + } + }, + "b479a71b0ebf41bcbdc43d6f4bf8c1c0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "a849074d7c5245a6b4a1391efa4bc0bd": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "15b156aa07ea4dd4bd388ee597a7d71c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "98faa3bf70d8496a8007d8a901c54bf9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_532698bd5225493bbb15c6ce93403cf1", + "IPY_MODEL_051720dd4c6d479daa67c18acb02618f", + "IPY_MODEL_13f0d097a06149f0a209ce9a561a2de2" + ], + "layout": "IPY_MODEL_1b3501093b25412cb5a88dbed9ce3cd8" + } + }, + "532698bd5225493bbb15c6ce93403cf1": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_16deac80d6a84e1b8da111921eb44e4c", + "placeholder": "​", + "style": "IPY_MODEL_afe233d262c44b748c9a9970385b9db2", + "value": "tokenizer_config.json: 100%" + } + }, + "051720dd4c6d479daa67c18acb02618f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_a61efd414540416daeafcd4ba618df4a", + "max": 25, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_54f751a1022b4a53a11c8e3ab344ad3f", + "value": 25 + } + }, + "13f0d097a06149f0a209ce9a561a2de2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_f9c63abf8b5d403e9f56a7684f2dfbc3", + "placeholder": "​", + "style": "IPY_MODEL_82b1501a566b4cb2890448034d4b29f6", + "value": " 25.0/25.0 [00:00<00:00, 605B/s]" + } + }, + "1b3501093b25412cb5a88dbed9ce3cd8": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "16deac80d6a84e1b8da111921eb44e4c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "afe233d262c44b748c9a9970385b9db2": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "a61efd414540416daeafcd4ba618df4a": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "54f751a1022b4a53a11c8e3ab344ad3f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "f9c63abf8b5d403e9f56a7684f2dfbc3": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "82b1501a566b4cb2890448034d4b29f6": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "f7d9de2242ca4b608eeb402771593c5c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_378edf20ef2f4f9fb8875e02ac1ea842", + "IPY_MODEL_398d3dc35b814e8dbefb5234437b1931", + "IPY_MODEL_9371e2454b3c4b3680bde2574fd590c9" + ], + "layout": "IPY_MODEL_c120ed0b3de9420d9aa53d8fe82547e4" + } + }, + "378edf20ef2f4f9fb8875e02ac1ea842": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_b479a166055c4bec9ce57f0fc5fe006a", + "placeholder": "​", + "style": "IPY_MODEL_46f07d7403ae43c687c89df8f7792746", + "value": "config.json: 100%" + } + }, + "398d3dc35b814e8dbefb5234437b1931": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_96ceca9163a646dabe23f248de52f104", + "max": 734, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_50abc9383d5b4e1ca4aa71aa90c9506b", + "value": 734 + } + }, + "9371e2454b3c4b3680bde2574fd590c9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_22d74acd144a491891c7db51f4b1b6d8", + "placeholder": "​", + "style": "IPY_MODEL_634ba0e9176440658a1184d9dbc5cfbf", + "value": " 734/734 [00:00<00:00, 35.0kB/s]" + } + }, + "c120ed0b3de9420d9aa53d8fe82547e4": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "b479a166055c4bec9ce57f0fc5fe006a": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "46f07d7403ae43c687c89df8f7792746": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "96ceca9163a646dabe23f248de52f104": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "50abc9383d5b4e1ca4aa71aa90c9506b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "22d74acd144a491891c7db51f4b1b6d8": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "634ba0e9176440658a1184d9dbc5cfbf": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "cb76542bbcd94b3a911bbccb2a19859d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_99af24b763ef4d8bafbf56140020d0f1", + "IPY_MODEL_caac715afec54062b8e95dde9ed5c019", + "IPY_MODEL_7e0e470eef474fda8aff8adb5f9f06d8" + ], + "layout": "IPY_MODEL_862d6fc7600d4383bdf33d85468a0fbf" + } + }, + "99af24b763ef4d8bafbf56140020d0f1": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_536b4de963c44875a884bbce2c10e2fe", + "placeholder": "​", + "style": "IPY_MODEL_7e6638a6902b4f69ab67d9a7efb8c1c3", + "value": "sentencepiece.bpe.model: 100%" + } + }, + "caac715afec54062b8e95dde9ed5c019": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_f87b89494ee8440889c301e45416a933", + "max": 5069051, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_678ac1280e9e491693a27a6b1382d853", + "value": 5069051 + } + }, + "7e0e470eef474fda8aff8adb5f9f06d8": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_e9ba00073249437ba23dc4d6d925bf76", + "placeholder": "​", + "style": "IPY_MODEL_2c73eb743acc45a894028488d586f646", + "value": " 5.07M/5.07M [00:00<00:00, 17.4MB/s]" + } + }, + "862d6fc7600d4383bdf33d85468a0fbf": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "536b4de963c44875a884bbce2c10e2fe": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "7e6638a6902b4f69ab67d9a7efb8c1c3": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "f87b89494ee8440889c301e45416a933": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "678ac1280e9e491693a27a6b1382d853": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e9ba00073249437ba23dc4d6d925bf76": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "2c73eb743acc45a894028488d586f646": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "0cb8abbc3daa488aa50df99a64b64dff": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_cd8e5c17eac34f249a6dc8bb2580029d", + "IPY_MODEL_42f6f8d0fe364f778d4eaf763e64faa5", + "IPY_MODEL_f69239a3d2f741988af0e8afe772d21f" + ], + "layout": "IPY_MODEL_1de9566d6b484dc8ab9583e9896791f5" + } + }, + "cd8e5c17eac34f249a6dc8bb2580029d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_6884e16652e84ea4bff01d2070ef4994", + "placeholder": "​", + "style": "IPY_MODEL_dea2963674834b29a33533e20396012c", + "value": "special_tokens_map.json: 100%" + } + }, + "42f6f8d0fe364f778d4eaf763e64faa5": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_b05897b572c7415fbd245747c1e07f97", + "max": 150, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_ac35a885263f4b009994d1c2808290e0", + "value": 150 + } + }, + "f69239a3d2f741988af0e8afe772d21f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_424a8514256f44ab8efeaf106dd2ae9f", + "placeholder": "​", + "style": "IPY_MODEL_c94ee0650dc64002b637a571ff96738b", + "value": " 150/150 [00:00<00:00, 14.7kB/s]" + } + }, + "1de9566d6b484dc8ab9583e9896791f5": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "6884e16652e84ea4bff01d2070ef4994": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "dea2963674834b29a33533e20396012c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "b05897b572c7415fbd245747c1e07f97": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "ac35a885263f4b009994d1c2808290e0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "424a8514256f44ab8efeaf106dd2ae9f": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c94ee0650dc64002b637a571ff96738b": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "bca827bd34f64420aeacd584b39904c8": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_bbc1ed8924964065a7b97e1f62a4c2c8", + "IPY_MODEL_27a3ef16eafd48d788505dba9a014a78", + "IPY_MODEL_059bc19bb2864b58a821a8c674227dc1" + ], + "layout": "IPY_MODEL_d8b4095ff68448b2a47e351eb06fbeda" + } + }, + "bbc1ed8924964065a7b97e1f62a4c2c8": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_f0fedd6437ab4b1097a93047c85b21c4", + "placeholder": "​", + "style": "IPY_MODEL_31e22c0685e648cf87faa7af6306e41d", + "value": "model.safetensors: 100%" + } + }, + "27a3ef16eafd48d788505dba9a014a78": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_2905db11592e4f21a7e2093a59175694", + "max": 2239626978, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_38454323a8c5422e9105aa9437b44316", + "value": 2239626978 + } + }, + "059bc19bb2864b58a821a8c674227dc1": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_fe498ee9204446e6830c47e12b4f33ca", + "placeholder": "​", + "style": "IPY_MODEL_9e4560edd80147bf9e1a00854d54e33d", + "value": " 2.24G/2.24G [00:30<00:00, 131MB/s]" + } + }, + "d8b4095ff68448b2a47e351eb06fbeda": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f0fedd6437ab4b1097a93047c85b21c4": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "31e22c0685e648cf87faa7af6306e41d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "2905db11592e4f21a7e2093a59175694": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "38454323a8c5422e9105aa9437b44316": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "fe498ee9204446e6830c47e12b4f33ca": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "9e4560edd80147bf9e1a00854d54e33d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "875e0db07c904d678c0778ea301af430": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_1ba5022eb0374757ab4c1a7f1d80ba1c", + "IPY_MODEL_7334d17e98bd4a1ca842f3bb46d06c3c", + "IPY_MODEL_4e9dc87390944621a377a36cfcc4e252" + ], + "layout": "IPY_MODEL_06536a6b1d6a4c1c9d0d93449be0ad44" + } + }, + "1ba5022eb0374757ab4c1a7f1d80ba1c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_83238ff734ec4ae2afe058282745a797", + "placeholder": "​", + "style": "IPY_MODEL_f0fba469d3e743efac8607cc6597edd9", + "value": "README.md: 100%" + } + }, + "7334d17e98bd4a1ca842f3bb46d06c3c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_647dd61f13804d36ad333a17cabff0b6", + "max": 853, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_524660188cbd41ca9bd6a007903d15d4", + "value": 853 + } + }, + "4e9dc87390944621a377a36cfcc4e252": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_09646d43211748e5a5a67d08cdf4d7f4", + "placeholder": "​", + "style": "IPY_MODEL_631742ecb067431785b3127d81cacf5e", + "value": " 853/853 [00:00<00:00, 94.7kB/s]" + } + }, + "06536a6b1d6a4c1c9d0d93449be0ad44": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "83238ff734ec4ae2afe058282745a797": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f0fba469d3e743efac8607cc6597edd9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "647dd61f13804d36ad333a17cabff0b6": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "524660188cbd41ca9bd6a007903d15d4": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "09646d43211748e5a5a67d08cdf4d7f4": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "631742ecb067431785b3127d81cacf5e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "e7a73f5ae7f54504a7737ebeea9c816e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_1a61e2b3ed3442cd82daadb71e2d149d", + "IPY_MODEL_acc9d7a653a841448c8b92d904a3c474", + "IPY_MODEL_567f73389e864a36acad39dd8f14243d" + ], + "layout": "IPY_MODEL_e2b762153c58466b8ac93224835050ae" + } + }, + "1a61e2b3ed3442cd82daadb71e2d149d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_56f72b13c7184931a71893022768d731", + "placeholder": "​", + "style": "IPY_MODEL_291eb5c5bad8477b9eed6da608180892", + "value": "data/train-00000-of-00001.parquet: 100%" + } + }, + "acc9d7a653a841448c8b92d904a3c474": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_9fa590f637034c9888404c78a46431f5", + "max": 8071153, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_71382bf102494f829ba1a23f8aa681c5", + "value": 8071153 + } + }, + "567f73389e864a36acad39dd8f14243d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_52f4cdc51f7842d1b29fba390235c49f", + "placeholder": "​", + "style": "IPY_MODEL_edaa3acd8a5e4dc88ae3cf334bafb87e", + "value": " 8.07M/8.07M [00:00<00:00, 12.0MB/s]" + } + }, + "e2b762153c58466b8ac93224835050ae": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "56f72b13c7184931a71893022768d731": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "291eb5c5bad8477b9eed6da608180892": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "9fa590f637034c9888404c78a46431f5": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "71382bf102494f829ba1a23f8aa681c5": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "52f4cdc51f7842d1b29fba390235c49f": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "edaa3acd8a5e4dc88ae3cf334bafb87e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "43a0030de1004edabb802c42195f2398": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_a2e731dffb724f61bae96c0991edac4e", + "IPY_MODEL_243b2adcd4f14a55b1302f91c90f9efe", + "IPY_MODEL_efba264f856d43599674ba3404602ff1" + ], + "layout": "IPY_MODEL_b81a94392a9c47d584e49ff49afa8969" + } + }, + "a2e731dffb724f61bae96c0991edac4e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_d5f8f262ddff40b692a50d65e59e37fa", + "placeholder": "​", + "style": "IPY_MODEL_c7a9e328774c46d6be2d864300de3f83", + "value": "data/dev-00000-of-00001.parquet: 100%" + } + }, + "243b2adcd4f14a55b1302f91c90f9efe": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_ba7b22eb80cb4724a1c52e3d853e0d5a", + "max": 1225466, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_30c2cdbc32b34e9eb9cc6aba6316e690", + "value": 1225466 + } + }, + "efba264f856d43599674ba3404602ff1": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_7d74b251823a4dd1980103c79d909f33", + "placeholder": "​", + "style": "IPY_MODEL_db2b704a6eb540c3be1a20e2fcd48fc9", + "value": " 1.23M/1.23M [00:00<00:00, 4.10MB/s]" + } + }, + "b81a94392a9c47d584e49ff49afa8969": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "d5f8f262ddff40b692a50d65e59e37fa": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c7a9e328774c46d6be2d864300de3f83": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "ba7b22eb80cb4724a1c52e3d853e0d5a": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "30c2cdbc32b34e9eb9cc6aba6316e690": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "7d74b251823a4dd1980103c79d909f33": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "db2b704a6eb540c3be1a20e2fcd48fc9": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "531c484f2ec9491fadb12aea9f1fa813": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_a2b6318f6f9048ba9877158fba4ebb81", + "IPY_MODEL_f6f64b852a5c46fbbf143dcec8ae5375", + "IPY_MODEL_3e4d69484b2b4658aae0192b720b074c" + ], + "layout": "IPY_MODEL_5a0373962d2e4fa4812be47d402aa0ee" + } + }, + "a2b6318f6f9048ba9877158fba4ebb81": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_e6de57c1d5b64b80ba96c84d149e60be", + "placeholder": "​", + "style": "IPY_MODEL_ef48ed65c51e4981b35f67fff6a0c022", + "value": "data/test-00000-of-00001.parquet: 100%" + } + }, + "f6f64b852a5c46fbbf143dcec8ae5375": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_217a47a1a97b45bdbd9691a709883056", + "max": 2484723, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_7390aeaf50044d72b7c499a0eba0322c", + "value": 2484723 + } + }, + "3e4d69484b2b4658aae0192b720b074c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_914b57f67f354d3ca6a529290acbae95", + "placeholder": "​", + "style": "IPY_MODEL_8d490218619845359b55647b18f9154f", + "value": " 2.48M/2.48M [00:00<00:00, 9.63MB/s]" + } + }, + "5a0373962d2e4fa4812be47d402aa0ee": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "e6de57c1d5b64b80ba96c84d149e60be": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "ef48ed65c51e4981b35f67fff6a0c022": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "217a47a1a97b45bdbd9691a709883056": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "7390aeaf50044d72b7c499a0eba0322c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "914b57f67f354d3ca6a529290acbae95": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "8d490218619845359b55647b18f9154f": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "c596eb330aab4ecf9ffee09889e7f846": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_81f929319ff444229f3afa1c51e5d128", + "IPY_MODEL_bf65956bd6ea43ef804e872a85981a07", + "IPY_MODEL_1778cfb90ac3405fb0c8de307e98a915" + ], + "layout": "IPY_MODEL_85cb0ec82d3b47c79a75761e85be37d4" + } + }, + "81f929319ff444229f3afa1c51e5d128": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_86c21f4971b24ae0b8385518e1520e88", + "placeholder": "​", + "style": "IPY_MODEL_a8c3f0be2d1f4f5792ceb95bbc60f2ef", + "value": "Generating train split: 100%" + } + }, + "bf65956bd6ea43ef804e872a85981a07": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_ecf63e6c2a4040f6b848856ea415341c", + "max": 5062, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_b78adef3c81d407e9bbd927246a9efda", + "value": 5062 + } + }, + "1778cfb90ac3405fb0c8de307e98a915": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_55536d3805df4acba4f3df1f78c65bea", + "placeholder": "​", + "style": "IPY_MODEL_2373564aaa664cd4ba7d3e9335bd46dd", + "value": " 5062/5062 [00:00<00:00, 5504.59 examples/s]" + } + }, + "85cb0ec82d3b47c79a75761e85be37d4": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "86c21f4971b24ae0b8385518e1520e88": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "a8c3f0be2d1f4f5792ceb95bbc60f2ef": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "ecf63e6c2a4040f6b848856ea415341c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "b78adef3c81d407e9bbd927246a9efda": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "55536d3805df4acba4f3df1f78c65bea": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "2373564aaa664cd4ba7d3e9335bd46dd": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "75ce7d9b748a449dbe22f8d04cf1a9d7": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_d8c5b2f1c62246cea3acacd1dc1a4566", + "IPY_MODEL_dc08c731af2c4d7199f3c766baa68548", + "IPY_MODEL_92b2fc4775b4407bb66dfb0da9ea1659" + ], + "layout": "IPY_MODEL_7b3296ab411b46608e9e1550e0f7b267" + } + }, + "d8c5b2f1c62246cea3acacd1dc1a4566": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_c484ff113399431fae56f046ed9700db", + "placeholder": "​", + "style": "IPY_MODEL_95177ade0d6d47a1a6ff884e611ab5a5", + "value": "Generating dev split: 100%" + } + }, + "dc08c731af2c4d7199f3c766baa68548": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_3725b7cc1e5d4ece871a1c64c805e61e", + "max": 723, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_f4bf88f2000748e2b6facbb74af08304", + "value": 723 + } + }, + "92b2fc4775b4407bb66dfb0da9ea1659": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_9730480d651948d28884fef186d74c20", + "placeholder": "​", + "style": "IPY_MODEL_a4312b47da264154b56be3baa2efed22", + "value": " 723/723 [00:00<00:00, 20357.01 examples/s]" + } + }, + "7b3296ab411b46608e9e1550e0f7b267": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c484ff113399431fae56f046ed9700db": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "95177ade0d6d47a1a6ff884e611ab5a5": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "3725b7cc1e5d4ece871a1c64c805e61e": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "f4bf88f2000748e2b6facbb74af08304": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "9730480d651948d28884fef186d74c20": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "a4312b47da264154b56be3baa2efed22": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "792b0fd7d4684c6a854f2dd8f1e82311": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_b31a0f0c16974d2a9b2e5289b705e639", + "IPY_MODEL_9c3412f3629e4c218f70f93119c56068", + "IPY_MODEL_bdae447277714595ab3115fb9dad41d0" + ], + "layout": "IPY_MODEL_62fc4b2b88394b65adbc5a9b8136adf5" + } + }, + "b31a0f0c16974d2a9b2e5289b705e639": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_1fa79b9664bf4c3dbe15c7827dde5001", + "placeholder": "​", + "style": "IPY_MODEL_0dee6400aff84a30837beedbb7bf8563", + "value": "Generating test split: 100%" + } + }, + "9c3412f3629e4c218f70f93119c56068": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_0a6a37dcf0e346c7b4c0474a3dcd4d7d", + "max": 1447, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_c03480c8dec74597ab3955d336720b77", + "value": 1447 + } + }, + "bdae447277714595ab3115fb9dad41d0": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_66dbbfa05161490da0f9aba1696b5355", + "placeholder": "​", + "style": "IPY_MODEL_21cab9a9ef124508b205c332bea271c6", + "value": " 1447/1447 [00:00<00:00, 30215.71 examples/s]" + } + }, + "62fc4b2b88394b65adbc5a9b8136adf5": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "1fa79b9664bf4c3dbe15c7827dde5001": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "0dee6400aff84a30837beedbb7bf8563": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "0a6a37dcf0e346c7b4c0474a3dcd4d7d": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c03480c8dec74597ab3955d336720b77": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "66dbbfa05161490da0f9aba1696b5355": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "21cab9a9ef124508b205c332bea271c6": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "1485619287b2441989cd06e74991539e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_c2124a095e15417889a02d06a6c22bb4", + "IPY_MODEL_bf2ccdd055134df1bf2d6893e46979bd", + "IPY_MODEL_edd583a5ed3b41e79113c7568faa6243" + ], + "layout": "IPY_MODEL_9708abd06665492a84b23c7106e9050c" + } + }, + "c2124a095e15417889a02d06a6c22bb4": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_a5571da52fd048db91eebf1bfc8f7620", + "placeholder": "​", + "style": "IPY_MODEL_72387183e7a24311b08b4fafc4304ade", + "value": "Map: 100%" + } + }, + "bf2ccdd055134df1bf2d6893e46979bd": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_caddac85b9a442229915a95ed17cfbf6", + "max": 5062, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_c712d26c2947433c8a2d7d0151985310", + "value": 5062 + } + }, + "edd583a5ed3b41e79113c7568faa6243": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_5d7c55d04cb74bff97ac410df2aebdd1", + "placeholder": "​", + "style": "IPY_MODEL_1da35248bc664fec9c17fce496fed068", + "value": " 5062/5062 [00:00<00:00, 9964.81 examples/s]" + } + }, + "9708abd06665492a84b23c7106e9050c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "a5571da52fd048db91eebf1bfc8f7620": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "72387183e7a24311b08b4fafc4304ade": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "caddac85b9a442229915a95ed17cfbf6": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "c712d26c2947433c8a2d7d0151985310": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "5d7c55d04cb74bff97ac410df2aebdd1": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "1da35248bc664fec9c17fce496fed068": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "c8e7533ad041418bbf3cf91f45ac5470": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_569afc58021141b7a94a7ac144005c72", + "IPY_MODEL_3a7766d090b247aa81a86963fc2c378d", + "IPY_MODEL_091f14ab9d354094867f3cf569a6f614" + ], + "layout": "IPY_MODEL_3084c3f49cda4f24aa22dbb03dff892a" + } + }, + "569afc58021141b7a94a7ac144005c72": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_9b82c6ecf6ad4ba09663f6e9ab04e35d", + "placeholder": "​", + "style": "IPY_MODEL_aff07e1f59b54da29076f3ceb9b4ac67", + "value": "Map: 100%" + } + }, + "3a7766d090b247aa81a86963fc2c378d": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_fbbec2d9fbe14cb99f9375fb74070c9c", + "max": 723, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_9fbdef85cf5a4683a30de9399a85ff2a", + "value": 723 + } + }, + "091f14ab9d354094867f3cf569a6f614": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_61f3bf31fca745ddac9b292474447619", + "placeholder": "​", + "style": "IPY_MODEL_1dceb75e7ed2494abd56ced60d664dde", + "value": " 723/723 [00:00<00:00, 7264.18 examples/s]" + } + }, + "3084c3f49cda4f24aa22dbb03dff892a": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "9b82c6ecf6ad4ba09663f6e9ab04e35d": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "aff07e1f59b54da29076f3ceb9b4ac67": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "fbbec2d9fbe14cb99f9375fb74070c9c": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "9fbdef85cf5a4683a30de9399a85ff2a": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "61f3bf31fca745ddac9b292474447619": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "1dceb75e7ed2494abd56ced60d664dde": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "a68fe356ae23425ebb66d809aaf86663": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HBoxModel", + "model_module_version": "1.5.0", + "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_53907d3f8e8f4069805f25b7c34f824c", + "IPY_MODEL_0ba9ad3a0706425785e1e2b1c90e1356", + "IPY_MODEL_fe66ef5ebc034e3aa64ab083eceea37e" + ], + "layout": "IPY_MODEL_e10010c806cc4d21b9f900996e1e88a0" + } + }, + "53907d3f8e8f4069805f25b7c34f824c": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_b6b66ed3cf3548b3a4868ef2a96c6d97", + "placeholder": "​", + "style": "IPY_MODEL_971d88070f534d6d9bcb00205d14b303", + "value": "Map: 100%" + } + }, + "0ba9ad3a0706425785e1e2b1c90e1356": { + "model_module": "@jupyter-widgets/controls", + "model_name": "FloatProgressModel", + "model_module_version": "1.5.0", + "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_6d36afa70fdd4b42bc8cdace7b804fa7", + "max": 1447, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_87e53a13bfb643b0b1adbe195ba2ae50", + "value": 1447 + } + }, + "fe66ef5ebc034e3aa64ab083eceea37e": { + "model_module": "@jupyter-widgets/controls", + "model_name": "HTMLModel", + "model_module_version": "1.5.0", + "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_81b152aeda5348b7865a4c066e60bde1", + "placeholder": "​", + "style": "IPY_MODEL_81fba5a394f94eb68ffff1bb01a2bbd4", + "value": " 1447/1447 [00:00<00:00, 8461.17 examples/s]" + } + }, + "e10010c806cc4d21b9f900996e1e88a0": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "b6b66ed3cf3548b3a4868ef2a96c6d97": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "971d88070f534d6d9bcb00205d14b303": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "6d36afa70fdd4b42bc8cdace7b804fa7": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "87e53a13bfb643b0b1adbe195ba2ae50": { + "model_module": "@jupyter-widgets/controls", + "model_name": "ProgressStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + }, + "81b152aeda5348b7865a4c066e60bde1": { + "model_module": "@jupyter-widgets/base", + "model_name": "LayoutModel", + "model_module_version": "1.2.0", + "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 + } + }, + "81fba5a394f94eb68ffff1bb01a2bbd4": { + "model_module": "@jupyter-widgets/controls", + "model_name": "DescriptionStyleModel", + "model_module_version": "1.5.0", + "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": "" + } + } + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file