{
  "cells": [
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "4spPB1okEaLy"
      },
      "source": [
        "#  🔍 Improve retrieval by embedding meaningful metadata 🏷️\n",
        "\n",
        "\n",
        "*Notebook by [Stefano Fiorucci](https://github.com/anakin87)*\n",
        "\n",
        "In this notebook, I do some experiments on embedding meaningful metadata to improve Document retrieval."
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 1,
      "metadata": {
        "id": "R_Abekd7m0Ps"
      },
      "outputs": [],
      "source": [
        "%%capture\n",
        "! pip install wikipedia haystack-ai sentence-transformers-haystack rich"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 2,
      "metadata": {
        "id": "oZxQ0sY2I8fL"
      },
      "outputs": [],
      "source": [
        "import rich"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "FN3CR1uGtTxH"
      },
      "source": [
        "## Load data from Wikipedia\n",
        "\n",
        "We are going to download the Wikipedia pages related to some bands, using the python library `wikipedia`.\n",
        "\n",
        "These pages are converted into Haystack Documents."
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 3,
      "metadata": {
        "id": "M1JMji_Vm289"
      },
      "outputs": [],
      "source": [
        "some_bands=\"\"\"The Beatles\n",
        "Rolling stones\n",
        "Dire Straits\n",
        "The Cure\n",
        "The Smiths\"\"\".split(\"\\n\")"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 4,
      "metadata": {
        "id": "hsWE_glDoqVh"
      },
      "outputs": [],
      "source": [
        "import wikipedia\n",
        "wikipedia.set_user_agent(\"haystack-cookbook (https://github.com/deepset-ai/haystack-cookbook)\")\n",
        "from haystack.dataclasses import Document\n",
        "\n",
        "raw_docs=[]\n",
        "\n",
        "for title in some_bands:\n",
        "    page = wikipedia.page(title=title, auto_suggest=False)\n",
        "    doc = Document(content=page.content, meta={\"title\": page.title, \"url\":page.url})\n",
        "    raw_docs.append(doc)"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "sAYcX3qU3HVn"
      },
      "source": [
        "## 🔧 Setup the experiment"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "-JVo2FlEtbTZ"
      },
      "source": [
        "### Utility functions to create Pipelines\n",
        "\n",
        "The **indexing Pipeline** transforms the Documents and stores them (with vectors) in a Document Store. The **retrieval Pipeline** takes a query as input and perform the vector search.\n",
        "\n",
        "\n",
        "I build some utility functions to create different indexing and retrieval Pipelines.\n",
        "\n",
        "In fact, I am interested in comparing the standard approach (where we only embed text) with the embedding metadata strategy (we embed text + meaningful metadata).\n",
        "\n"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 5,
      "metadata": {
        "id": "kLZ8HO4kpREU"
      },
      "outputs": [],
      "source": [
        "from haystack import Pipeline\n",
        "from haystack.document_stores.in_memory import InMemoryDocumentStore\n",
        "from haystack.components.preprocessors import DocumentCleaner, DocumentSplitter\n",
        "from haystack_integrations.components.embedders.sentence_transformers import SentenceTransformersTextEmbedder, SentenceTransformersDocumentEmbedder\n",
        "from haystack.components.writers import DocumentWriter\n",
        "from haystack.document_stores.types import DuplicatePolicy\n",
        "from haystack.components.retrievers.in_memory import InMemoryEmbeddingRetriever\n",
        "from haystack.utils import ComponentDevice"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 6,
      "metadata": {
        "id": "htqK8XSTwOzP"
      },
      "outputs": [],
      "source": [
        "def create_indexing_pipeline(document_store, metadata_fields_to_embed):\n",
        "\n",
        "  indexing = Pipeline()\n",
        "  indexing.add_component(\"cleaner\", DocumentCleaner())\n",
        "  indexing.add_component(\"splitter\", DocumentSplitter(split_by='sentence', split_length=2))\n",
        "\n",
        "  # in the following componente, we can specify the parameter `metadata_fields_to_embed`, with the metadata to embed\n",
        "  indexing.add_component(\"doc_embedder\", SentenceTransformersDocumentEmbedder(model=\"thenlper/gte-large\",\n",
        "                                                                              device=ComponentDevice.from_str(\"cuda:0\"),\n",
        "                                                                              meta_fields_to_embed=metadata_fields_to_embed)\n",
        "  )\n",
        "  indexing.add_component(\"writer\", DocumentWriter(document_store=document_store, policy=DuplicatePolicy.OVERWRITE))\n",
        "\n",
        "  indexing.connect(\"cleaner\", \"splitter\")\n",
        "  indexing.connect(\"splitter\", \"doc_embedder\")\n",
        "  indexing.connect(\"doc_embedder\", \"writer\")\n",
        "\n",
        "  return indexing\n"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 7,
      "metadata": {
        "id": "TOzjzUuaCbFI"
      },
      "outputs": [],
      "source": [
        "def create_retrieval_pipeline(document_store):\n",
        "\n",
        "  retrieval = Pipeline()\n",
        "  retrieval.add_component(\"text_embedder\", SentenceTransformersTextEmbedder(model=\"thenlper/gte-large\",\n",
        "                                                                            device=ComponentDevice.from_str(\"cuda:0\")))\n",
        "  retrieval.add_component(\"retriever\", InMemoryEmbeddingRetriever(document_store=document_store, scale_score=False, top_k=3))\n",
        "\n",
        "  retrieval.connect(\"text_embedder\", \"retriever\")\n",
        "\n",
        "  return retrieval"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "bu8xMz-A1axx"
      },
      "source": [
        "###  Create the Pipelines"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "qnGGIIQIGUqZ"
      },
      "source": [
        "Let's define 2 Document Stores, to compare the different approaches."
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 8,
      "metadata": {
        "id": "7vgQ3G3GwQ83"
      },
      "outputs": [],
      "source": [
        "document_store = InMemoryDocumentStore(embedding_similarity_function=\"cosine\")\n",
        "document_store_w_embedded_metadata = InMemoryDocumentStore(embedding_similarity_function=\"cosine\")"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "oTIo-x0c18n3"
      },
      "source": [
        "Now, I create the 2 indexing pipelines and run them."
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 9,
      "metadata": {
        "id": "FP2yffvZ2G-d"
      },
      "outputs": [],
      "source": [
        "indexing_pipe_std = create_indexing_pipeline(document_store=document_store, metadata_fields_to_embed=[])\n",
        "\n",
        "# here we specify the fields to embed\n",
        "# we select the field `title`, containing the name of the band\n",
        "indexing_pipe_w_embedded_metadata = create_indexing_pipeline(document_store=document_store_w_embedded_metadata, metadata_fields_to_embed=[\"title\"])"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 10,
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 799,
          "referenced_widgets": [
            "ef715191c9f94002b755a1ef108c0302",
            "a7ea3010410b460c8fabbb115786db2e",
            "164a148ff052430797da54028837390a",
            "c5f3b944c3ab4b239a0f6b21b9ddf3f6",
            "80234a234ba44d769c28a67337f89561",
            "42b1102285174859aa7b3d6ca3c4b2a2",
            "72c396bef5e04e91b012595e8d94d6ef",
            "d7a1edbfaea94123ab5f438b56c87ed8",
            "df085cb992eb4111ae6740f3d6de6dc1",
            "0afba6378ce94b7cba19c02383d82138",
            "51a92dc3f5d748c8b27a1a7f3eb7e6b4",
            "a394d242b6dd453ca1ca28da27b782df",
            "91b5b604f0c947388b4bd9dd7ef1bc16",
            "dc759cc2e9ea4014a73374590744a662",
            "dd11f701c64b4504b94669de9840f62a",
            "8f18428d73824999947958c0a0380765",
            "adc4842a46974ff3854bdbddcfb35f2c",
            "3a9d86cf0e6e4a9ca564d0994df2387c",
            "141043ce962d4ca684d089e7dfecfaf2",
            "866a2b8bc8f84429b35e01a5adb7f7a7",
            "a67ff3e7045341398610e2c273e310f3",
            "31b35c827f744abf885d89fb4d5a59f2",
            "85801cd06c5643eb9f0357b4d0cbd192",
            "9cee63ba18bd4a828d7a8b1a1c061c5b",
            "00b0cd4e965e4dd9a4e0ffbe024e7afa",
            "a8a49aa5991149ab82eabe45d6f4f9d1",
            "6eb22b9846694246a519c24c9b464544",
            "deb4bba3ecff480bad7f4caae8d34a34",
            "6550a8d9a948412ca9a397bac5757b65",
            "e1a86735734842d488780957a4936cb3",
            "b4a1d0b6b2934e1cb028e142cd3cd969",
            "d802291bed0d4d21973bde6be951eb5c",
            "ba1b372f506a48f399213088d3344153",
            "2838945683664b1aae3e79f58d248ff7",
            "e2593df38ffe474fba529c07bc1a6e84",
            "c29a8e4430ad4feabc7ef9cd2a4927db",
            "b95d92d85c08441e8d6d8d4cf6f47626",
            "9a33cd0228054fb497003c240a15ed9f",
            "735c8cc77bc4451689f8ea35f5bdc346",
            "96181b8aecc24872bc5489684cf23df1",
            "1a91b6bc31a44a759d8684021a89846d",
            "e62ed59d422f41f3993e5dc46fa1558d",
            "3e12bae86269467f87fadd8a8d77fee4",
            "f7dd70f7a6c04a32a8af6a8a4a5da06f",
            "62a307b5846c4ac985c645a82f7fe4bf",
            "db5b5702e2eb405e9382548172d4b0da",
            "a09a7166b5bd4a1b9989452c4dc2a6ad",
            "cf217e27d1034c7ab5d7bec5dbb81df3",
            "7997002e4c4549a086fa89f561478299",
            "62af02903d7f4da7b7fe65da03988838",
            "7569af40cf104b4e8f1ec818b41473be",
            "b55da1de36dd4d51949d06ba35e04ecd",
            "0b28d570086349dead9d419764eda7ae",
            "00bdb521e52e47f7be4758eb2bdc1143",
            "11df5614f4514c27befc60a71fa9943c",
            "eca6e17a3a6849a2a46f13c78f04959a",
            "bbce5355895749bcb9c588883dd3d7a9",
            "644043e16c0b4c25bf1ec7897beb0827",
            "e0db5b6596224fe091a412394c0fed6a",
            "8da172ebc51a4f73a759847e422bac00",
            "a6c096ae09f847b7a5d71bf6aff7b4e3",
            "fd8fb98fd4e14c868d90919c80b56576",
            "9cb64bcb98ae4d898472e259dfd5155c",
            "d4d17ec9c65f4e2db103ff7470928c71",
            "9c91a15c9a504eb28437918ad5ccaa00",
            "6ac443eb40cf4bbcbec2fc3a3520651e",
            "3a3e80d216044c029b0d4ccd880e4efa",
            "771eef12136747849fdaf7d1ef1c6611",
            "eceaf58791f44284ab35eb6c5d6bad48",
            "48d609cede8b43a6bd9aa575eb1a60bd",
            "577b8ff789fe45ab862ca01e6ab6d612",
            "31a3379c229e47258a0a15e90802dfbc",
            "33356934e7954d88a118f4fc11ea94c1",
            "622594a7a4174ca7b954d3fd8825c872",
            "4563c9ce63ed46128ebbb35cdeb3b925",
            "67c9a21408bd453bb7e7e3b37d01ac58",
            "2c3b933e85154bbdb14309bc29490b8d",
            "1c776397ab7646958c9f5083979c26ad",
            "d6b201054da545dabce4f37f8ce09be4",
            "4ba834916825416cab0630e4a355d39f",
            "39007bb2e3ea4938a7161d7cb10a8889",
            "2457335d9e3c4f32a37e989266cb4b3b",
            "42bc3ea8d15b4828b7bbb05bab9945fb",
            "39a39645efa34ee7bd7087e875b9a732",
            "3d83d1288b844dbaaf7975ae65c061e5",
            "d449356c44fc4789bf9e19f958bf7f94",
            "0f006c0bd9b5432699e285b306bee7e0",
            "611df5dcff9f47f29d34c0e932f22596",
            "f4266f45ba534656b2a46be163ce3a4f",
            "71e55051db594e4fb5c747b02bb78c1a",
            "bb3dd998044845a79f50232e3d52f23e",
            "a0acabd9db404948b797358675aeebb5",
            "06933a7d9acb493d9f70bf8faddfd45d",
            "1b5b4487f1254c598346b4229897f700",
            "7d60033566b044bf8730d894e8dfd925",
            "9a24adaa0d4444e8914efe50f52befad",
            "bfd512ee41844a37bdf9ba14a32f2c32",
            "87435cee20484d789e38975d99ae801f",
            "2d939f2142764fdabdee8517747418b7",
            "54478deaa6334ce7812dfabcbf4b2c40",
            "819f0b6b631549c3bf524f3705d58ca9",
            "0bdd0cac384844939be8a573bc8e5c71",
            "5c7da1e1c35b46ca945f1c577f1b5cef",
            "af6b9abb325a423d824e6fb36f124310",
            "b89e99145a4d446a8f4c83dc90c4a4dd",
            "93e33564998047b990e67226f66e83d8",
            "7c8fa63a695141a8a5a45ea6ee734bdd",
            "2df4b54a4dd34fddb6ff7d11e94cd298",
            "35829cbdb00b457188bd393ac5699003",
            "407e35edb74a44638908f3a3383e0089",
            "0fb9e7662d07430f9ad77775266fb5e7",
            "47a7ad15780741418e6d206251d11946",
            "4f5ee5366fd94a7eb6710764f4cc0268",
            "d7f7057c61f641208739570867cb473f",
            "688378a881fc424f98d02bbb9ac258f9",
            "9869355d0bbf40f4ae02c5e449450ca7",
            "96e98855f5324820b8624eb675237e0e",
            "efa2c9b786234ffd98a7e906c4da37ba",
            "453707974b874bbca7956194c77eb2ec",
            "9cbab755f9d64fd998e66fc43f62710e",
            "79347b04af814640b213355d7c66d0ea",
            "fe9e21829bb944af8660db273c588c25",
            "9f2593fbc82a458bbd31558b8ba4c18a",
            "de942176c8de49f5aefb4b1526cea555",
            "f01e2e83d7004d59ba988c610525576f",
            "b1b2e3423bb041cd88515d714cbf112e",
            "e3fb17fbc27a4478bddc752e60996db7",
            "2ef6320399bd404082a6c7ff3016cf31",
            "606216fd78fe48258607f090d347241d",
            "7f3983490451465d9429fc76e9408a98",
            "e7f403bf51ae489ba4c1512d8d367fba",
            "8f477d665d78454ea753c5e4cb2d86cf",
            "f64c947177cf4307b3ad8c8c3344ac0a",
            "0b3e524ccaca4812b79c3158eed318d5",
            "42cbe8abb9d7464abbba79d71d87457a",
            "0a8a8cd678694b3d9cb92e76462c93e6",
            "b6a80c6bbf194e59be0368fd3376e30e",
            "405f6be62ac14dbdb1a5ca2d334d9a71",
            "8335ea49abe54acfbe524db99ccb7b92",
            "3356b6e8bd614625887fe82e40b15cda",
            "ca845fcc28804ee584f74474e25ec9aa",
            "83b72b4343bf4b5db24d85f4337ca043",
            "e03d34f8dc524a47b4a6143d1db83622",
            "a6bab9e7387c482aafa4509da28ecc57",
            "d8e0c92b94f84965b9c8b51aff800168",
            "a5831a56c3df43e6a4dacebdd7e59146",
            "e7a22be801344e0aba3e4a6ce0b3363c",
            "0d04fde0f5ad47359c10c5266e6c1b99",
            "dd23f138cdb8472ca12f5d7a7d8b4f6b",
            "5f9481de6dbe4072ab1330992a912c38",
            "093b3c6621574a699cd3ca1b362010c3",
            "81900c0dfe7745abbb698953a6fbe7ba",
            "bb8ee4d769bf4e40899b292bdab06fec",
            "071ac3df9bd7475cb92433ade97fcff1",
            "36e8920f9d434786891cb3abb09b9a5a",
            "06d7277e5f39484ebd3f026e01fb3240",
            "da3ad668d134454aad4c5f7a216e79e0",
            "185ffc82c64f4c6a9bd4e73807393c64",
            "0de708daf3144cdf893541c2309b199b",
            "3f8be713beba40e4abd1f5f2e2b13843",
            "4a32e10c6bc447c8862e54e5cc88ffa7",
            "48ff438693a1471d8d4db28d0362b0d8",
            "9e2fd7a22e1046b4a62b480746d0d1c7",
            "991e61931ef14399ac17e939d888bd90",
            "58921ba244b540758535c2870c3513cf",
            "568e684cc3a74d3f8b55310423dfe786",
            "4f7a9428d4d1494ca482d9e8fe770382",
            "6a2584822fa342029657a610e79d2d60",
            "d8a33f9f5fd04a2aa24da203f6c26793",
            "d958663281d44bae89fba9381428be59",
            "65a3201a44d342c49396d8456a13c5b7",
            "e568639ce6b7450b8e99f542a54b6c0e",
            "451192c1b74048f6a3d817e101424607",
            "ab66ce1adf454f5080e458441431cf6f",
            "9775f217d6104d0a9c30a0e832782178",
            "41c7f94c744c499a8b49c7e1af6a0512",
            "0140ffff36ce482cbaa009b5fde90173",
            "380d1c9832984940933a744db2fa5669",
            "659fa8c69a4d4872851ff4378b62af5c",
            "a4a26e6968e548959ee2ecb27cbf10fd",
            "4e20d270e95345dbb63b7ec9a52d799d",
            "78cb2c0e9193415592e37846e8b38dbb",
            "161e5dce662f47fa90399c01537a47f4",
            "d191f66e76c341b8893d219611c1ee23",
            "c05a6a870a6f45799b5608283f7cecf7",
            "09ccbbd63bac4a7f8d55a973d007b3e3",
            "8796c0bc0d5b44bca44aa0cee9a30705",
            "c9745b34af19432292e14a3ae4021c88",
            "2b48bd00e347444a862726c0b2bc3a7c",
            "ba1e08871d2e449cbb768e76cc1850ed",
            "f2feaf64a5e94038a1e1ef010a497318",
            "f3e0e91ddeda44b0b98bd58f9044bd3f",
            "e27820e43c78414cafceeeb4c735351e",
            "0965237f18734f34a3534c8ae9f0060b",
            "8cc22c811b9641548cccf8a482f94fd5",
            "f3a98ec0e7fe47668bcd78852f96483a",
            "1b257991861c42ed884f1fd91c409bf6",
            "e1e78e936062465bb61d59beceec3bb3",
            "5e0a6f59c6d94a87a11815238503bb42",
            "cb6d13935ed8468e912c90aa3c39469b",
            "c2352a167cec47c9b94c896df203c724",
            "d6fe8a421c0a4b04b67171367fe94adb",
            "a995293d63a94c84b3c578c4ff21b9a9",
            "0447bc5592ed41a7ac0088e2e06e6ef4",
            "dbfa3647341246c6a5e5ee66a4a40514",
            "c88ea772975a4faa968de747cd77192f",
            "396fbe611b7945c99e713e8936217b3d",
            "0810ff373da54f57af817f78b264e5ee",
            "3e914db754ba447986eb5c3751263c2d",
            "fb526c28ca844ee1a32f2cdfef3c3dd4",
            "d4bac0576ebb403780f2fdbbcbc66b7d",
            "731ef94ece2c429f85bfd2de2d7e29eb",
            "7870669c4ef44a69b727fa374cabeb49",
            "e1e815239d2a4cf99d473483d2814916",
            "d1da6db4f1864f6ca47d47873fe7201c",
            "1e0fdfdec63a4d1ebd668568cc4a18d5",
            "29f920c275574d3bb0c13f510e306533",
            "c412d464306d4f76938dc42041e15bd6",
            "72a7249fc1d04df78e25909fbfd277a1",
            "b2db8bb9a9334896830e0e54bcafeea1"
          ]
        },
        "id": "qZGQOSt12g8l",
        "outputId": "3403009a-0bb2-4f43-ae6e-80471814053c"
      },
      "outputs": [
        {
          "name": "stderr",
          "output_type": "stream",
          "text": "[nltk_data] Downloading package punkt_tab to /root/nltk_data...\n[nltk_data]   Unzipping tokenizers/punkt_tab.zip.\n"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "e09bbc80404e4df0a79f1885038d1397",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "modules.json:   0%|          | 0.00/385 [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "f1b09a46fa1b450ba3dcfd7770802aa8",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "README.md:   0%|          | 0.00/67.9k [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "8adbae4ec7c147a78abb7b7cca5a60f4",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "sentence_bert_config.json:   0%|          | 0.00/57.0 [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "466a6ab0439e45579ed725e4b495c0cc",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "config.json:   0%|          | 0.00/619 [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "21539e44597d4d09944040b241a56fd4",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "model.safetensors:   0%|          | 0.00/670M [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "e4a8b5066a7f4b45bb7d190e7aad3014",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "Loading weights:   0%|          | 0/391 [00:00<?, ?it/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "59369fbb1ba643c0a0a016938ec50b56",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "tokenizer_config.json:   0%|          | 0.00/342 [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "b9315c093a024e87ac87be9ff6e55cbf",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "vocab.txt:   0%|          | 0.00/232k [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "3839123488414af185a0e8c1dd2720fc",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "tokenizer.json:   0%|          | 0.00/712k [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "7e57678eff7240f9be3b1702cae9a785",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "special_tokens_map.json:   0%|          | 0.00/125 [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "7dc9eb44b8484ac8b1762f273df4aa5a",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "config.json:   0%|          | 0.00/191 [00:00<?, ?B/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "08f6ea37405b4d1f9da6a9dc6b261e23",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "Batches:   0%|          | 0/9 [00:00<?, ?it/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "b519ef0e0c7f427681cb603d1004546e",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "Batches:   0%|          | 0/9 [00:00<?, ?it/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/plain": [
              "{'writer': {'documents_written': 266}}"
            ]
          },
          "execution_count": 10,
          "metadata": {},
          "output_type": "execute_result"
        }
      ],
      "source": [
        "indexing_pipe_std.run({\"cleaner\":{\"documents\":raw_docs}})\n",
        "indexing_pipe_w_embedded_metadata.run({\"cleaner\":{\"documents\":raw_docs}})"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 11,
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/"
        },
        "id": "-Ha3rjwt4n42",
        "outputId": "635478cc-99e1-4a57-e70b-079b683fe5bf"
      },
      "outputs": [
        {
          "name": "stdout",
          "output_type": "stream",
          "text": [
            "266\n",
            "266\n"
          ]
        }
      ],
      "source": [
        "print(len(document_store.filter_documents()))\n",
        "print(len(document_store_w_embedded_metadata.filter_documents()))"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "njSjs9x42vON"
      },
      "source": [
        "Create the 2 retrieval pipelines."
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 12,
      "metadata": {
        "id": "fT7hfC6t2z81"
      },
      "outputs": [],
      "source": [
        "retrieval_pipe_std = create_retrieval_pipeline(document_store=document_store)\n",
        "\n",
        "retrieval_pipe_w_embedded_metadata = create_retrieval_pipeline(document_store=document_store_w_embedded_metadata)"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "GfJ6O1Hf3aan"
      },
      "source": [
        "## 🧪 Run the experiment!"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 13,
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 401,
          "referenced_widgets": [
            "189ba7128b934ee09bbb9b8d05531142",
            "e4de4e8945424efeaf54e1c1d6535b7b",
            "38ab3f00051e4aa3bc657e0af3252bd6",
            "7c1e42b993e6436b8c57257d6136fe76",
            "28c67420a1ee4295b028c857a4ffd667",
            "67cbf580cb1b420f998b048e53638822",
            "60cae20528454d6882737e49e1b0cdc3",
            "485b95ac09204b7fa76e5aafbca7d885",
            "a20d4e42ab9c4863b0e85117b9ec901f",
            "7951d5f9080249eab4f58a22ad1c6400",
            "d4a511821e47400eb013ae818471160a"
          ]
        },
        "id": "cYWX7sjtDqaL",
        "outputId": "c9fb2ead-51cf-4f60-e5f0-b800253437cd"
      },
      "outputs": [
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "093ad2d3ddbc431798005f6cc4666c63",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "Batches:   0%|          | 0/1 [00:00<?, ?it/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">d8abc68a38bc4fc151ccc3ced628feaff73a0aaff9b61a5627908112c3e77727</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'The Beatles were an English</span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">rock band formed in Liverpool in 1960. The band comprised John Lennon, P...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The Beatles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>:\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Beatles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8530507324777759</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35md8abc68a38bc4fc151ccc3ced628feaff73a0aaff9b61a5627908112c3e77727\u001b[0m, content: \u001b[32m'The Beatles were an English\u001b[0m\n",
              "\u001b[32mrock band formed in Liverpool in 1960. The band comprised John Lennon, P...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The Beatles'\u001b[0m, \u001b[32m'url'\u001b[0m:\n",
              "\u001b[32m'https://en.wikipedia.org/wiki/The_Beatles'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m0\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m0\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8530507324777759\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">The Beatles were an English rock band formed in Liverpool in <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1960</span>. The band comprised John Lennon, Paul McCartney, \n",
              "George Harrison and Ringo Starr. \n",
              "\n",
              "</pre>\n"
            ],
            "text/plain": [
              "The Beatles were an English rock band formed in Liverpool in \u001b[1;36m1960\u001b[0m. The band comprised John Lennon, Paul McCartney, \n",
              "George Harrison and Ringo Starr. \n",
              "\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">b8b6bb46c73e300c0849bf73965c7813677a9c1cab6736f5916d529281c285d6</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'All of the disparate </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">influences on their first two albums coalesced into a bright, joyous, original ...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The Beatles'</span>,\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Beatles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">26</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">22615</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8525623451911699</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35mb8b6bb46c73e300c0849bf73965c7813677a9c1cab6736f5916d529281c285d6\u001b[0m, content: \u001b[32m'All of the disparate \u001b[0m\n",
              "\u001b[32minfluences on their first two albums coalesced into a bright, joyous, original ...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The Beatles'\u001b[0m,\n",
              "\u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Beatles'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m26\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m22615\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8525623451911699\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">All of the disparate influences on their first two albums coalesced into a bright, joyous, original sound, filled \n",
              "with ringing guitars and irresistible melodies.<span style=\"color: #008000; text-decoration-color: #008000\">\" That \"</span>ringing guitar\" sound was primarily the product of \n",
              "Harrison's <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">12</span>-string electric Rickenbacker, a prototype given to him by the manufacturer, which made its debut on \n",
              "the record. ==== <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1964</span> world tour, meeting Bob Dylan and stand on civil rights ==== Touring internationally in June \n",
              "and July, the Beatles staged <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">37</span> shows over <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">27</span> days in Denmark, the Netherlands, Hong Kong, Australia and New \n",
              "Zealand. In August and September, they returned to the US, with a <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">30</span>-concert tour of <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">23</span> cities. Generating intense \n",
              "interest once again, the month-long tour attracted between <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">10</span>,<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">000</span> and <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">20</span>,<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">000</span> people to each <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">30</span>-minute performance \n",
              "in cities from New York to San Francisco.\n",
              "In August, journalist Al Aronowitz arranged for the Beatles to meet Bob Dylan. Visiting the band in their New York \n",
              "hotel suite, Dylan introduced them to cannabis. Gould points out the musical and cultural significance of this \n",
              "meeting, before which the musicians' respective fan bases were <span style=\"color: #008000; text-decoration-color: #008000\">\"perceived as inhabiting two separate subcultural </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">worlds\"</span>: Dylan's audience of <span style=\"color: #008000; text-decoration-color: #008000\">\"college kids with artistic or intellectual leanings, a dawning political and social </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">idealism, and a mildly bohemian style\"</span> contrasted with their fans, <span style=\"color: #008000; text-decoration-color: #008000\">\"veritable 'teenyboppers' – kids in high school </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">or grade school whose lives were totally wrapped up in the commercialised popular culture of television, radio, pop</span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">records, fan magazines and teen fashion. To many of Dylan's followers in the folk music scene, the Beatles were </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">seen as idolaters, not idealists.\"</span>\n",
              "Within six months of the meeting, according to Gould, <span style=\"color: #008000; text-decoration-color: #008000\">\"Lennon would be making records on which he openly imitated </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">Dylan's nasal drone, brittle strum, and introspective vocal persona\"</span>; and six months after that, Dylan began \n",
              "performing with a backing band and electric instrumentation, and <span style=\"color: #008000; text-decoration-color: #008000\">\"dressed in the height of Mod fashion\"</span>. As a \n",
              "result, Gould continues, the traditional division between folk and rock enthusiasts <span style=\"color: #008000; text-decoration-color: #008000\">\"nearly evaporated\"</span>, as the \n",
              "Beatles' fans began to mature in their outlook and Dylan's audience embraced the new, youth-driven pop culture.\n",
              "During the <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1964</span> US tour, the group were confronted with racial segregation in the country at the time. When \n",
              "informed that the venue for their <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">11</span> September concert, the Gator Bowl in Jacksonville, Florida, was segregated, \n",
              "the Beatles said they would refuse to perform unless the audience was integrated. Lennon stated: <span style=\"color: #008000; text-decoration-color: #008000\">\"We never play to </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">segregated audiences and we aren't going to start now ... I'd sooner lose our appearance money.\"</span> City officials \n",
              "relented and agreed to allow an integrated show. The group also cancelled their reservations at the whites-only \n",
              "Hotel George Washington in Jacksonville. For their subsequent US tours in <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1965</span> and <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1966</span>, the Beatles included \n",
              "clauses in contracts stipulating that shows be integrated. ==== Beatles for Sale, Help! and Rubber Soul ====\n",
              "According to Gould, the Beatles' fourth studio LP, Beatles for Sale, evidenced a growing conflict between the \n",
              "commercial pressures of their global success and their creative ambitions. They had intended the album, recorded \n",
              "between August and October <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1964</span>, to continue the format established by A Hard Day's Night which, unlike their first\n",
              "two LPs, contained only original songs. They had nearly exhausted their backlog of songs on the previous album, \n",
              "however, and given the challenges constant international touring posed to their songwriting efforts, Lennon \n",
              "admitted, <span style=\"color: #008000; text-decoration-color: #008000\">\"Material's becoming a hell of a problem\"</span>. As a result, six covers from their extensive repertoire were \n",
              "chosen to complete the album. Released in early December, its eight original compositions stood out, demonstrating \n",
              "the growing maturity of the Lennon–McCartney songwriting partnership.\n",
              "In early <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1965</span>, following a dinner with Lennon, Harrison and their wives, Harrison's dentist, John Riley, secretly \n",
              "added LSD to their coffee. \n",
              "\n",
              "</pre>\n"
            ],
            "text/plain": [
              "All of the disparate influences on their first two albums coalesced into a bright, joyous, original sound, filled \n",
              "with ringing guitars and irresistible melodies.\u001b[32m\" That \"\u001b[0mringing guitar\" sound was primarily the product of \n",
              "Harrison's \u001b[1;36m12\u001b[0m-string electric Rickenbacker, a prototype given to him by the manufacturer, which made its debut on \n",
              "the record. ==== \u001b[1;36m1964\u001b[0m world tour, meeting Bob Dylan and stand on civil rights ==== Touring internationally in June \n",
              "and July, the Beatles staged \u001b[1;36m37\u001b[0m shows over \u001b[1;36m27\u001b[0m days in Denmark, the Netherlands, Hong Kong, Australia and New \n",
              "Zealand. In August and September, they returned to the US, with a \u001b[1;36m30\u001b[0m-concert tour of \u001b[1;36m23\u001b[0m cities. Generating intense \n",
              "interest once again, the month-long tour attracted between \u001b[1;36m10\u001b[0m,\u001b[1;36m000\u001b[0m and \u001b[1;36m20\u001b[0m,\u001b[1;36m000\u001b[0m people to each \u001b[1;36m30\u001b[0m-minute performance \n",
              "in cities from New York to San Francisco.\n",
              "In August, journalist Al Aronowitz arranged for the Beatles to meet Bob Dylan. Visiting the band in their New York \n",
              "hotel suite, Dylan introduced them to cannabis. Gould points out the musical and cultural significance of this \n",
              "meeting, before which the musicians' respective fan bases were \u001b[32m\"perceived as inhabiting two separate subcultural \u001b[0m\n",
              "\u001b[32mworlds\"\u001b[0m: Dylan's audience of \u001b[32m\"college kids with artistic or intellectual leanings, a dawning political and social \u001b[0m\n",
              "\u001b[32midealism, and a mildly bohemian style\"\u001b[0m contrasted with their fans, \u001b[32m\"veritable 'teenyboppers' – kids in high school \u001b[0m\n",
              "\u001b[32mor grade school whose lives were totally wrapped up in the commercialised popular culture of television, radio, pop\u001b[0m\n",
              "\u001b[32mrecords, fan magazines and teen fashion. To many of Dylan's followers in the folk music scene, the Beatles were \u001b[0m\n",
              "\u001b[32mseen as idolaters, not idealists.\"\u001b[0m\n",
              "Within six months of the meeting, according to Gould, \u001b[32m\"Lennon would be making records on which he openly imitated \u001b[0m\n",
              "\u001b[32mDylan's nasal drone, brittle strum, and introspective vocal persona\"\u001b[0m; and six months after that, Dylan began \n",
              "performing with a backing band and electric instrumentation, and \u001b[32m\"dressed in the height of Mod fashion\"\u001b[0m. As a \n",
              "result, Gould continues, the traditional division between folk and rock enthusiasts \u001b[32m\"nearly evaporated\"\u001b[0m, as the \n",
              "Beatles' fans began to mature in their outlook and Dylan's audience embraced the new, youth-driven pop culture.\n",
              "During the \u001b[1;36m1964\u001b[0m US tour, the group were confronted with racial segregation in the country at the time. When \n",
              "informed that the venue for their \u001b[1;36m11\u001b[0m September concert, the Gator Bowl in Jacksonville, Florida, was segregated, \n",
              "the Beatles said they would refuse to perform unless the audience was integrated. Lennon stated: \u001b[32m\"We never play to \u001b[0m\n",
              "\u001b[32msegregated audiences and we aren't going to start now ... I'd sooner lose our appearance money.\"\u001b[0m City officials \n",
              "relented and agreed to allow an integrated show. The group also cancelled their reservations at the whites-only \n",
              "Hotel George Washington in Jacksonville. For their subsequent US tours in \u001b[1;36m1965\u001b[0m and \u001b[1;36m1966\u001b[0m, the Beatles included \n",
              "clauses in contracts stipulating that shows be integrated. ==== Beatles for Sale, Help! and Rubber Soul ====\n",
              "According to Gould, the Beatles' fourth studio LP, Beatles for Sale, evidenced a growing conflict between the \n",
              "commercial pressures of their global success and their creative ambitions. They had intended the album, recorded \n",
              "between August and October \u001b[1;36m1964\u001b[0m, to continue the format established by A Hard Day's Night which, unlike their first\n",
              "two LPs, contained only original songs. They had nearly exhausted their backlog of songs on the previous album, \n",
              "however, and given the challenges constant international touring posed to their songwriting efforts, Lennon \n",
              "admitted, \u001b[32m\"Material's becoming a hell of a problem\"\u001b[0m. As a result, six covers from their extensive repertoire were \n",
              "chosen to complete the album. Released in early December, its eight original compositions stood out, demonstrating \n",
              "the growing maturity of the Lennon–McCartney songwriting partnership.\n",
              "In early \u001b[1;36m1965\u001b[0m, following a dinner with Lennon, Harrison and their wives, Harrison's dentist, John Riley, secretly \n",
              "added LSD to their coffee. \n",
              "\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">3aae0d3d5dcd3ae21f711e61d773ab0aa93ba31323ee02cc459d3a390f8a3c7a</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'==== Early residencies and </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">UK popularity ==== Allan Williams, the Beatles'</span> unofficial manager, arran<span style=\"color: #808000; text-decoration-color: #808000\">...</span><span style=\"color: #008000; text-decoration-color: #008000\">', meta: {'</span>title': <span style=\"color: #008000; text-decoration-color: #008000\">'The Beatles'</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Beatles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">15</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">5786</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8482544134070036</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35m3aae0d3d5dcd3ae21f711e61d773ab0aa93ba31323ee02cc459d3a390f8a3c7a\u001b[0m, content: \u001b[32m'==== Early residencies and \u001b[0m\n",
              "\u001b[32mUK popularity ==== Allan Williams, the Beatles'\u001b[0m unofficial manager, arran\u001b[33m...\u001b[0m\u001b[32m', meta: \u001b[0m\u001b[32m{\u001b[0m\u001b[32m'\u001b[0mtitle': \u001b[32m'The Beatles'\u001b[0m, \n",
              "\u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Beatles'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m15\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m5786\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8482544134070036\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">==== Early residencies and UK popularity ==== Allan Williams, the Beatles' unofficial manager, arranged a residency\n",
              "for them in Hamburg. They auditioned and hired drummer Pete Best in mid-August <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1960</span>. The band, now a five-piece, \n",
              "departed Liverpool for Hamburg four days later, contracted to club owner Bruno Koschmider for what would be a \n",
              "<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">3</span>+<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>⁄<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2</span>-month residency. Beatles historian Mark Lewisohn writes: <span style=\"color: #008000; text-decoration-color: #008000\">\"They pulled into Hamburg at dusk on 17 August, the </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">time when the red-light area comes to life ... flashing neon lights screamed out the various entertainment on </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">offer, while scantily clad women sat unabashed in shop windows waiting for business opportunities.\"</span>\n",
              "Koschmider had converted a couple of strip clubs in the red light Reeperbahn district of St. Pauli into music \n",
              "venues and initially placed the Beatles at the Indra Club. After closing Indra due to noise complaints, he moved \n",
              "them to the Kaiserkeller in October. When he learned they had been performing at the rival Top Ten Club in breach \n",
              "of their contract, he gave them one month's termination notice, and reported the underage Harrison, who had \n",
              "obtained permission to stay in Hamburg by lying to the German authorities about his age. The authorities arranged \n",
              "for Harrison's deportation in late November. One week later, Koschmider had McCartney and Best arrested for arson \n",
              "after they set fire to a condom in a concrete corridor; the authorities deported them. Lennon returned to Liverpool\n",
              "in early December, while Sutcliffe remained in Hamburg until late February with his German fiancée Astrid \n",
              "Kirchherr, who took the first semi-professional photos of the Beatles.\n",
              "During the next two years, the Beatles were resident for periods in Hamburg, where they used Preludin both \n",
              "recreationally and to maintain their energy through all-night performances. In <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1961</span>, during their second Hamburg \n",
              "engagement, Kirchherr cut Sutcliffe's hair in the <span style=\"color: #008000; text-decoration-color: #008000\">\"exi\"</span> <span style=\"font-weight: bold\">(</span>existentialist<span style=\"font-weight: bold\">)</span> style, later adopted by the other Beatles.\n",
              "\n",
              "</pre>\n"
            ],
            "text/plain": [
              "==== Early residencies and UK popularity ==== Allan Williams, the Beatles' unofficial manager, arranged a residency\n",
              "for them in Hamburg. They auditioned and hired drummer Pete Best in mid-August \u001b[1;36m1960\u001b[0m. The band, now a five-piece, \n",
              "departed Liverpool for Hamburg four days later, contracted to club owner Bruno Koschmider for what would be a \n",
              "\u001b[1;36m3\u001b[0m+\u001b[1;36m1\u001b[0m⁄\u001b[1;36m2\u001b[0m-month residency. Beatles historian Mark Lewisohn writes: \u001b[32m\"They pulled into Hamburg at dusk on 17 August, the \u001b[0m\n",
              "\u001b[32mtime when the red-light area comes to life ... flashing neon lights screamed out the various entertainment on \u001b[0m\n",
              "\u001b[32moffer, while scantily clad women sat unabashed in shop windows waiting for business opportunities.\"\u001b[0m\n",
              "Koschmider had converted a couple of strip clubs in the red light Reeperbahn district of St. Pauli into music \n",
              "venues and initially placed the Beatles at the Indra Club. After closing Indra due to noise complaints, he moved \n",
              "them to the Kaiserkeller in October. When he learned they had been performing at the rival Top Ten Club in breach \n",
              "of their contract, he gave them one month's termination notice, and reported the underage Harrison, who had \n",
              "obtained permission to stay in Hamburg by lying to the German authorities about his age. The authorities arranged \n",
              "for Harrison's deportation in late November. One week later, Koschmider had McCartney and Best arrested for arson \n",
              "after they set fire to a condom in a concrete corridor; the authorities deported them. Lennon returned to Liverpool\n",
              "in early December, while Sutcliffe remained in Hamburg until late February with his German fiancée Astrid \n",
              "Kirchherr, who took the first semi-professional photos of the Beatles.\n",
              "During the next two years, the Beatles were resident for periods in Hamburg, where they used Preludin both \n",
              "recreationally and to maintain their energy through all-night performances. In \u001b[1;36m1961\u001b[0m, during their second Hamburg \n",
              "engagement, Kirchherr cut Sutcliffe's hair in the \u001b[32m\"exi\"\u001b[0m \u001b[1m(\u001b[0mexistentialist\u001b[1m)\u001b[0m style, later adopted by the other Beatles.\n",
              "\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        }
      ],
      "source": [
        "# standard approach (no metadata embedding)\n",
        "\n",
        "res=retrieval_pipe_std.run({\"text_embedder\":{\"text\":\"have the beatles ever been to bangor?\"}})\n",
        "for doc in res['retriever']['documents']:\n",
        "  rich.print(doc)\n",
        "  rich.print(doc.content+\"\\n\")"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "AkxD6XiX4-Vl"
      },
      "source": [
        "❌ the retrieved Documents seem irrelevant"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 14,
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 417,
          "referenced_widgets": [
            "0c78a11f49114eeaa803ff25ef362552",
            "96a0367b059143389232b48f524764be",
            "18f837c559314f5cacd084ffb89c5f67",
            "fed4a623601a4ec38a56df48608e3e7c",
            "408bb79e04084f1c9eb44e432b5bd819",
            "6c85715d398647378c9c9a870a2e5dbb",
            "1839943ae80e4908b222950faac01c70",
            "3a5d8038b46242308d4f6f5ce36161a3",
            "0e17381e7e9a4b6c944410b8b6938ad5",
            "302cab9350a746f9b237f043a277f752",
            "c1c946c21c334846906df497788d0024"
          ]
        },
        "id": "CYGP5NGZc1n7",
        "outputId": "3483764e-e591-40a2-fec6-ad26882b5906"
      },
      "outputs": [
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "b3ac169db0a4448c99513b9d1e5f978e",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "Batches:   0%|          | 0/1 [00:00<?, ?it/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">3c6428f9f52bbd44000ea4f4741bfdce5d36dd8346aef048e4f117f82bd75e40</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'The next day, they </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">travelled to Bangor for his Transcendental Meditation retreat. On 27 August, thei...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">Beatles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Beatles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">47</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">43054</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8650703581853868</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35m3c6428f9f52bbd44000ea4f4741bfdce5d36dd8346aef048e4f117f82bd75e40\u001b[0m, content: \u001b[32m'The next day, they \u001b[0m\n",
              "\u001b[32mtravelled to Bangor for his Transcendental Meditation retreat. On 27 August, thei...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The \u001b[0m\n",
              "\u001b[32mBeatles'\u001b[0m, \u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Beatles'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m47\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m43054\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8650703581853868\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">The next day, they travelled to Bangor for his Transcendental Meditation retreat. On <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">27</span> August, their manager's \n",
              "assistant, Peter Brown, phoned to inform them that Epstein had died. The coroner ruled the death an accidental \n",
              "carbitol overdose, although it was widely rumoured to be a suicide. His death left the group disoriented and \n",
              "fearful about the future. Lennon recalled: \"We collapsed. I knew that we were in trouble then. I didn't really have\n",
              "any misconceptions about our ability to do anything other than play music, and I was scared. \n",
              "\n",
              "</pre>\n"
            ],
            "text/plain": [
              "The next day, they travelled to Bangor for his Transcendental Meditation retreat. On \u001b[1;36m27\u001b[0m August, their manager's \n",
              "assistant, Peter Brown, phoned to inform them that Epstein had died. The coroner ruled the death an accidental \n",
              "carbitol overdose, although it was widely rumoured to be a suicide. His death left the group disoriented and \n",
              "fearful about the future. Lennon recalled: \"We collapsed. I knew that we were in trouble then. I didn't really have\n",
              "any misconceptions about our ability to do anything other than play music, and I was scared. \n",
              "\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">40181fad156bda72866d364ccbf1bdb0591aa6042b70729973bec1e60267bf8e</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'He eventually negotiated a </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">one-month early release in exchange for one last recording session in Ham...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The Beatles'</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Beatles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">20</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">9495</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.858983150084857</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35m40181fad156bda72866d364ccbf1bdb0591aa6042b70729973bec1e60267bf8e\u001b[0m, content: \u001b[32m'He eventually negotiated a \u001b[0m\n",
              "\u001b[32mone-month early release in exchange for one last recording session in Ham...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The Beatles'\u001b[0m, \n",
              "\u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Beatles'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m20\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m9495\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.858983150084857\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">He eventually negotiated a one-month early release in exchange for one last recording session in Hamburg backing \n",
              "Tony Sheridan. On their return to Germany in April, a distraught Kirchherr met them at the airport with news of \n",
              "Sutcliffe's death the previous day from a brain haemorrhage. Martin's first recording session with the Beatles took\n",
              "place at EMI Recording Studios <span style=\"font-weight: bold\">(</span>later Abbey Road Studios<span style=\"font-weight: bold\">)</span> in London on <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">6</span> June <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1962</span>. \n",
              "\n",
              "</pre>\n"
            ],
            "text/plain": [
              "He eventually negotiated a one-month early release in exchange for one last recording session in Hamburg backing \n",
              "Tony Sheridan. On their return to Germany in April, a distraught Kirchherr met them at the airport with news of \n",
              "Sutcliffe's death the previous day from a brain haemorrhage. Martin's first recording session with the Beatles took\n",
              "place at EMI Recording Studios \u001b[1m(\u001b[0mlater Abbey Road Studios\u001b[1m)\u001b[0m in London on \u001b[1;36m6\u001b[0m June \u001b[1;36m1962\u001b[0m. \n",
              "\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">6bad03d52fbb917df6a5c5d2b3947310b0df41c9ace6742798cf7d79212b5654</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'Preston received label </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">billing on the \"Get Back\" single – the only musician ever to receive that ack...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The Beatles'</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Beatles'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">62</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">51994</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8548119991711911</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35m6bad03d52fbb917df6a5c5d2b3947310b0df41c9ace6742798cf7d79212b5654\u001b[0m, content: \u001b[32m'Preston received label \u001b[0m\n",
              "\u001b[32mbilling on the \"Get Back\" single – the only musician ever to receive that ack...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The Beatles'\u001b[0m, \n",
              "\u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Beatles'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'c14b28e1c0df58af707301f1a8564df840f3726f5e92447679830c6bc897825f'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m62\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m51994\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8548119991711911\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">Preston received label billing on the <span style=\"color: #008000; text-decoration-color: #008000\">\"Get Back\"</span> single – the only musician ever to receive that acknowledgment on \n",
              "an official Beatles release. After the rehearsals, the band could not agree on a location to film a concert, \n",
              "rejecting several ideas, including a boat at sea, a lunatic asylum, the Libyan desert and the Colosseum. \n",
              "\n",
              "</pre>\n"
            ],
            "text/plain": [
              "Preston received label billing on the \u001b[32m\"Get Back\"\u001b[0m single – the only musician ever to receive that acknowledgment on \n",
              "an official Beatles release. After the rehearsals, the band could not agree on a location to film a concert, \n",
              "rejecting several ideas, including a boat at sea, a lunatic asylum, the Libyan desert and the Colosseum. \n",
              "\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        }
      ],
      "source": [
        "# embedding meaningful metadata\n",
        "\n",
        "res=retrieval_pipe_w_embedded_metadata.run({\"text_embedder\":{\"text\":\"have the beatles ever been to bangor?\"}})\n",
        "for doc in res['retriever']['documents']:\n",
        "  rich.print(doc)\n",
        "  rich.print(doc.content+\"\\n\")"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "V9lCMR9T5f26"
      },
      "source": [
        "✅ the first Document is relevant"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 15,
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 321,
          "referenced_widgets": [
            "69e37606c84b4faa9dbd26e374181639",
            "b4186e4e041a4a54b60a8dadc65e5c74",
            "d936034f96b94edb8a96e02f31fefc24",
            "9e72dab5dd94404ea4cc8cf001f52862",
            "5cad94618a074a8d96373c1b9a9a4077",
            "819bf42af44c4d46a448e4ac3536e821",
            "ab69d4ea42bb48b9b3991e96013fbcff",
            "18371b65b5834f3f900303e226f57408",
            "2171af346b7e4f3eafcc5e3cf9437a01",
            "04490bdfc25049ccb484381de0cd8f39",
            "f3e0f6bad5e44fda946536e384617adb"
          ]
        },
        "id": "aEs3ZDnUlMZq",
        "outputId": "06dacdbd-4068-4096-bba7-1c7b69aa7697"
      },
      "outputs": [
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "ac4fe4ce73c648b693aa02eadd858fd0",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "Batches:   0%|          | 0/1 [00:00<?, ?it/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">883fcd200df5f57d06cb97715779c19ecf3c3989e228fa1bb4110587dce80242</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'They became the </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">highest-earning live act of 2021, surpassing Taylor Swift; since 2018 the two have t...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">Rolling Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Rolling_Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">83</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">69977</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8395461912617969</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35m883fcd200df5f57d06cb97715779c19ecf3c3989e228fa1bb4110587dce80242\u001b[0m, content: \u001b[32m'They became the \u001b[0m\n",
              "\u001b[32mhighest-earning live act of 2021, surpassing Taylor Swift; since 2018 the two have t...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The \u001b[0m\n",
              "\u001b[32mRolling Stones'\u001b[0m, \u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Rolling_Stones'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m83\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m69977\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8395461912617969\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">They became the highest-earning live act of <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2021</span>, surpassing Taylor Swift; since <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2018</span> the two have traded the top \n",
              "two spots. The band began a new tour in <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2022</span>, with Jordan on drums.\n",
              "\n",
              "</pre>\n"
            ],
            "text/plain": [
              "They became the highest-earning live act of \u001b[1;36m2021\u001b[0m, surpassing Taylor Swift; since \u001b[1;36m2018\u001b[0m the two have traded the top \n",
              "two spots. The band began a new tour in \u001b[1;36m2022\u001b[0m, with Jordan on drums.\n",
              "\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">ea3a026b7caae21787240aa4ba3b5989a66afdd5835eaf544ca0d4b15e628f93</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'It was later extended to go</span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">from May to July 2018, adding fourteen new dates in the UK and Europe, m...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The Rolling Stones'</span>,\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Rolling_Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">79</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">66965</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8299663989351334</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35mea3a026b7caae21787240aa4ba3b5989a66afdd5835eaf544ca0d4b15e628f93\u001b[0m, content: \u001b[32m'It was later extended to go\u001b[0m\n",
              "\u001b[32mfrom May to July 2018, adding fourteen new dates in the UK and Europe, m...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The Rolling Stones'\u001b[0m,\n",
              "\u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Rolling_Stones'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m79\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m66965\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8299663989351334\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">It was later extended to go from May to July <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2018</span>, adding fourteen new dates in the UK and Europe, making it the \n",
              "band's first UK tour since <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2006</span>. In November <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2018</span>, the Stones announced plans to bring the No Filter Tour to US \n",
              "stadiums in <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2019</span>, with <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">13</span> shows set to run from April to June. In March <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2019</span>, it was announced that Jagger would be\n",
              "undergoing heart valve replacement surgery, forcing the band to postpone the <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">17</span>-date North American leg of their No\n",
              "Filter Tour. On <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">4</span> April <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2019</span>, it was announced that Jagger had completed his heart valve procedure in New York, was\n",
              "recovering <span style=\"font-weight: bold\">(</span>in hospital<span style=\"font-weight: bold\">)</span> and could be released in the following few days. On <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">16</span> May, the Rolling Stones announced \n",
              "that the No Filter Tour would resume on <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">21</span> June with the <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">17</span> postponed dates rescheduled up to the end of August. In\n",
              "March <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2020</span>, the No Filter Tour was postponed due to the COVID-<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">19</span> pandemic.\n",
              "The Rolling Stones—featuring Jagger, Richards, Watts, and Wood at their homes—were one of the headline acts on \n",
              "Global Citizen's One World: Together at Home on-line and on-screen concert on <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">18</span> April <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2020</span>, a global event \n",
              "featuring dozens of artists and comedians to support frontline healthcare workers and the World Health Organization\n",
              "during the COVID-<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">19</span> pandemic. On <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">23</span> April, Jagger announced through his Facebook page the release <span style=\"font-weight: bold\">(</span>the same day at \n",
              "<span style=\"color: #00ff00; text-decoration-color: #00ff00; font-weight: bold\">5:00</span> pm BST<span style=\"font-weight: bold\">)</span> of the single <span style=\"color: #008000; text-decoration-color: #008000\">\"Living in a Ghost Town\"</span>, a new Rolling Stones song recorded in London and Los Angeles \n",
              "in <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2019</span> and finished in isolation <span style=\"font-weight: bold\">(</span>part of the new material that the band were recording in the studio before the \n",
              "COVID-<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">19</span> lockdown<span style=\"font-weight: bold\">)</span>, a song that the band <span style=\"color: #008000; text-decoration-color: #008000\">\"thought would resonate through the times we're living in\"</span> and their first\n",
              "original one since <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2012</span>. \n",
              "</pre>\n"
            ],
            "text/plain": [
              "It was later extended to go from May to July \u001b[1;36m2018\u001b[0m, adding fourteen new dates in the UK and Europe, making it the \n",
              "band's first UK tour since \u001b[1;36m2006\u001b[0m. In November \u001b[1;36m2018\u001b[0m, the Stones announced plans to bring the No Filter Tour to US \n",
              "stadiums in \u001b[1;36m2019\u001b[0m, with \u001b[1;36m13\u001b[0m shows set to run from April to June. In March \u001b[1;36m2019\u001b[0m, it was announced that Jagger would be\n",
              "undergoing heart valve replacement surgery, forcing the band to postpone the \u001b[1;36m17\u001b[0m-date North American leg of their No\n",
              "Filter Tour. On \u001b[1;36m4\u001b[0m April \u001b[1;36m2019\u001b[0m, it was announced that Jagger had completed his heart valve procedure in New York, was\n",
              "recovering \u001b[1m(\u001b[0min hospital\u001b[1m)\u001b[0m and could be released in the following few days. On \u001b[1;36m16\u001b[0m May, the Rolling Stones announced \n",
              "that the No Filter Tour would resume on \u001b[1;36m21\u001b[0m June with the \u001b[1;36m17\u001b[0m postponed dates rescheduled up to the end of August. In\n",
              "March \u001b[1;36m2020\u001b[0m, the No Filter Tour was postponed due to the COVID-\u001b[1;36m19\u001b[0m pandemic.\n",
              "The Rolling Stones—featuring Jagger, Richards, Watts, and Wood at their homes—were one of the headline acts on \n",
              "Global Citizen's One World: Together at Home on-line and on-screen concert on \u001b[1;36m18\u001b[0m April \u001b[1;36m2020\u001b[0m, a global event \n",
              "featuring dozens of artists and comedians to support frontline healthcare workers and the World Health Organization\n",
              "during the COVID-\u001b[1;36m19\u001b[0m pandemic. On \u001b[1;36m23\u001b[0m April, Jagger announced through his Facebook page the release \u001b[1m(\u001b[0mthe same day at \n",
              "\u001b[1;92m5:00\u001b[0m pm BST\u001b[1m)\u001b[0m of the single \u001b[32m\"Living in a Ghost Town\"\u001b[0m, a new Rolling Stones song recorded in London and Los Angeles \n",
              "in \u001b[1;36m2019\u001b[0m and finished in isolation \u001b[1m(\u001b[0mpart of the new material that the band were recording in the studio before the \n",
              "COVID-\u001b[1;36m19\u001b[0m lockdown\u001b[1m)\u001b[0m, a song that the band \u001b[32m\"thought would resonate through the times we're living in\"\u001b[0m and their first\n",
              "original one since \u001b[1;36m2012\u001b[0m. \n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">3f0508cfeba59648a532b8205b75f8856b6db5baa4ddbc078e4879020484dbb9</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'Four months later, it was </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">reported that Wyman would return for a song, more than 30 years after his ...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The Rolling </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Rolling_Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">85</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">70474</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8226799875605302</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35m3f0508cfeba59648a532b8205b75f8856b6db5baa4ddbc078e4879020484dbb9\u001b[0m, content: \u001b[32m'Four months later, it was \u001b[0m\n",
              "\u001b[32mreported that Wyman would return for a song, more than 30 years after his ...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The Rolling \u001b[0m\n",
              "\u001b[32mStones'\u001b[0m, \u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Rolling_Stones'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m85\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m70474\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8226799875605302\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">Four months later, it was reported that Wyman would return for a song, more than <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">30</span> years after his departure from \n",
              "the band. In August <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2023</span>, media outlets reported, based on an advertisement in a local UK newspaper, that a new \n",
              "Stones album might be released in September <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2023</span>. \n",
              "</pre>\n"
            ],
            "text/plain": [
              "Four months later, it was reported that Wyman would return for a song, more than \u001b[1;36m30\u001b[0m years after his departure from \n",
              "the band. In August \u001b[1;36m2023\u001b[0m, media outlets reported, based on an advertisement in a local UK newspaper, that a new \n",
              "Stones album might be released in September \u001b[1;36m2023\u001b[0m. \n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        }
      ],
      "source": [
        "# standard approach (no metadata embedding)\n",
        "\n",
        "res=retrieval_pipe_std.run({\"text_embedder\":{\"text\":\"What announcements did the band The Cure make in 2022?\"}})\n",
        "for doc in res['retriever']['documents']:\n",
        "  rich.print(doc)\n",
        "  rich.print(doc.content)"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "jHE7HzXg57ms"
      },
      "source": [
        "❌ the retrieved Documents seem irrelevant"
      ]
    },
    {
      "cell_type": "code",
      "execution_count": 16,
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 337,
          "referenced_widgets": [
            "4acbd3461b3e452f916581c9b130ec66",
            "8a27a6fa06a240fb98b8cdca44954182",
            "557e7a5bcb5542f0971ef1755b50c8cc",
            "e738a41f03864da087b076d8dd1621b5",
            "1cdd1713053a49a6b47942d6ad72aca8",
            "a51c9096f7cb49a1a0e84b0756b73cfc",
            "d0d86a11e91e45e5b5bdc50f24b3b031",
            "6ecfb002a4714977afb22d0f68752944",
            "85a0188f57f24196a5880d12e0e9ba87",
            "98342118c8514f54be4b6431b1066c81",
            "8904fab8feb64930943b958bdbd32871"
          ]
        },
        "id": "jA5Jj9jAiVhd",
        "outputId": "7f15f258-4038-4750-d3f4-23533a3ad9ef"
      },
      "outputs": [
        {
          "data": {
            "application/vnd.jupyter.widget-view+json": {
              "model_id": "868b1bab077343e2845bf0a167a62676",
              "version_major": 2,
              "version_minor": 0
            },
            "text/plain": [
              "Batches:   0%|          | 0/1 [00:00<?, ?it/s]"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">ea3a026b7caae21787240aa4ba3b5989a66afdd5835eaf544ca0d4b15e628f93</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'It was later extended to go</span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">from May to July 2018, adding fourteen new dates in the UK and Europe, m...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The Rolling Stones'</span>,\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Rolling_Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">79</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">66965</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8347962830885718</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35mea3a026b7caae21787240aa4ba3b5989a66afdd5835eaf544ca0d4b15e628f93\u001b[0m, content: \u001b[32m'It was later extended to go\u001b[0m\n",
              "\u001b[32mfrom May to July 2018, adding fourteen new dates in the UK and Europe, m...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The Rolling Stones'\u001b[0m,\n",
              "\u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Rolling_Stones'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m79\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m66965\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8347962830885718\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">It was later extended to go from May to July <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2018</span>, adding fourteen new dates in the UK and Europe, making it the \n",
              "band's first UK tour since <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2006</span>. In November <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2018</span>, the Stones announced plans to bring the No Filter Tour to US \n",
              "stadiums in <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2019</span>, with <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">13</span> shows set to run from April to June. In March <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2019</span>, it was announced that Jagger would be\n",
              "undergoing heart valve replacement surgery, forcing the band to postpone the <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">17</span>-date North American leg of their No\n",
              "Filter Tour. On <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">4</span> April <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2019</span>, it was announced that Jagger had completed his heart valve procedure in New York, was\n",
              "recovering <span style=\"font-weight: bold\">(</span>in hospital<span style=\"font-weight: bold\">)</span> and could be released in the following few days. On <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">16</span> May, the Rolling Stones announced \n",
              "that the No Filter Tour would resume on <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">21</span> June with the <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">17</span> postponed dates rescheduled up to the end of August. In\n",
              "March <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2020</span>, the No Filter Tour was postponed due to the COVID-<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">19</span> pandemic.\n",
              "The Rolling Stones—featuring Jagger, Richards, Watts, and Wood at their homes—were one of the headline acts on \n",
              "Global Citizen's One World: Together at Home on-line and on-screen concert on <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">18</span> April <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2020</span>, a global event \n",
              "featuring dozens of artists and comedians to support frontline healthcare workers and the World Health Organization\n",
              "during the COVID-<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">19</span> pandemic. On <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">23</span> April, Jagger announced through his Facebook page the release <span style=\"font-weight: bold\">(</span>the same day at \n",
              "<span style=\"color: #00ff00; text-decoration-color: #00ff00; font-weight: bold\">5:00</span> pm BST<span style=\"font-weight: bold\">)</span> of the single <span style=\"color: #008000; text-decoration-color: #008000\">\"Living in a Ghost Town\"</span>, a new Rolling Stones song recorded in London and Los Angeles \n",
              "in <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2019</span> and finished in isolation <span style=\"font-weight: bold\">(</span>part of the new material that the band were recording in the studio before the \n",
              "COVID-<span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">19</span> lockdown<span style=\"font-weight: bold\">)</span>, a song that the band <span style=\"color: #008000; text-decoration-color: #008000\">\"thought would resonate through the times we're living in\"</span> and their first\n",
              "original one since <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2012</span>. \n",
              "</pre>\n"
            ],
            "text/plain": [
              "It was later extended to go from May to July \u001b[1;36m2018\u001b[0m, adding fourteen new dates in the UK and Europe, making it the \n",
              "band's first UK tour since \u001b[1;36m2006\u001b[0m. In November \u001b[1;36m2018\u001b[0m, the Stones announced plans to bring the No Filter Tour to US \n",
              "stadiums in \u001b[1;36m2019\u001b[0m, with \u001b[1;36m13\u001b[0m shows set to run from April to June. In March \u001b[1;36m2019\u001b[0m, it was announced that Jagger would be\n",
              "undergoing heart valve replacement surgery, forcing the band to postpone the \u001b[1;36m17\u001b[0m-date North American leg of their No\n",
              "Filter Tour. On \u001b[1;36m4\u001b[0m April \u001b[1;36m2019\u001b[0m, it was announced that Jagger had completed his heart valve procedure in New York, was\n",
              "recovering \u001b[1m(\u001b[0min hospital\u001b[1m)\u001b[0m and could be released in the following few days. On \u001b[1;36m16\u001b[0m May, the Rolling Stones announced \n",
              "that the No Filter Tour would resume on \u001b[1;36m21\u001b[0m June with the \u001b[1;36m17\u001b[0m postponed dates rescheduled up to the end of August. In\n",
              "March \u001b[1;36m2020\u001b[0m, the No Filter Tour was postponed due to the COVID-\u001b[1;36m19\u001b[0m pandemic.\n",
              "The Rolling Stones—featuring Jagger, Richards, Watts, and Wood at their homes—were one of the headline acts on \n",
              "Global Citizen's One World: Together at Home on-line and on-screen concert on \u001b[1;36m18\u001b[0m April \u001b[1;36m2020\u001b[0m, a global event \n",
              "featuring dozens of artists and comedians to support frontline healthcare workers and the World Health Organization\n",
              "during the COVID-\u001b[1;36m19\u001b[0m pandemic. On \u001b[1;36m23\u001b[0m April, Jagger announced through his Facebook page the release \u001b[1m(\u001b[0mthe same day at \n",
              "\u001b[1;92m5:00\u001b[0m pm BST\u001b[1m)\u001b[0m of the single \u001b[32m\"Living in a Ghost Town\"\u001b[0m, a new Rolling Stones song recorded in London and Los Angeles \n",
              "in \u001b[1;36m2019\u001b[0m and finished in isolation \u001b[1m(\u001b[0mpart of the new material that the band were recording in the studio before the \n",
              "COVID-\u001b[1;36m19\u001b[0m lockdown\u001b[1m)\u001b[0m, a song that the band \u001b[32m\"thought would resonate through the times we're living in\"\u001b[0m and their first\n",
              "original one since \u001b[1;36m2012\u001b[0m. \n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">883fcd200df5f57d06cb97715779c19ecf3c3989e228fa1bb4110587dce80242</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'They became the </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">highest-earning live act of 2021, surpassing Taylor Swift; since 2018 the two have t...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">Rolling Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Rolling_Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">83</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">69977</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.8192363429987537</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35m883fcd200df5f57d06cb97715779c19ecf3c3989e228fa1bb4110587dce80242\u001b[0m, content: \u001b[32m'They became the \u001b[0m\n",
              "\u001b[32mhighest-earning live act of 2021, surpassing Taylor Swift; since 2018 the two have t...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The \u001b[0m\n",
              "\u001b[32mRolling Stones'\u001b[0m, \u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Rolling_Stones'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m83\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m69977\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.8192363429987537\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">They became the highest-earning live act of <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2021</span>, surpassing Taylor Swift; since <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2018</span> the two have traded the top \n",
              "two spots. The band began a new tour in <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2022</span>, with Jordan on drums.\n",
              "\n",
              "</pre>\n"
            ],
            "text/plain": [
              "They became the highest-earning live act of \u001b[1;36m2021\u001b[0m, surpassing Taylor Swift; since \u001b[1;36m2018\u001b[0m the two have traded the top \n",
              "two spots. The band began a new tour in \u001b[1;36m2022\u001b[0m, with Jordan on drums.\n",
              "\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">Document</span><span style=\"font-weight: bold\">(</span><span style=\"color: #808000; text-decoration-color: #808000\">id</span>=<span style=\"color: #800080; text-decoration-color: #800080\">3f0508cfeba59648a532b8205b75f8856b6db5baa4ddbc078e4879020484dbb9</span>, content: <span style=\"color: #008000; text-decoration-color: #008000\">'Four months later, it was </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">reported that Wyman would return for a song, more than 30 years after his ...'</span>, meta: <span style=\"font-weight: bold\">{</span><span style=\"color: #008000; text-decoration-color: #008000\">'title'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'The Rolling </span>\n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'url'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'https://en.wikipedia.org/wiki/The_Rolling_Stones'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'source_id'</span>: \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'page_number'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008000; text-decoration-color: #008000\">'split_id'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">85</span>, \n",
              "<span style=\"color: #008000; text-decoration-color: #008000\">'split_idx_start'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">70474</span><span style=\"font-weight: bold\">}</span>, score: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0.819044859805792</span><span style=\"font-weight: bold\">)</span>\n",
              "</pre>\n"
            ],
            "text/plain": [
              "\u001b[1;35mDocument\u001b[0m\u001b[1m(\u001b[0m\u001b[33mid\u001b[0m=\u001b[35m3f0508cfeba59648a532b8205b75f8856b6db5baa4ddbc078e4879020484dbb9\u001b[0m, content: \u001b[32m'Four months later, it was \u001b[0m\n",
              "\u001b[32mreported that Wyman would return for a song, more than 30 years after his ...'\u001b[0m, meta: \u001b[1m{\u001b[0m\u001b[32m'title'\u001b[0m: \u001b[32m'The Rolling \u001b[0m\n",
              "\u001b[32mStones'\u001b[0m, \u001b[32m'url'\u001b[0m: \u001b[32m'https://en.wikipedia.org/wiki/The_Rolling_Stones'\u001b[0m, \u001b[32m'source_id'\u001b[0m: \n",
              "\u001b[32m'f6fdabc7d1b1a48945296ccae41190adca558a73682abcd007ddc6aff4f50277'\u001b[0m, \u001b[32m'page_number'\u001b[0m: \u001b[1;36m1\u001b[0m, \u001b[32m'split_id'\u001b[0m: \u001b[1;36m85\u001b[0m, \n",
              "\u001b[32m'split_idx_start'\u001b[0m: \u001b[1;36m70474\u001b[0m\u001b[1m}\u001b[0m, score: \u001b[1;36m0.819044859805792\u001b[0m\u001b[1m)\u001b[0m\n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        },
        {
          "data": {
            "text/html": [
              "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">Four months later, it was reported that Wyman would return for a song, more than <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">30</span> years after his departure from \n",
              "the band. In August <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2023</span>, media outlets reported, based on an advertisement in a local UK newspaper, that a new \n",
              "Stones album might be released in September <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2023</span>. \n",
              "</pre>\n"
            ],
            "text/plain": [
              "Four months later, it was reported that Wyman would return for a song, more than \u001b[1;36m30\u001b[0m years after his departure from \n",
              "the band. In August \u001b[1;36m2023\u001b[0m, media outlets reported, based on an advertisement in a local UK newspaper, that a new \n",
              "Stones album might be released in September \u001b[1;36m2023\u001b[0m. \n"
            ]
          },
          "metadata": {},
          "output_type": "display_data"
        }
      ],
      "source": [
        "# embedding meaningful metadata\n",
        "\n",
        "res=retrieval_pipe_w_embedded_metadata.run({\"text_embedder\":{\"text\":\"What announcements did the band The Cure make in 2022?\"}})\n",
        "for doc in res['retriever']['documents']:\n",
        "  rich.print(doc)\n",
        "  rich.print(doc.content)"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "-kTFEIKR6JOU"
      },
      "source": [
        "✅ some Documents are relevant"
      ]
    },
    {
      "cell_type": "markdown",
      "metadata": {
        "id": "UvUb-deT6a05"
      },
      "source": [
        "## ⚠️ Notes of caution\n",
        "\n",
        "- This technique is not a silver bullet\n",
        "- It works well when the embedded metadata are meaningful and distinctive\n",
        "- I would say that the embedded metadata should be meaningful from the perspective of the embedding model. For example, I don't expect embedding numbers to work well."
      ]
    }
  ],
  "metadata": {
    "accelerator": "GPU",
    "colab": {
      "gpuType": "T4",
      "provenance": [],
      "toc_visible": true
    },
    "kernelspec": {
      "display_name": "Python 3",
      "name": "python3"
    },
    "language_info": {
      "codemirror_mode": {
        "name": "ipython",
        "version": 3
      },
      "file_extension": ".py",
      "mimetype": "text/x-python",
      "name": "python",
      "nbconvert_exporter": "python",
      "pygments_lexer": "ipython3",
      "version": "3.9.7"
    },
    "widgets": {
      "application/vnd.jupyter.widget-state+json": {
        "00b0cd4e965e4dd9a4e0ffbe024e7afa": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_e1a86735734842d488780957a4936cb3",
            "max": 67907,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_b4a1d0b6b2934e1cb028e142cd3cd969",
            "value": 67907
          }
        },
        "00bdb521e52e47f7be4758eb2bdc1143": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "0140ffff36ce482cbaa009b5fde90173": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_380d1c9832984940933a744db2fa5669",
              "IPY_MODEL_659fa8c69a4d4872851ff4378b62af5c",
              "IPY_MODEL_a4a26e6968e548959ee2ecb27cbf10fd"
            ],
            "layout": "IPY_MODEL_4e20d270e95345dbb63b7ec9a52d799d"
          }
        },
        "0447bc5592ed41a7ac0088e2e06e6ef4": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "04490bdfc25049ccb484381de0cd8f39": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "06933a7d9acb493d9f70bf8faddfd45d": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "06d7277e5f39484ebd3f026e01fb3240": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_3f8be713beba40e4abd1f5f2e2b13843",
            "placeholder": "​",
            "style": "IPY_MODEL_4a32e10c6bc447c8862e54e5cc88ffa7",
            "value": "tokenizer.json: 100%"
          }
        },
        "071ac3df9bd7475cb92433ade97fcff1": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "0810ff373da54f57af817f78b264e5ee": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "093b3c6621574a699cd3ca1b362010c3": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "0965237f18734f34a3534c8ae9f0060b": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "09ccbbd63bac4a7f8d55a973d007b3e3": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "0a8a8cd678694b3d9cb92e76462c93e6": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_83b72b4343bf4b5db24d85f4337ca043",
            "placeholder": "​",
            "style": "IPY_MODEL_e03d34f8dc524a47b4a6143d1db83622",
            "value": " 57.0/57.0 [00:00&lt;00:00, 3.66kB/s]"
          }
        },
        "0afba6378ce94b7cba19c02383d82138": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "0b28d570086349dead9d419764eda7ae": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "0b3e524ccaca4812b79c3158eed318d5": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_405f6be62ac14dbdb1a5ca2d334d9a71",
            "placeholder": "​",
            "style": "IPY_MODEL_8335ea49abe54acfbe524db99ccb7b92",
            "value": "sentence_bert_config.json: 100%"
          }
        },
        "0bdd0cac384844939be8a573bc8e5c71": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_7c8fa63a695141a8a5a45ea6ee734bdd",
            "max": 342,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_2df4b54a4dd34fddb6ff7d11e94cd298",
            "value": 342
          }
        },
        "0c78a11f49114eeaa803ff25ef362552": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_96a0367b059143389232b48f524764be",
              "IPY_MODEL_18f837c559314f5cacd084ffb89c5f67",
              "IPY_MODEL_fed4a623601a4ec38a56df48608e3e7c"
            ],
            "layout": "IPY_MODEL_408bb79e04084f1c9eb44e432b5bd819"
          }
        },
        "0d04fde0f5ad47359c10c5266e6c1b99": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "0de708daf3144cdf893541c2309b199b": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "0e17381e7e9a4b6c944410b8b6938ad5": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "0f006c0bd9b5432699e285b306bee7e0": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "0fb9e7662d07430f9ad77775266fb5e7": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_47a7ad15780741418e6d206251d11946",
              "IPY_MODEL_4f5ee5366fd94a7eb6710764f4cc0268",
              "IPY_MODEL_d7f7057c61f641208739570867cb473f"
            ],
            "layout": "IPY_MODEL_688378a881fc424f98d02bbb9ac258f9"
          }
        },
        "11df5614f4514c27befc60a71fa9943c": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "141043ce962d4ca684d089e7dfecfaf2": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "161e5dce662f47fa90399c01537a47f4": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "164a148ff052430797da54028837390a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_d7a1edbfaea94123ab5f438b56c87ed8",
            "max": 1519,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_df085cb992eb4111ae6740f3d6de6dc1",
            "value": 1519
          }
        },
        "18371b65b5834f3f900303e226f57408": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "1839943ae80e4908b222950faac01c70": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "185ffc82c64f4c6a9bd4e73807393c64": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_991e61931ef14399ac17e939d888bd90",
            "placeholder": "​",
            "style": "IPY_MODEL_58921ba244b540758535c2870c3513cf",
            "value": " 712k/712k [00:00&lt;00:00, 5.88MB/s]"
          }
        },
        "189ba7128b934ee09bbb9b8d05531142": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_e4de4e8945424efeaf54e1c1d6535b7b",
              "IPY_MODEL_38ab3f00051e4aa3bc657e0af3252bd6",
              "IPY_MODEL_7c1e42b993e6436b8c57257d6136fe76"
            ],
            "layout": "IPY_MODEL_28c67420a1ee4295b028c857a4ffd667"
          }
        },
        "18f837c559314f5cacd084ffb89c5f67": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_3a5d8038b46242308d4f6f5ce36161a3",
            "max": 1,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_0e17381e7e9a4b6c944410b8b6938ad5",
            "value": 1
          }
        },
        "1a91b6bc31a44a759d8684021a89846d": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "1b257991861c42ed884f1fd91c409bf6": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "1b5b4487f1254c598346b4229897f700": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "1c776397ab7646958c9f5083979c26ad": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_d6b201054da545dabce4f37f8ce09be4",
              "IPY_MODEL_4ba834916825416cab0630e4a355d39f",
              "IPY_MODEL_39007bb2e3ea4938a7161d7cb10a8889"
            ],
            "layout": "IPY_MODEL_2457335d9e3c4f32a37e989266cb4b3b"
          }
        },
        "1cdd1713053a49a6b47942d6ad72aca8": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "1e0fdfdec63a4d1ebd668568cc4a18d5": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "2171af346b7e4f3eafcc5e3cf9437a01": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "2457335d9e3c4f32a37e989266cb4b3b": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "2838945683664b1aae3e79f58d248ff7": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_e2593df38ffe474fba529c07bc1a6e84",
              "IPY_MODEL_c29a8e4430ad4feabc7ef9cd2a4927db",
              "IPY_MODEL_b95d92d85c08441e8d6d8d4cf6f47626"
            ],
            "layout": "IPY_MODEL_9a33cd0228054fb497003c240a15ed9f"
          }
        },
        "28c67420a1ee4295b028c857a4ffd667": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "29f920c275574d3bb0c13f510e306533": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "2b48bd00e347444a862726c0b2bc3a7c": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_e27820e43c78414cafceeeb4c735351e",
            "placeholder": "​",
            "style": "IPY_MODEL_0965237f18734f34a3534c8ae9f0060b",
            "value": "modules.json: 100%"
          }
        },
        "2c3b933e85154bbdb14309bc29490b8d": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "2d939f2142764fdabdee8517747418b7": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "2df4b54a4dd34fddb6ff7d11e94cd298": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "2ef6320399bd404082a6c7ff3016cf31": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "302cab9350a746f9b237f043a277f752": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "31a3379c229e47258a0a15e90802dfbc": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "31b35c827f744abf885d89fb4d5a59f2": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "33356934e7954d88a118f4fc11ea94c1": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "3356b6e8bd614625887fe82e40b15cda": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "35829cbdb00b457188bd393ac5699003": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "36e8920f9d434786891cb3abb09b9a5a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_06d7277e5f39484ebd3f026e01fb3240",
              "IPY_MODEL_da3ad668d134454aad4c5f7a216e79e0",
              "IPY_MODEL_185ffc82c64f4c6a9bd4e73807393c64"
            ],
            "layout": "IPY_MODEL_0de708daf3144cdf893541c2309b199b"
          }
        },
        "380d1c9832984940933a744db2fa5669": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_78cb2c0e9193415592e37846e8b38dbb",
            "placeholder": "​",
            "style": "IPY_MODEL_161e5dce662f47fa90399c01537a47f4",
            "value": "vocab.txt: 100%"
          }
        },
        "38ab3f00051e4aa3bc657e0af3252bd6": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_485b95ac09204b7fa76e5aafbca7d885",
            "max": 1,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_a20d4e42ab9c4863b0e85117b9ec901f",
            "value": 1
          }
        },
        "39007bb2e3ea4938a7161d7cb10a8889": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_0f006c0bd9b5432699e285b306bee7e0",
            "placeholder": "​",
            "style": "IPY_MODEL_611df5dcff9f47f29d34c0e932f22596",
            "value": " 125/125 [00:00&lt;00:00, 4.31kB/s]"
          }
        },
        "396fbe611b7945c99e713e8936217b3d": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "39a39645efa34ee7bd7087e875b9a732": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "3a3e80d216044c029b0d4ccd880e4efa": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_771eef12136747849fdaf7d1ef1c6611",
              "IPY_MODEL_eceaf58791f44284ab35eb6c5d6bad48",
              "IPY_MODEL_48d609cede8b43a6bd9aa575eb1a60bd"
            ],
            "layout": "IPY_MODEL_577b8ff789fe45ab862ca01e6ab6d612"
          }
        },
        "3a5d8038b46242308d4f6f5ce36161a3": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "3a9d86cf0e6e4a9ca564d0994df2387c": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "3d83d1288b844dbaaf7975ae65c061e5": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "3e12bae86269467f87fadd8a8d77fee4": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "3e914db754ba447986eb5c3751263c2d": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "3f8be713beba40e4abd1f5f2e2b13843": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "405f6be62ac14dbdb1a5ca2d334d9a71": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "407e35edb74a44638908f3a3383e0089": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "408bb79e04084f1c9eb44e432b5bd819": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "41c7f94c744c499a8b49c7e1af6a0512": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "42b1102285174859aa7b3d6ca3c4b2a2": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "42bc3ea8d15b4828b7bbb05bab9945fb": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "42cbe8abb9d7464abbba79d71d87457a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_3356b6e8bd614625887fe82e40b15cda",
            "max": 57,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_ca845fcc28804ee584f74474e25ec9aa",
            "value": 57
          }
        },
        "451192c1b74048f6a3d817e101424607": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "453707974b874bbca7956194c77eb2ec": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "4563c9ce63ed46128ebbb35cdeb3b925": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "47a7ad15780741418e6d206251d11946": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_9869355d0bbf40f4ae02c5e449450ca7",
            "placeholder": "​",
            "style": "IPY_MODEL_96e98855f5324820b8624eb675237e0e",
            "value": "onnx/vocab.txt: 100%"
          }
        },
        "485b95ac09204b7fa76e5aafbca7d885": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "48d609cede8b43a6bd9aa575eb1a60bd": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_67c9a21408bd453bb7e7e3b37d01ac58",
            "placeholder": "​",
            "style": "IPY_MODEL_2c3b933e85154bbdb14309bc29490b8d",
            "value": " 1.34G/1.34G [00:10&lt;00:00, 222MB/s]"
          }
        },
        "48ff438693a1471d8d4db28d0362b0d8": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "4a32e10c6bc447c8862e54e5cc88ffa7": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "4acbd3461b3e452f916581c9b130ec66": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_8a27a6fa06a240fb98b8cdca44954182",
              "IPY_MODEL_557e7a5bcb5542f0971ef1755b50c8cc",
              "IPY_MODEL_e738a41f03864da087b076d8dd1621b5"
            ],
            "layout": "IPY_MODEL_1cdd1713053a49a6b47942d6ad72aca8"
          }
        },
        "4ba834916825416cab0630e4a355d39f": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_3d83d1288b844dbaaf7975ae65c061e5",
            "max": 125,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_d449356c44fc4789bf9e19f958bf7f94",
            "value": 125
          }
        },
        "4e20d270e95345dbb63b7ec9a52d799d": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "4f5ee5366fd94a7eb6710764f4cc0268": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_efa2c9b786234ffd98a7e906c4da37ba",
            "max": 231508,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_453707974b874bbca7956194c77eb2ec",
            "value": 231508
          }
        },
        "4f7a9428d4d1494ca482d9e8fe770382": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_65a3201a44d342c49396d8456a13c5b7",
            "placeholder": "​",
            "style": "IPY_MODEL_e568639ce6b7450b8e99f542a54b6c0e",
            "value": "tokenizer_config.json: 100%"
          }
        },
        "51a92dc3f5d748c8b27a1a7f3eb7e6b4": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "54478deaa6334ce7812dfabcbf4b2c40": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_819f0b6b631549c3bf524f3705d58ca9",
              "IPY_MODEL_0bdd0cac384844939be8a573bc8e5c71",
              "IPY_MODEL_5c7da1e1c35b46ca945f1c577f1b5cef"
            ],
            "layout": "IPY_MODEL_af6b9abb325a423d824e6fb36f124310"
          }
        },
        "557e7a5bcb5542f0971ef1755b50c8cc": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_6ecfb002a4714977afb22d0f68752944",
            "max": 1,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_85a0188f57f24196a5880d12e0e9ba87",
            "value": 1
          }
        },
        "568e684cc3a74d3f8b55310423dfe786": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_4f7a9428d4d1494ca482d9e8fe770382",
              "IPY_MODEL_6a2584822fa342029657a610e79d2d60",
              "IPY_MODEL_d8a33f9f5fd04a2aa24da203f6c26793"
            ],
            "layout": "IPY_MODEL_d958663281d44bae89fba9381428be59"
          }
        },
        "577b8ff789fe45ab862ca01e6ab6d612": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "58921ba244b540758535c2870c3513cf": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "5c7da1e1c35b46ca945f1c577f1b5cef": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_35829cbdb00b457188bd393ac5699003",
            "placeholder": "​",
            "style": "IPY_MODEL_407e35edb74a44638908f3a3383e0089",
            "value": " 342/342 [00:00&lt;00:00, 13.3kB/s]"
          }
        },
        "5cad94618a074a8d96373c1b9a9a4077": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "5e0a6f59c6d94a87a11815238503bb42": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_cb6d13935ed8468e912c90aa3c39469b",
              "IPY_MODEL_c2352a167cec47c9b94c896df203c724",
              "IPY_MODEL_d6fe8a421c0a4b04b67171367fe94adb"
            ],
            "layout": "IPY_MODEL_a995293d63a94c84b3c578c4ff21b9a9"
          }
        },
        "5f9481de6dbe4072ab1330992a912c38": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "606216fd78fe48258607f090d347241d": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "60cae20528454d6882737e49e1b0cdc3": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "611df5dcff9f47f29d34c0e932f22596": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "622594a7a4174ca7b954d3fd8825c872": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "62a307b5846c4ac985c645a82f7fe4bf": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_db5b5702e2eb405e9382548172d4b0da",
              "IPY_MODEL_a09a7166b5bd4a1b9989452c4dc2a6ad",
              "IPY_MODEL_cf217e27d1034c7ab5d7bec5dbb81df3"
            ],
            "layout": "IPY_MODEL_7997002e4c4549a086fa89f561478299"
          }
        },
        "62af02903d7f4da7b7fe65da03988838": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "644043e16c0b4c25bf1ec7897beb0827": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_9cb64bcb98ae4d898472e259dfd5155c",
            "max": 632,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_d4d17ec9c65f4e2db103ff7470928c71",
            "value": 632
          }
        },
        "6550a8d9a948412ca9a397bac5757b65": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "659fa8c69a4d4872851ff4378b62af5c": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_d191f66e76c341b8893d219611c1ee23",
            "max": 231508,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_c05a6a870a6f45799b5608283f7cecf7",
            "value": 231508
          }
        },
        "65a3201a44d342c49396d8456a13c5b7": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "67c9a21408bd453bb7e7e3b37d01ac58": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "67cbf580cb1b420f998b048e53638822": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "688378a881fc424f98d02bbb9ac258f9": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "69e37606c84b4faa9dbd26e374181639": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_b4186e4e041a4a54b60a8dadc65e5c74",
              "IPY_MODEL_d936034f96b94edb8a96e02f31fefc24",
              "IPY_MODEL_9e72dab5dd94404ea4cc8cf001f52862"
            ],
            "layout": "IPY_MODEL_5cad94618a074a8d96373c1b9a9a4077"
          }
        },
        "6a2584822fa342029657a610e79d2d60": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_451192c1b74048f6a3d817e101424607",
            "max": 342,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_ab66ce1adf454f5080e458441431cf6f",
            "value": 342
          }
        },
        "6ac443eb40cf4bbcbec2fc3a3520651e": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "6c85715d398647378c9c9a870a2e5dbb": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "6eb22b9846694246a519c24c9b464544": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "6ecfb002a4714977afb22d0f68752944": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "71e55051db594e4fb5c747b02bb78c1a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_1b5b4487f1254c598346b4229897f700",
            "placeholder": "​",
            "style": "IPY_MODEL_7d60033566b044bf8730d894e8dfd925",
            "value": "onnx/tokenizer.json: 100%"
          }
        },
        "72a7249fc1d04df78e25909fbfd277a1": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "72c396bef5e04e91b012595e8d94d6ef": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "731ef94ece2c429f85bfd2de2d7e29eb": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_29f920c275574d3bb0c13f510e306533",
            "max": 39,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_c412d464306d4f76938dc42041e15bd6",
            "value": 39
          }
        },
        "735c8cc77bc4451689f8ea35f5bdc346": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "7569af40cf104b4e8f1ec818b41473be": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "771eef12136747849fdaf7d1ef1c6611": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_31a3379c229e47258a0a15e90802dfbc",
            "placeholder": "​",
            "style": "IPY_MODEL_33356934e7954d88a118f4fc11ea94c1",
            "value": "model.onnx: 100%"
          }
        },
        "7870669c4ef44a69b727fa374cabeb49": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_72a7249fc1d04df78e25909fbfd277a1",
            "placeholder": "​",
            "style": "IPY_MODEL_b2db8bb9a9334896830e0e54bcafeea1",
            "value": " 39/39 [00:17&lt;00:00,  5.15it/s]"
          }
        },
        "78cb2c0e9193415592e37846e8b38dbb": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "79347b04af814640b213355d7c66d0ea": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "7951d5f9080249eab4f58a22ad1c6400": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "7997002e4c4549a086fa89f561478299": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "7c1e42b993e6436b8c57257d6136fe76": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_7951d5f9080249eab4f58a22ad1c6400",
            "placeholder": "​",
            "style": "IPY_MODEL_d4a511821e47400eb013ae818471160a",
            "value": " 1/1 [00:00&lt;00:00, 12.86it/s]"
          }
        },
        "7c8fa63a695141a8a5a45ea6ee734bdd": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "7d60033566b044bf8730d894e8dfd925": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "7f3983490451465d9429fc76e9408a98": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "80234a234ba44d769c28a67337f89561": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "81900c0dfe7745abbb698953a6fbe7ba": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "819bf42af44c4d46a448e4ac3536e821": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "819f0b6b631549c3bf524f3705d58ca9": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_b89e99145a4d446a8f4c83dc90c4a4dd",
            "placeholder": "​",
            "style": "IPY_MODEL_93e33564998047b990e67226f66e83d8",
            "value": "onnx/tokenizer_config.json: 100%"
          }
        },
        "8335ea49abe54acfbe524db99ccb7b92": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "83b72b4343bf4b5db24d85f4337ca043": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "85801cd06c5643eb9f0357b4d0cbd192": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_9cee63ba18bd4a828d7a8b1a1c061c5b",
              "IPY_MODEL_00b0cd4e965e4dd9a4e0ffbe024e7afa",
              "IPY_MODEL_a8a49aa5991149ab82eabe45d6f4f9d1"
            ],
            "layout": "IPY_MODEL_6eb22b9846694246a519c24c9b464544"
          }
        },
        "85a0188f57f24196a5880d12e0e9ba87": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "866a2b8bc8f84429b35e01a5adb7f7a7": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "87435cee20484d789e38975d99ae801f": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "8796c0bc0d5b44bca44aa0cee9a30705": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "8904fab8feb64930943b958bdbd32871": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "8a27a6fa06a240fb98b8cdca44954182": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_a51c9096f7cb49a1a0e84b0756b73cfc",
            "placeholder": "​",
            "style": "IPY_MODEL_d0d86a11e91e45e5b5bdc50f24b3b031",
            "value": "Batches: 100%"
          }
        },
        "8cc22c811b9641548cccf8a482f94fd5": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "8da172ebc51a4f73a759847e422bac00": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "8f18428d73824999947958c0a0380765": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "8f477d665d78454ea753c5e4cb2d86cf": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "91b5b604f0c947388b4bd9dd7ef1bc16": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_adc4842a46974ff3854bdbddcfb35f2c",
            "placeholder": "​",
            "style": "IPY_MODEL_3a9d86cf0e6e4a9ca564d0994df2387c",
            "value": "1_Pooling/config.json: 100%"
          }
        },
        "93e33564998047b990e67226f66e83d8": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "96181b8aecc24872bc5489684cf23df1": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "96a0367b059143389232b48f524764be": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_6c85715d398647378c9c9a870a2e5dbb",
            "placeholder": "​",
            "style": "IPY_MODEL_1839943ae80e4908b222950faac01c70",
            "value": "Batches: 100%"
          }
        },
        "96e98855f5324820b8624eb675237e0e": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "9775f217d6104d0a9c30a0e832782178": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "98342118c8514f54be4b6431b1066c81": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "9869355d0bbf40f4ae02c5e449450ca7": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "991e61931ef14399ac17e939d888bd90": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "9a24adaa0d4444e8914efe50f52befad": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "9a33cd0228054fb497003c240a15ed9f": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "9c91a15c9a504eb28437918ad5ccaa00": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "9cb64bcb98ae4d898472e259dfd5155c": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "9cbab755f9d64fd998e66fc43f62710e": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "9cee63ba18bd4a828d7a8b1a1c061c5b": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_deb4bba3ecff480bad7f4caae8d34a34",
            "placeholder": "​",
            "style": "IPY_MODEL_6550a8d9a948412ca9a397bac5757b65",
            "value": "README.md: 100%"
          }
        },
        "9e2fd7a22e1046b4a62b480746d0d1c7": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "9e72dab5dd94404ea4cc8cf001f52862": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_04490bdfc25049ccb484381de0cd8f39",
            "placeholder": "​",
            "style": "IPY_MODEL_f3e0f6bad5e44fda946536e384617adb",
            "value": " 1/1 [00:00&lt;00:00, 12.52it/s]"
          }
        },
        "9f2593fbc82a458bbd31558b8ba4c18a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_e3fb17fbc27a4478bddc752e60996db7",
            "placeholder": "​",
            "style": "IPY_MODEL_2ef6320399bd404082a6c7ff3016cf31",
            "value": "pytorch_model.bin: 100%"
          }
        },
        "a09a7166b5bd4a1b9989452c4dc2a6ad": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_b55da1de36dd4d51949d06ba35e04ecd",
            "max": 670332568,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_0b28d570086349dead9d419764eda7ae",
            "value": 670332568
          }
        },
        "a0acabd9db404948b797358675aeebb5": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_87435cee20484d789e38975d99ae801f",
            "placeholder": "​",
            "style": "IPY_MODEL_2d939f2142764fdabdee8517747418b7",
            "value": " 712k/712k [00:00&lt;00:00, 4.32MB/s]"
          }
        },
        "a20d4e42ab9c4863b0e85117b9ec901f": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "a394d242b6dd453ca1ca28da27b782df": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_91b5b604f0c947388b4bd9dd7ef1bc16",
              "IPY_MODEL_dc759cc2e9ea4014a73374590744a662",
              "IPY_MODEL_dd11f701c64b4504b94669de9840f62a"
            ],
            "layout": "IPY_MODEL_8f18428d73824999947958c0a0380765"
          }
        },
        "a4a26e6968e548959ee2ecb27cbf10fd": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_09ccbbd63bac4a7f8d55a973d007b3e3",
            "placeholder": "​",
            "style": "IPY_MODEL_8796c0bc0d5b44bca44aa0cee9a30705",
            "value": " 232k/232k [00:00&lt;00:00, 14.7MB/s]"
          }
        },
        "a51c9096f7cb49a1a0e84b0756b73cfc": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "a5831a56c3df43e6a4dacebdd7e59146": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_093b3c6621574a699cd3ca1b362010c3",
            "max": 125,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_81900c0dfe7745abbb698953a6fbe7ba",
            "value": 125
          }
        },
        "a67ff3e7045341398610e2c273e310f3": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "a6bab9e7387c482aafa4509da28ecc57": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_d8e0c92b94f84965b9c8b51aff800168",
              "IPY_MODEL_a5831a56c3df43e6a4dacebdd7e59146",
              "IPY_MODEL_e7a22be801344e0aba3e4a6ce0b3363c"
            ],
            "layout": "IPY_MODEL_0d04fde0f5ad47359c10c5266e6c1b99"
          }
        },
        "a6c096ae09f847b7a5d71bf6aff7b4e3": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "a7ea3010410b460c8fabbb115786db2e": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_42b1102285174859aa7b3d6ca3c4b2a2",
            "placeholder": "​",
            "style": "IPY_MODEL_72c396bef5e04e91b012595e8d94d6ef",
            "value": ".gitattributes: 100%"
          }
        },
        "a8a49aa5991149ab82eabe45d6f4f9d1": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_d802291bed0d4d21973bde6be951eb5c",
            "placeholder": "​",
            "style": "IPY_MODEL_ba1b372f506a48f399213088d3344153",
            "value": " 67.9k/67.9k [00:00&lt;00:00, 831kB/s]"
          }
        },
        "a995293d63a94c84b3c578c4ff21b9a9": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "ab66ce1adf454f5080e458441431cf6f": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "ab69d4ea42bb48b9b3991e96013fbcff": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "adc4842a46974ff3854bdbddcfb35f2c": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "af6b9abb325a423d824e6fb36f124310": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "b1b2e3423bb041cd88515d714cbf112e": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "b2db8bb9a9334896830e0e54bcafeea1": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "b4186e4e041a4a54b60a8dadc65e5c74": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_819bf42af44c4d46a448e4ac3536e821",
            "placeholder": "​",
            "style": "IPY_MODEL_ab69d4ea42bb48b9b3991e96013fbcff",
            "value": "Batches: 100%"
          }
        },
        "b4a1d0b6b2934e1cb028e142cd3cd969": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "b55da1de36dd4d51949d06ba35e04ecd": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "b6a80c6bbf194e59be0368fd3376e30e": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "b89e99145a4d446a8f4c83dc90c4a4dd": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "b95d92d85c08441e8d6d8d4cf6f47626": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_3e12bae86269467f87fadd8a8d77fee4",
            "placeholder": "​",
            "style": "IPY_MODEL_f7dd70f7a6c04a32a8af6a8a4a5da06f",
            "value": " 619/619 [00:00&lt;00:00, 51.0kB/s]"
          }
        },
        "ba1b372f506a48f399213088d3344153": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "ba1e08871d2e449cbb768e76cc1850ed": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_8cc22c811b9641548cccf8a482f94fd5",
            "max": 385,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_f3a98ec0e7fe47668bcd78852f96483a",
            "value": 385
          }
        },
        "bb3dd998044845a79f50232e3d52f23e": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_9a24adaa0d4444e8914efe50f52befad",
            "max": 711661,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_bfd512ee41844a37bdf9ba14a32f2c32",
            "value": 711661
          }
        },
        "bb8ee4d769bf4e40899b292bdab06fec": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "bbce5355895749bcb9c588883dd3d7a9": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_a6c096ae09f847b7a5d71bf6aff7b4e3",
            "placeholder": "​",
            "style": "IPY_MODEL_fd8fb98fd4e14c868d90919c80b56576",
            "value": "onnx/config.json: 100%"
          }
        },
        "bfd512ee41844a37bdf9ba14a32f2c32": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "c05a6a870a6f45799b5608283f7cecf7": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "c1c946c21c334846906df497788d0024": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "c2352a167cec47c9b94c896df203c724": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_c88ea772975a4faa968de747cd77192f",
            "max": 39,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_396fbe611b7945c99e713e8936217b3d",
            "value": 39
          }
        },
        "c29a8e4430ad4feabc7ef9cd2a4927db": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_1a91b6bc31a44a759d8684021a89846d",
            "max": 619,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_e62ed59d422f41f3993e5dc46fa1558d",
            "value": 619
          }
        },
        "c412d464306d4f76938dc42041e15bd6": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "c5f3b944c3ab4b239a0f6b21b9ddf3f6": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_0afba6378ce94b7cba19c02383d82138",
            "placeholder": "​",
            "style": "IPY_MODEL_51a92dc3f5d748c8b27a1a7f3eb7e6b4",
            "value": " 1.52k/1.52k [00:00&lt;00:00, 82.8kB/s]"
          }
        },
        "c88ea772975a4faa968de747cd77192f": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "c9745b34af19432292e14a3ae4021c88": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_2b48bd00e347444a862726c0b2bc3a7c",
              "IPY_MODEL_ba1e08871d2e449cbb768e76cc1850ed",
              "IPY_MODEL_f2feaf64a5e94038a1e1ef010a497318"
            ],
            "layout": "IPY_MODEL_f3e0e91ddeda44b0b98bd58f9044bd3f"
          }
        },
        "ca845fcc28804ee584f74474e25ec9aa": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "cb6d13935ed8468e912c90aa3c39469b": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_0447bc5592ed41a7ac0088e2e06e6ef4",
            "placeholder": "​",
            "style": "IPY_MODEL_dbfa3647341246c6a5e5ee66a4a40514",
            "value": "Batches: 100%"
          }
        },
        "cf217e27d1034c7ab5d7bec5dbb81df3": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_00bdb521e52e47f7be4758eb2bdc1143",
            "placeholder": "​",
            "style": "IPY_MODEL_11df5614f4514c27befc60a71fa9943c",
            "value": " 670M/670M [00:06&lt;00:00, 161MB/s]"
          }
        },
        "d0d86a11e91e45e5b5bdc50f24b3b031": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "d191f66e76c341b8893d219611c1ee23": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "d1da6db4f1864f6ca47d47873fe7201c": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "d449356c44fc4789bf9e19f958bf7f94": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "d4a511821e47400eb013ae818471160a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "d4bac0576ebb403780f2fdbbcbc66b7d": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_d1da6db4f1864f6ca47d47873fe7201c",
            "placeholder": "​",
            "style": "IPY_MODEL_1e0fdfdec63a4d1ebd668568cc4a18d5",
            "value": "Batches: 100%"
          }
        },
        "d4d17ec9c65f4e2db103ff7470928c71": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "d6b201054da545dabce4f37f8ce09be4": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_42bc3ea8d15b4828b7bbb05bab9945fb",
            "placeholder": "​",
            "style": "IPY_MODEL_39a39645efa34ee7bd7087e875b9a732",
            "value": "onnx/special_tokens_map.json: 100%"
          }
        },
        "d6fe8a421c0a4b04b67171367fe94adb": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_0810ff373da54f57af817f78b264e5ee",
            "placeholder": "​",
            "style": "IPY_MODEL_3e914db754ba447986eb5c3751263c2d",
            "value": " 39/39 [00:17&lt;00:00,  5.60it/s]"
          }
        },
        "d7a1edbfaea94123ab5f438b56c87ed8": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "d7f7057c61f641208739570867cb473f": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_9cbab755f9d64fd998e66fc43f62710e",
            "placeholder": "​",
            "style": "IPY_MODEL_79347b04af814640b213355d7c66d0ea",
            "value": " 232k/232k [00:00&lt;00:00, 2.86MB/s]"
          }
        },
        "d802291bed0d4d21973bde6be951eb5c": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "d8a33f9f5fd04a2aa24da203f6c26793": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_9775f217d6104d0a9c30a0e832782178",
            "placeholder": "​",
            "style": "IPY_MODEL_41c7f94c744c499a8b49c7e1af6a0512",
            "value": " 342/342 [00:00&lt;00:00, 20.3kB/s]"
          }
        },
        "d8e0c92b94f84965b9c8b51aff800168": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_dd23f138cdb8472ca12f5d7a7d8b4f6b",
            "placeholder": "​",
            "style": "IPY_MODEL_5f9481de6dbe4072ab1330992a912c38",
            "value": "special_tokens_map.json: 100%"
          }
        },
        "d936034f96b94edb8a96e02f31fefc24": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_18371b65b5834f3f900303e226f57408",
            "max": 1,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_2171af346b7e4f3eafcc5e3cf9437a01",
            "value": 1
          }
        },
        "d958663281d44bae89fba9381428be59": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "da3ad668d134454aad4c5f7a216e79e0": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_48ff438693a1471d8d4db28d0362b0d8",
            "max": 711661,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_9e2fd7a22e1046b4a62b480746d0d1c7",
            "value": 711661
          }
        },
        "db5b5702e2eb405e9382548172d4b0da": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_62af02903d7f4da7b7fe65da03988838",
            "placeholder": "​",
            "style": "IPY_MODEL_7569af40cf104b4e8f1ec818b41473be",
            "value": "model.safetensors: 100%"
          }
        },
        "dbfa3647341246c6a5e5ee66a4a40514": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "dc759cc2e9ea4014a73374590744a662": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_141043ce962d4ca684d089e7dfecfaf2",
            "max": 191,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_866a2b8bc8f84429b35e01a5adb7f7a7",
            "value": 191
          }
        },
        "dd11f701c64b4504b94669de9840f62a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_a67ff3e7045341398610e2c273e310f3",
            "placeholder": "​",
            "style": "IPY_MODEL_31b35c827f744abf885d89fb4d5a59f2",
            "value": " 191/191 [00:00&lt;00:00, 13.4kB/s]"
          }
        },
        "dd23f138cdb8472ca12f5d7a7d8b4f6b": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "de942176c8de49f5aefb4b1526cea555": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_606216fd78fe48258607f090d347241d",
            "max": 670341183,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_7f3983490451465d9429fc76e9408a98",
            "value": 670341183
          }
        },
        "deb4bba3ecff480bad7f4caae8d34a34": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "df085cb992eb4111ae6740f3d6de6dc1": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "e03d34f8dc524a47b4a6143d1db83622": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "e0db5b6596224fe091a412394c0fed6a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_9c91a15c9a504eb28437918ad5ccaa00",
            "placeholder": "​",
            "style": "IPY_MODEL_6ac443eb40cf4bbcbec2fc3a3520651e",
            "value": " 632/632 [00:00&lt;00:00, 11.3kB/s]"
          }
        },
        "e1a86735734842d488780957a4936cb3": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "e1e78e936062465bb61d59beceec3bb3": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "e1e815239d2a4cf99d473483d2814916": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "e2593df38ffe474fba529c07bc1a6e84": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_735c8cc77bc4451689f8ea35f5bdc346",
            "placeholder": "​",
            "style": "IPY_MODEL_96181b8aecc24872bc5489684cf23df1",
            "value": "config.json: 100%"
          }
        },
        "e27820e43c78414cafceeeb4c735351e": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "e3fb17fbc27a4478bddc752e60996db7": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "e4de4e8945424efeaf54e1c1d6535b7b": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_67cbf580cb1b420f998b048e53638822",
            "placeholder": "​",
            "style": "IPY_MODEL_60cae20528454d6882737e49e1b0cdc3",
            "value": "Batches: 100%"
          }
        },
        "e568639ce6b7450b8e99f542a54b6c0e": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "e62ed59d422f41f3993e5dc46fa1558d": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "e738a41f03864da087b076d8dd1621b5": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_98342118c8514f54be4b6431b1066c81",
            "placeholder": "​",
            "style": "IPY_MODEL_8904fab8feb64930943b958bdbd32871",
            "value": " 1/1 [00:00&lt;00:00, 13.00it/s]"
          }
        },
        "e7a22be801344e0aba3e4a6ce0b3363c": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_bb8ee4d769bf4e40899b292bdab06fec",
            "placeholder": "​",
            "style": "IPY_MODEL_071ac3df9bd7475cb92433ade97fcff1",
            "value": " 125/125 [00:00&lt;00:00, 8.96kB/s]"
          }
        },
        "e7f403bf51ae489ba4c1512d8d367fba": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "eca6e17a3a6849a2a46f13c78f04959a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_bbce5355895749bcb9c588883dd3d7a9",
              "IPY_MODEL_644043e16c0b4c25bf1ec7897beb0827",
              "IPY_MODEL_e0db5b6596224fe091a412394c0fed6a"
            ],
            "layout": "IPY_MODEL_8da172ebc51a4f73a759847e422bac00"
          }
        },
        "eceaf58791f44284ab35eb6c5d6bad48": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "FloatProgressModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "FloatProgressModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "ProgressView",
            "bar_style": "success",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_622594a7a4174ca7b954d3fd8825c872",
            "max": 1336854258,
            "min": 0,
            "orientation": "horizontal",
            "style": "IPY_MODEL_4563c9ce63ed46128ebbb35cdeb3b925",
            "value": 1336854258
          }
        },
        "ef715191c9f94002b755a1ef108c0302": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_a7ea3010410b460c8fabbb115786db2e",
              "IPY_MODEL_164a148ff052430797da54028837390a",
              "IPY_MODEL_c5f3b944c3ab4b239a0f6b21b9ddf3f6"
            ],
            "layout": "IPY_MODEL_80234a234ba44d769c28a67337f89561"
          }
        },
        "efa2c9b786234ffd98a7e906c4da37ba": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "f01e2e83d7004d59ba988c610525576f": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_e7f403bf51ae489ba4c1512d8d367fba",
            "placeholder": "​",
            "style": "IPY_MODEL_8f477d665d78454ea753c5e4cb2d86cf",
            "value": " 670M/670M [00:02&lt;00:00, 254MB/s]"
          }
        },
        "f2feaf64a5e94038a1e1ef010a497318": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_1b257991861c42ed884f1fd91c409bf6",
            "placeholder": "​",
            "style": "IPY_MODEL_e1e78e936062465bb61d59beceec3bb3",
            "value": " 385/385 [00:00&lt;00:00, 22.7kB/s]"
          }
        },
        "f3a98ec0e7fe47668bcd78852f96483a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "ProgressStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "ProgressStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "bar_color": null,
            "description_width": ""
          }
        },
        "f3e0e91ddeda44b0b98bd58f9044bd3f": {
          "model_module": "@jupyter-widgets/base",
          "model_module_version": "1.2.0",
          "model_name": "LayoutModel",
          "state": {
            "_model_module": "@jupyter-widgets/base",
            "_model_module_version": "1.2.0",
            "_model_name": "LayoutModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "LayoutView",
            "align_content": null,
            "align_items": null,
            "align_self": null,
            "border": null,
            "bottom": null,
            "display": null,
            "flex": null,
            "flex_flow": null,
            "grid_area": null,
            "grid_auto_columns": null,
            "grid_auto_flow": null,
            "grid_auto_rows": null,
            "grid_column": null,
            "grid_gap": null,
            "grid_row": null,
            "grid_template_areas": null,
            "grid_template_columns": null,
            "grid_template_rows": null,
            "height": null,
            "justify_content": null,
            "justify_items": null,
            "left": null,
            "margin": null,
            "max_height": null,
            "max_width": null,
            "min_height": null,
            "min_width": null,
            "object_fit": null,
            "object_position": null,
            "order": null,
            "overflow": null,
            "overflow_x": null,
            "overflow_y": null,
            "padding": null,
            "right": null,
            "top": null,
            "visibility": null,
            "width": null
          }
        },
        "f3e0f6bad5e44fda946536e384617adb": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "f4266f45ba534656b2a46be163ce3a4f": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_71e55051db594e4fb5c747b02bb78c1a",
              "IPY_MODEL_bb3dd998044845a79f50232e3d52f23e",
              "IPY_MODEL_a0acabd9db404948b797358675aeebb5"
            ],
            "layout": "IPY_MODEL_06933a7d9acb493d9f70bf8faddfd45d"
          }
        },
        "f64c947177cf4307b3ad8c8c3344ac0a": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_0b3e524ccaca4812b79c3158eed318d5",
              "IPY_MODEL_42cbe8abb9d7464abbba79d71d87457a",
              "IPY_MODEL_0a8a8cd678694b3d9cb92e76462c93e6"
            ],
            "layout": "IPY_MODEL_b6a80c6bbf194e59be0368fd3376e30e"
          }
        },
        "f7dd70f7a6c04a32a8af6a8a4a5da06f": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "fb526c28ca844ee1a32f2cdfef3c3dd4": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_d4bac0576ebb403780f2fdbbcbc66b7d",
              "IPY_MODEL_731ef94ece2c429f85bfd2de2d7e29eb",
              "IPY_MODEL_7870669c4ef44a69b727fa374cabeb49"
            ],
            "layout": "IPY_MODEL_e1e815239d2a4cf99d473483d2814916"
          }
        },
        "fd8fb98fd4e14c868d90919c80b56576": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "DescriptionStyleModel",
          "state": {
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "DescriptionStyleModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/base",
            "_view_module_version": "1.2.0",
            "_view_name": "StyleView",
            "description_width": ""
          }
        },
        "fe9e21829bb944af8660db273c588c25": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HBoxModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HBoxModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HBoxView",
            "box_style": "",
            "children": [
              "IPY_MODEL_9f2593fbc82a458bbd31558b8ba4c18a",
              "IPY_MODEL_de942176c8de49f5aefb4b1526cea555",
              "IPY_MODEL_f01e2e83d7004d59ba988c610525576f"
            ],
            "layout": "IPY_MODEL_b1b2e3423bb041cd88515d714cbf112e"
          }
        },
        "fed4a623601a4ec38a56df48608e3e7c": {
          "model_module": "@jupyter-widgets/controls",
          "model_module_version": "1.5.0",
          "model_name": "HTMLModel",
          "state": {
            "_dom_classes": [],
            "_model_module": "@jupyter-widgets/controls",
            "_model_module_version": "1.5.0",
            "_model_name": "HTMLModel",
            "_view_count": null,
            "_view_module": "@jupyter-widgets/controls",
            "_view_module_version": "1.5.0",
            "_view_name": "HTMLView",
            "description": "",
            "description_tooltip": null,
            "layout": "IPY_MODEL_302cab9350a746f9b237f043a277f752",
            "placeholder": "​",
            "style": "IPY_MODEL_c1c946c21c334846906df497788d0024",
            "value": " 1/1 [00:00&lt;00:00,  6.37it/s]"
          }
        }
      }
    }
  },
  "nbformat": 4,
  "nbformat_minor": 0
}
