mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-21 07:51:40 +00:00

* Modify __str__ and __repr__ for Document and Answer * Rename QueryClassifier in Tutorial11 * Improve the output of tutorial1 * Make the output of Tutorial8 a bit less dense * Add a print_questions util to print the output of question generating pipelines * Replace custom printing with the new utility in Tutorial13 * Ensure all output is printed with minimal details in Tutorial14 and add some titles * Minor change to print_answers * Make tutorial3's output the same as tutorial1 * Add __repr__ to Answer and fix to_dict() * Fix a bug in the Document and Answer's __str__ method * Improve print_answers, print_documents and print_questions * Using print_answers in Tutorial7 and fixing typo in the utils * Remove duplicate line in Tutorial12 * Use print_answers in Tutorial4 * Add explanation of what the documents in the output of the basic QA pipeline are * Move the fields constant into print_answers * Normalize all 'minimal' to 'minimum' (they were mixed up) * Improve the sample output to include all fields from Document and Answer Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
7910 lines
297 KiB
Plaintext
7910 lines
297 KiB
Plaintext
{
|
||
"cells": [
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"# Query Classifier Tutorial\n",
|
||
"[](https://colab.research.google.com/github/deepset-ai/haystack/blob/master/tutorials/Tutorial14_Query_Classifier.ipynb)\n",
|
||
"\n",
|
||
"In this tutorial we introduce the query classifier the goal of introducing this feature was to optimize the overall flow of Haystack pipeline by detecting the nature of user queries. Now, the Haystack can detect primarily three types of queries using both light-weight SKLearn Gradient Boosted classifier or Transformer based more robust classifier. The three categories of queries are as follows:\n",
|
||
"\n",
|
||
"\n",
|
||
"### 1. Keyword Queries: \n",
|
||
"Such queries don't have semantic meaning and merely consist of keywords. For instance these three are the examples of keyword queries.\n",
|
||
"\n",
|
||
"* arya stark father\n",
|
||
"* jon snow country\n",
|
||
"* arya stark younger brothers\n",
|
||
"\n",
|
||
"### 2. Interrogative Queries: \n",
|
||
"In such queries users usually ask a question, regardless of presence of \"?\" in the query the goal here is to detect the intent of the user whether any question is asked or not in the query. For example:\n",
|
||
"\n",
|
||
"* who is the father of arya stark ?\n",
|
||
"* which country was jon snow filmed ?\n",
|
||
"* who are the younger brothers of arya stark ?\n",
|
||
"\n",
|
||
"### 3. Declarative Queries: \n",
|
||
"Such queries are variation of keyword queries, however, there is semantic relationship between words. Fo example:\n",
|
||
"\n",
|
||
"* Arya stark was a daughter of a lord.\n",
|
||
"* Jon snow was filmed in a country in UK.\n",
|
||
"* Bran was brother of a princess.\n",
|
||
"\n",
|
||
"In this tutorial, you will learn how the `TransformersQueryClassifier` and `SklearnQueryClassifier` classes can be used to intelligently route your queries, based on the nature of the user query. Also, you can choose between a lightweight Gradients boosted classifier or a transformer based classifier.\n",
|
||
"\n",
|
||
"Furthermore, there are two types of classifiers you can use out of the box from Haystack.\n",
|
||
"1. Keyword vs Statement/Question Query Classifier\n",
|
||
"2. Statement vs Question Query Classifier\n",
|
||
"\n",
|
||
"As evident from the name the first classifier detects the keywords search queries and semantic statements like sentences/questions. The second classifier differentiates between question based queries and declarative sentences."
|
||
],
|
||
"metadata": {
|
||
"id": "O-W2ZQ6CN-gZ",
|
||
"pycharm": {
|
||
"name": "#%% md\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"### Prepare environment\n",
|
||
"\n",
|
||
"#### Colab: Enable the GPU runtime\n",
|
||
"Make sure you enable the GPU runtime to experience decent speed in this tutorial. \n",
|
||
"**Runtime -> Change Runtime type -> Hardware accelerator -> GPU**\n",
|
||
"\n",
|
||
"<img src=\"https://raw.githubusercontent.com/deepset-ai/haystack/master/docs/_src/img/colab_gpu_runtime.jpg\">"
|
||
],
|
||
"metadata": {
|
||
"id": "yaaKv3_ZN-gb",
|
||
"pycharm": {
|
||
"name": "#%% md\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"These lines are to install Haystack through pip"
|
||
],
|
||
"metadata": {
|
||
"id": "TNlqD5HeN-gc",
|
||
"pycharm": {
|
||
"name": "#%% md\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"# Install the latest release of Haystack in your own environment\n",
|
||
"#! pip install farm-haystack\n",
|
||
"\n",
|
||
"# Install the latest master of Haystack\n",
|
||
"!pip install grpcio-tools==1.34.1\n",
|
||
"!pip install --upgrade git+https://github.com/deepset-ai/haystack.git\n",
|
||
"\n",
|
||
"# Install pygraphviz\n",
|
||
"!apt install libgraphviz-dev\n",
|
||
"!pip install pygraphviz\n",
|
||
"\n",
|
||
"# If you run this notebook on Google Colab, you might need to\n",
|
||
"# restart the runtime after installing haystack.\n",
|
||
"\n",
|
||
"# In Colab / No Docker environments: Start Elasticsearch from source\n",
|
||
"! wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.9.2-linux-x86_64.tar.gz -q\n",
|
||
"! tar -xzf elasticsearch-7.9.2-linux-x86_64.tar.gz\n",
|
||
"! chown -R daemon:daemon elasticsearch-7.9.2\n",
|
||
"\n",
|
||
"import os\n",
|
||
"from subprocess import Popen, PIPE, STDOUT\n",
|
||
"es_server = Popen(['elasticsearch-7.9.2/bin/elasticsearch'],\n",
|
||
" stdout=PIPE, stderr=STDOUT,\n",
|
||
" preexec_fn=lambda: os.setuid(1) # as daemon\n",
|
||
" )\n",
|
||
"# wait until ES has started\n",
|
||
"! sleep 30"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stdout",
|
||
"text": [
|
||
"Collecting grpcio-tools==1.34.1\n",
|
||
" Downloading grpcio_tools-1.34.1-cp37-cp37m-manylinux2014_x86_64.whl (2.5 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 2.5 MB 7.7 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: grpcio>=1.34.1 in /usr/local/lib/python3.7/dist-packages (from grpcio-tools==1.34.1) (1.34.1)\n",
|
||
"Requirement already satisfied: protobuf<4.0dev,>=3.5.0.post1 in /usr/local/lib/python3.7/dist-packages (from grpcio-tools==1.34.1) (3.17.3)\n",
|
||
"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from grpcio-tools==1.34.1) (57.2.0)\n",
|
||
"Requirement already satisfied: six>=1.5.2 in /usr/local/lib/python3.7/dist-packages (from grpcio>=1.34.1->grpcio-tools==1.34.1) (1.15.0)\n",
|
||
"Installing collected packages: grpcio-tools\n",
|
||
"Successfully installed grpcio-tools-1.34.1\n",
|
||
"Collecting git+https://github.com/deepset-ai/haystack.git\n",
|
||
" Cloning https://github.com/deepset-ai/haystack.git to /tmp/pip-req-build-dq33uzal\n",
|
||
" Running command git clone -q https://github.com/deepset-ai/haystack.git /tmp/pip-req-build-dq33uzal\n",
|
||
"Collecting farm==0.8.0\n",
|
||
" Downloading farm-0.8.0-py3-none-any.whl (204 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 204 kB 8.3 MB/s \n",
|
||
"\u001b[?25hCollecting fastapi\n",
|
||
" Downloading fastapi-0.68.0-py3-none-any.whl (52 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 52 kB 984 kB/s \n",
|
||
"\u001b[?25hCollecting uvicorn\n",
|
||
" Downloading uvicorn-0.14.0-py3-none-any.whl (50 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 50 kB 8.1 MB/s \n",
|
||
"\u001b[?25hCollecting gunicorn\n",
|
||
" Downloading gunicorn-20.1.0-py3-none-any.whl (79 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 79 kB 9.4 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: pandas in /usr/local/lib/python3.7/dist-packages (from farm-haystack==0.9.0) (1.1.5)\n",
|
||
"Requirement already satisfied: sklearn in /usr/local/lib/python3.7/dist-packages (from farm-haystack==0.9.0) (0.0)\n",
|
||
"Collecting elasticsearch<=7.10,>=7.7\n",
|
||
" Downloading elasticsearch-7.10.0-py2.py3-none-any.whl (321 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 321 kB 38.6 MB/s \n",
|
||
"\u001b[?25hCollecting elastic-apm\n",
|
||
" Downloading elastic_apm-6.3.3-cp37-cp37m-manylinux2010_x86_64.whl (330 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 330 kB 34.8 MB/s \n",
|
||
"\u001b[?25hCollecting tox\n",
|
||
" Downloading tox-3.24.1-py2.py3-none-any.whl (85 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 85 kB 5.7 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: coverage in /usr/local/lib/python3.7/dist-packages (from farm-haystack==0.9.0) (3.7.1)\n",
|
||
"Collecting langdetect\n",
|
||
" Downloading langdetect-1.0.9.tar.gz (981 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 981 kB 40.1 MB/s \n",
|
||
"\u001b[?25hCollecting python-multipart\n",
|
||
" Downloading python-multipart-0.0.5.tar.gz (32 kB)\n",
|
||
"Collecting python-docx\n",
|
||
" Downloading python-docx-0.8.11.tar.gz (5.6 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 5.6 MB 45.6 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: sqlalchemy>=1.4.2 in /usr/local/lib/python3.7/dist-packages (from farm-haystack==0.9.0) (1.4.20)\n",
|
||
"Collecting sqlalchemy_utils\n",
|
||
" Downloading SQLAlchemy_Utils-0.37.8-py3-none-any.whl (100 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 100 kB 11.8 MB/s \n",
|
||
"\u001b[?25hCollecting faiss-cpu>=1.6.3\n",
|
||
" Downloading faiss_cpu-1.7.1.post2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 8.4 MB 28.1 MB/s \n",
|
||
"\u001b[?25hCollecting tika\n",
|
||
" Downloading tika-1.24.tar.gz (28 kB)\n",
|
||
"Collecting httptools\n",
|
||
" Downloading httptools-0.2.0-cp37-cp37m-manylinux1_x86_64.whl (344 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 344 kB 57.6 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: nltk in /usr/local/lib/python3.7/dist-packages (from farm-haystack==0.9.0) (3.2.5)\n",
|
||
"Requirement already satisfied: more_itertools in /usr/local/lib/python3.7/dist-packages (from farm-haystack==0.9.0) (8.8.0)\n",
|
||
"Requirement already satisfied: networkx in /usr/local/lib/python3.7/dist-packages (from farm-haystack==0.9.0) (2.5.1)\n",
|
||
"Collecting pymilvus\n",
|
||
" Downloading pymilvus-1.1.2-py3-none-any.whl (56 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 56 kB 5.3 MB/s \n",
|
||
"\u001b[?25hCollecting SPARQLWrapper\n",
|
||
" Downloading SPARQLWrapper-1.8.5-py3-none-any.whl (26 kB)\n",
|
||
"Collecting mmh3\n",
|
||
" Downloading mmh3-3.0.0-cp37-cp37m-manylinux2010_x86_64.whl (50 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 50 kB 7.4 MB/s \n",
|
||
"\u001b[?25hCollecting weaviate-client==2.5.0\n",
|
||
" Downloading weaviate_client-2.5.0-py3-none-any.whl (56 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 56 kB 5.9 MB/s \n",
|
||
"\u001b[?25hCollecting ray==1.5.0\n",
|
||
" Downloading ray-1.5.0-cp37-cp37m-manylinux2014_x86_64.whl (51.5 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 51.5 MB 20 kB/s \n",
|
||
"\u001b[?25hCollecting psycopg2-binary\n",
|
||
" Downloading psycopg2_binary-2.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 3.4 MB 53.0 MB/s \n",
|
||
"\u001b[?25hCollecting uvloop==0.14\n",
|
||
" Downloading uvloop-0.14.0-cp37-cp37m-manylinux2010_x86_64.whl (3.8 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 3.8 MB 49.1 MB/s \n",
|
||
"\u001b[?25hCollecting flask-restplus\n",
|
||
" Downloading flask_restplus-0.13.0-py2.py3-none-any.whl (2.5 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 2.5 MB 48.6 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: scipy>=1.3.2 in /usr/local/lib/python3.7/dist-packages (from farm==0.8.0->farm-haystack==0.9.0) (1.4.1)\n",
|
||
"Collecting transformers==4.6.1\n",
|
||
" Downloading transformers-4.6.1-py3-none-any.whl (2.2 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 2.2 MB 50.0 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from farm==0.8.0->farm-haystack==0.9.0) (57.2.0)\n",
|
||
"Requirement already satisfied: dill in /usr/local/lib/python3.7/dist-packages (from farm==0.8.0->farm-haystack==0.9.0) (0.3.4)\n",
|
||
"Requirement already satisfied: wheel in /usr/local/lib/python3.7/dist-packages (from farm==0.8.0->farm-haystack==0.9.0) (0.36.2)\n",
|
||
"Collecting sentencepiece\n",
|
||
" Downloading sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 1.2 MB 54.2 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: psutil in /usr/local/lib/python3.7/dist-packages (from farm==0.8.0->farm-haystack==0.9.0) (5.4.8)\n",
|
||
"Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from farm==0.8.0->farm-haystack==0.9.0) (4.41.1)\n",
|
||
"Requirement already satisfied: flask in /usr/local/lib/python3.7/dist-packages (from farm==0.8.0->farm-haystack==0.9.0) (1.1.4)\n",
|
||
"Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from farm==0.8.0->farm-haystack==0.9.0) (2.23.0)\n",
|
||
"Collecting seqeval\n",
|
||
" Downloading seqeval-1.2.2.tar.gz (43 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 43 kB 2.3 MB/s \n",
|
||
"\u001b[?25hCollecting boto3\n",
|
||
" Downloading boto3-1.18.15.tar.gz (102 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 102 kB 60.8 MB/s \n",
|
||
"\u001b[?25hCollecting dotmap\n",
|
||
" Downloading dotmap-1.3.24-py3-none-any.whl (11 kB)\n",
|
||
"Collecting flask-cors\n",
|
||
" Downloading Flask_Cors-3.0.10-py2.py3-none-any.whl (14 kB)\n",
|
||
"Collecting mlflow<=1.13.1\n",
|
||
" Downloading mlflow-1.13.1-py3-none-any.whl (14.1 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 14.1 MB 29 kB/s \n",
|
||
"\u001b[?25hCollecting Werkzeug==0.16.1\n",
|
||
" Downloading Werkzeug-0.16.1-py2.py3-none-any.whl (327 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 327 kB 56.0 MB/s \n",
|
||
"\u001b[?25hCollecting torch<1.9,>1.5\n",
|
||
" Downloading torch-1.8.1-cp37-cp37m-manylinux1_x86_64.whl (804.1 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 804.1 MB 2.8 kB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: msgpack<2.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (1.0.2)\n",
|
||
"Requirement already satisfied: click>=7.0 in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (7.1.2)\n",
|
||
"Requirement already satisfied: protobuf>=3.15.3 in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (3.17.3)\n",
|
||
"Collecting opencensus\n",
|
||
" Downloading opencensus-0.7.13-py2.py3-none-any.whl (127 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 127 kB 73.2 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: jsonschema in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (2.6.0)\n",
|
||
"Collecting pydantic>=1.8\n",
|
||
" Downloading pydantic-1.8.2-cp37-cp37m-manylinux2014_x86_64.whl (10.1 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 10.1 MB 55.7 MB/s \n",
|
||
"\u001b[?25hCollecting aioredis\n",
|
||
" Downloading aioredis-2.0.0-py3-none-any.whl (69 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 69 kB 9.2 MB/s \n",
|
||
"\u001b[?25hCollecting aiohttp-cors\n",
|
||
" Downloading aiohttp_cors-0.7.0-py3-none-any.whl (27 kB)\n",
|
||
"Collecting py-spy>=0.2.0\n",
|
||
" Downloading py_spy-0.3.8-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (3.1 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 3.1 MB 52.9 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: grpcio>=1.28.1 in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (1.34.1)\n",
|
||
"Requirement already satisfied: numpy>=1.16 in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (1.19.5)\n",
|
||
"Requirement already satisfied: filelock in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (3.0.12)\n",
|
||
"Requirement already satisfied: prometheus-client>=0.7.1 in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (0.11.0)\n",
|
||
"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from ray==1.5.0->farm-haystack==0.9.0) (3.13)\n",
|
||
"Collecting gpustat\n",
|
||
" Downloading gpustat-0.6.0.tar.gz (78 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 78 kB 8.6 MB/s \n",
|
||
"\u001b[?25hCollecting redis>=3.5.0\n",
|
||
" Downloading redis-3.5.3-py2.py3-none-any.whl (72 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 72 kB 641 kB/s \n",
|
||
"\u001b[?25hCollecting aiohttp\n",
|
||
" Downloading aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_x86_64.whl (1.3 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 1.3 MB 52.6 MB/s \n",
|
||
"\u001b[?25hCollecting colorama\n",
|
||
" Downloading colorama-0.4.4-py2.py3-none-any.whl (16 kB)\n",
|
||
"Collecting huggingface-hub==0.0.8\n",
|
||
" Downloading huggingface_hub-0.0.8-py3-none-any.whl (34 kB)\n",
|
||
"Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.7/dist-packages (from transformers==4.6.1->farm==0.8.0->farm-haystack==0.9.0) (2019.12.20)\n",
|
||
"Requirement already satisfied: importlib-metadata in /usr/local/lib/python3.7/dist-packages (from transformers==4.6.1->farm==0.8.0->farm-haystack==0.9.0) (4.6.1)\n",
|
||
"Collecting tokenizers<0.11,>=0.10.1\n",
|
||
" Downloading tokenizers-0.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 3.3 MB 50.7 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from transformers==4.6.1->farm==0.8.0->farm-haystack==0.9.0) (21.0)\n",
|
||
"Collecting sacremoses\n",
|
||
" Downloading sacremoses-0.0.45-py3-none-any.whl (895 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 895 kB 75.7 MB/s \n",
|
||
"\u001b[?25hCollecting validators>=0.18.2\n",
|
||
" Downloading validators-0.18.2-py3-none-any.whl (19 kB)\n",
|
||
"Collecting tqdm\n",
|
||
" Downloading tqdm-4.62.0-py2.py3-none-any.whl (76 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 76 kB 4.9 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: urllib3<2,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from elasticsearch<=7.10,>=7.7->farm-haystack==0.9.0) (1.24.3)\n",
|
||
"Requirement already satisfied: certifi in /usr/local/lib/python3.7/dist-packages (from elasticsearch<=7.10,>=7.7->farm-haystack==0.9.0) (2021.5.30)\n",
|
||
"Requirement already satisfied: six>=1.5.2 in /usr/local/lib/python3.7/dist-packages (from grpcio>=1.28.1->ray==1.5.0->farm-haystack==0.9.0) (1.15.0)\n",
|
||
"Requirement already satisfied: cloudpickle in /usr/local/lib/python3.7/dist-packages (from mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (1.3.0)\n",
|
||
"Collecting alembic<=1.4.1\n",
|
||
" Downloading alembic-1.4.1.tar.gz (1.1 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 1.1 MB 61.2 MB/s \n",
|
||
"\u001b[?25hCollecting docker>=4.0.0\n",
|
||
" Downloading docker-5.0.0-py2.py3-none-any.whl (146 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 146 kB 61.4 MB/s \n",
|
||
"\u001b[?25hCollecting databricks-cli>=0.8.7\n",
|
||
" Downloading databricks-cli-0.14.3.tar.gz (54 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 54 kB 3.7 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: entrypoints in /usr/local/lib/python3.7/dist-packages (from mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (0.3)\n",
|
||
"Collecting querystring-parser\n",
|
||
" Downloading querystring_parser-1.2.4-py2.py3-none-any.whl (7.9 kB)\n",
|
||
"Collecting azure-storage-blob>=12.0.0\n",
|
||
" Downloading azure_storage_blob-12.8.1-py2.py3-none-any.whl (345 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 345 kB 63.3 MB/s \n",
|
||
"\u001b[?25hCollecting gitpython>=2.1.0\n",
|
||
" Downloading GitPython-3.1.18-py3-none-any.whl (170 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 170 kB 77.2 MB/s \n",
|
||
"\u001b[?25hCollecting prometheus-flask-exporter\n",
|
||
" Downloading prometheus_flask_exporter-0.18.2.tar.gz (22 kB)\n",
|
||
"Requirement already satisfied: python-dateutil in /usr/local/lib/python3.7/dist-packages (from mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (2.8.1)\n",
|
||
"Requirement already satisfied: sqlparse>=0.3.1 in /usr/local/lib/python3.7/dist-packages (from mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (0.4.1)\n",
|
||
"Collecting Mako\n",
|
||
" Downloading Mako-1.1.4-py2.py3-none-any.whl (75 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 75 kB 5.5 MB/s \n",
|
||
"\u001b[?25hCollecting python-editor>=0.3\n",
|
||
" Downloading python_editor-1.0.4-py3-none-any.whl (4.9 kB)\n",
|
||
"Collecting cryptography>=2.1.4\n",
|
||
" Downloading cryptography-3.4.7-cp36-abi3-manylinux2014_x86_64.whl (3.2 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 3.2 MB 51.8 MB/s \n",
|
||
"\u001b[?25hCollecting msrest>=0.6.18\n",
|
||
" Downloading msrest-0.6.21-py2.py3-none-any.whl (85 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 85 kB 4.9 MB/s \n",
|
||
"\u001b[?25hCollecting azure-core<2.0.0,>=1.10.0\n",
|
||
" Downloading azure_core-1.17.0-py2.py3-none-any.whl (165 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 165 kB 66.2 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: cffi>=1.12 in /usr/local/lib/python3.7/dist-packages (from cryptography>=2.1.4->azure-storage-blob>=12.0.0->mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (1.14.6)\n",
|
||
"Requirement already satisfied: pycparser in /usr/local/lib/python3.7/dist-packages (from cffi>=1.12->cryptography>=2.1.4->azure-storage-blob>=12.0.0->mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (2.20)\n",
|
||
"Requirement already satisfied: tabulate>=0.7.7 in /usr/local/lib/python3.7/dist-packages (from databricks-cli>=0.8.7->mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (0.8.9)\n",
|
||
"Collecting websocket-client>=0.32.0\n",
|
||
" Downloading websocket_client-1.1.1-py2.py3-none-any.whl (68 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 68 kB 8.0 MB/s \n",
|
||
"\u001b[?25hCollecting gitdb<5,>=4.0.1\n",
|
||
" Downloading gitdb-4.0.7-py3-none-any.whl (63 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 63 kB 2.0 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: typing-extensions>=3.7.4.0 in /usr/local/lib/python3.7/dist-packages (from gitpython>=2.1.0->mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (3.7.4.3)\n",
|
||
"Collecting smmap<5,>=3.0.1\n",
|
||
" Downloading smmap-4.0.0-py2.py3-none-any.whl (24 kB)\n",
|
||
"Requirement already satisfied: requests-oauthlib>=0.5.0 in /usr/local/lib/python3.7/dist-packages (from msrest>=0.6.18->azure-storage-blob>=12.0.0->mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (1.3.0)\n",
|
||
"Collecting isodate>=0.6.0\n",
|
||
" Downloading isodate-0.6.0-py2.py3-none-any.whl (45 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 45 kB 4.2 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->farm==0.8.0->farm-haystack==0.9.0) (3.0.4)\n",
|
||
"Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->farm==0.8.0->farm-haystack==0.9.0) (2.10)\n",
|
||
"Requirement already satisfied: oauthlib>=3.0.0 in /usr/local/lib/python3.7/dist-packages (from requests-oauthlib>=0.5.0->msrest>=0.6.18->azure-storage-blob>=12.0.0->mlflow<=1.13.1->farm==0.8.0->farm-haystack==0.9.0) (3.1.1)\n",
|
||
"Requirement already satisfied: greenlet!=0.4.17 in /usr/local/lib/python3.7/dist-packages (from sqlalchemy>=1.4.2->farm-haystack==0.9.0) (1.1.0)\n",
|
||
"Requirement already satisfied: decorator>=3.4.0 in /usr/local/lib/python3.7/dist-packages (from validators>=0.18.2->weaviate-client==2.5.0->farm-haystack==0.9.0) (4.4.2)\n",
|
||
"Collecting multidict<7.0,>=4.5\n",
|
||
" Downloading multidict-5.1.0-cp37-cp37m-manylinux2014_x86_64.whl (142 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 142 kB 72.9 MB/s \n",
|
||
"\u001b[?25hCollecting yarl<2.0,>=1.0\n",
|
||
" Downloading yarl-1.6.3-cp37-cp37m-manylinux2014_x86_64.whl (294 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 294 kB 66.3 MB/s \n",
|
||
"\u001b[?25hCollecting async-timeout<4.0,>=3.0\n",
|
||
" Downloading async_timeout-3.0.1-py3-none-any.whl (8.2 kB)\n",
|
||
"Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.7/dist-packages (from aiohttp->ray==1.5.0->farm-haystack==0.9.0) (21.2.0)\n",
|
||
"Collecting botocore<1.22.0,>=1.21.15\n",
|
||
" Downloading botocore-1.21.15-py3-none-any.whl (7.8 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 7.8 MB 70.3 MB/s \n",
|
||
"\u001b[?25hCollecting jmespath<1.0.0,>=0.7.1\n",
|
||
" Downloading jmespath-0.10.0-py2.py3-none-any.whl (24 kB)\n",
|
||
"Collecting s3transfer<0.6.0,>=0.5.0\n",
|
||
" Downloading s3transfer-0.5.0-py3-none-any.whl (79 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 79 kB 9.9 MB/s \n",
|
||
"\u001b[?25hCollecting urllib3<2,>=1.21.1\n",
|
||
" Downloading urllib3-1.25.11-py2.py3-none-any.whl (127 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 127 kB 71.3 MB/s \n",
|
||
"\u001b[?25hCollecting starlette==0.14.2\n",
|
||
" Downloading starlette-0.14.2-py3-none-any.whl (60 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 60 kB 9.2 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: Jinja2<3.0,>=2.10.1 in /usr/local/lib/python3.7/dist-packages (from flask->farm==0.8.0->farm-haystack==0.9.0) (2.11.3)\n",
|
||
"Requirement already satisfied: itsdangerous<2.0,>=0.24 in /usr/local/lib/python3.7/dist-packages (from flask->farm==0.8.0->farm-haystack==0.9.0) (1.1.0)\n",
|
||
"Requirement already satisfied: MarkupSafe>=0.23 in /usr/local/lib/python3.7/dist-packages (from Jinja2<3.0,>=2.10.1->flask->farm==0.8.0->farm-haystack==0.9.0) (2.0.1)\n",
|
||
"Collecting aniso8601>=0.82\n",
|
||
" Downloading aniso8601-9.0.1-py2.py3-none-any.whl (52 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 52 kB 1.6 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: pytz in /usr/local/lib/python3.7/dist-packages (from flask-restplus->farm==0.8.0->farm-haystack==0.9.0) (2018.9)\n",
|
||
"Requirement already satisfied: nvidia-ml-py3>=7.352.0 in /usr/local/lib/python3.7/dist-packages (from gpustat->ray==1.5.0->farm-haystack==0.9.0) (7.352.0)\n",
|
||
"Collecting blessings>=1.6\n",
|
||
" Downloading blessings-1.7-py3-none-any.whl (18 kB)\n",
|
||
"Requirement already satisfied: zipp>=0.5 in /usr/local/lib/python3.7/dist-packages (from importlib-metadata->transformers==4.6.1->farm==0.8.0->farm-haystack==0.9.0) (3.5.0)\n",
|
||
"Collecting opencensus-context==0.1.2\n",
|
||
" Downloading opencensus_context-0.1.2-py2.py3-none-any.whl (4.4 kB)\n",
|
||
"Requirement already satisfied: google-api-core<2.0.0,>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from opencensus->ray==1.5.0->farm-haystack==0.9.0) (1.26.3)\n",
|
||
"Requirement already satisfied: google-auth<2.0dev,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from google-api-core<2.0.0,>=1.0.0->opencensus->ray==1.5.0->farm-haystack==0.9.0) (1.32.1)\n",
|
||
"Requirement already satisfied: googleapis-common-protos<2.0dev,>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from google-api-core<2.0.0,>=1.0.0->opencensus->ray==1.5.0->farm-haystack==0.9.0) (1.53.0)\n",
|
||
"Requirement already satisfied: rsa<5,>=3.1.4 in /usr/local/lib/python3.7/dist-packages (from google-auth<2.0dev,>=1.21.1->google-api-core<2.0.0,>=1.0.0->opencensus->ray==1.5.0->farm-haystack==0.9.0) (4.7.2)\n",
|
||
"Requirement already satisfied: pyasn1-modules>=0.2.1 in /usr/local/lib/python3.7/dist-packages (from google-auth<2.0dev,>=1.21.1->google-api-core<2.0.0,>=1.0.0->opencensus->ray==1.5.0->farm-haystack==0.9.0) (0.2.8)\n",
|
||
"Requirement already satisfied: cachetools<5.0,>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from google-auth<2.0dev,>=1.21.1->google-api-core<2.0.0,>=1.0.0->opencensus->ray==1.5.0->farm-haystack==0.9.0) (4.2.2)\n",
|
||
"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->transformers==4.6.1->farm==0.8.0->farm-haystack==0.9.0) (2.4.7)\n",
|
||
"Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in /usr/local/lib/python3.7/dist-packages (from pyasn1-modules>=0.2.1->google-auth<2.0dev,>=1.21.1->google-api-core<2.0.0,>=1.0.0->opencensus->ray==1.5.0->farm-haystack==0.9.0) (0.4.8)\n",
|
||
"Requirement already satisfied: grpcio-tools<1.38.0,>=1.22.0 in /usr/local/lib/python3.7/dist-packages (from pymilvus->farm-haystack==0.9.0) (1.34.1)\n",
|
||
"Collecting ujson>=2.0.0\n",
|
||
" Downloading ujson-4.0.2-cp37-cp37m-manylinux1_x86_64.whl (179 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 179 kB 71.9 MB/s \n",
|
||
"\u001b[?25hRequirement already satisfied: lxml>=2.3.2 in /usr/local/lib/python3.7/dist-packages (from python-docx->farm-haystack==0.9.0) (4.2.6)\n",
|
||
"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from sacremoses->transformers==4.6.1->farm==0.8.0->farm-haystack==0.9.0) (1.0.1)\n",
|
||
"Requirement already satisfied: scikit-learn>=0.21.3 in /usr/local/lib/python3.7/dist-packages (from seqeval->farm==0.8.0->farm-haystack==0.9.0) (0.22.2.post1)\n",
|
||
"Collecting rdflib>=4.0\n",
|
||
" Downloading rdflib-6.0.0-py3-none-any.whl (376 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 376 kB 65.9 MB/s \n",
|
||
"\u001b[?25hCollecting virtualenv!=20.0.0,!=20.0.1,!=20.0.2,!=20.0.3,!=20.0.4,!=20.0.5,!=20.0.6,!=20.0.7,>=16.0.0\n",
|
||
" Downloading virtualenv-20.7.0-py2.py3-none-any.whl (5.3 MB)\n",
|
||
"\u001b[K |████████████████████████████████| 5.3 MB 62.5 MB/s \n",
|
||
"\u001b[?25hCollecting pluggy>=0.12.0\n",
|
||
" Downloading pluggy-0.13.1-py2.py3-none-any.whl (18 kB)\n",
|
||
"Requirement already satisfied: py>=1.4.17 in /usr/local/lib/python3.7/dist-packages (from tox->farm-haystack==0.9.0) (1.10.0)\n",
|
||
"Requirement already satisfied: toml>=0.9.4 in /usr/local/lib/python3.7/dist-packages (from tox->farm-haystack==0.9.0) (0.10.2)\n",
|
||
"Collecting distlib<1,>=0.3.1\n",
|
||
" Downloading distlib-0.3.2-py2.py3-none-any.whl (338 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 338 kB 43.3 MB/s \n",
|
||
"\u001b[?25hCollecting platformdirs<3,>=2\n",
|
||
" Downloading platformdirs-2.2.0-py3-none-any.whl (13 kB)\n",
|
||
"Collecting backports.entry-points-selectable>=1.0.4\n",
|
||
" Downloading backports.entry_points_selectable-1.1.0-py2.py3-none-any.whl (6.2 kB)\n",
|
||
"Collecting asgiref>=3.3.4\n",
|
||
" Downloading asgiref-3.4.1-py3-none-any.whl (25 kB)\n",
|
||
"Collecting h11>=0.8\n",
|
||
" Downloading h11-0.12.0-py3-none-any.whl (54 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 54 kB 4.3 MB/s \n",
|
||
"\u001b[?25hBuilding wheels for collected packages: farm-haystack, alembic, databricks-cli, boto3, gpustat, langdetect, prometheus-flask-exporter, python-docx, python-multipart, seqeval, tika\n",
|
||
" Building wheel for farm-haystack (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for farm-haystack: filename=farm_haystack-0.9.0-py3-none-any.whl size=196795 sha256=71e7c6a25cf2c6bac68d8f044e6dcdf56ea0d8de51f4c45e1a324b7309fc8707\n",
|
||
" Stored in directory: /tmp/pip-ephem-wheel-cache-2lct2wx8/wheels/a7/05/3b/9b33368d9af06a39f8e6af2e97fa2af876e893ade323cfc2c9\n",
|
||
" Building wheel for alembic (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for alembic: filename=alembic-1.4.1-py2.py3-none-any.whl size=158170 sha256=bfb84593454b9461e33c68291954a0e6fdc6b1740b533f4eef16ca7e92b477d4\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/be/5d/0a/9e13f53f4f5dfb67cd8d245bb7cdffe12f135846f491a283e3\n",
|
||
" Building wheel for databricks-cli (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for databricks-cli: filename=databricks_cli-0.14.3-py3-none-any.whl size=100557 sha256=e6daae14b7a753191636c7d73921bdaaed002c20a748fa95f7d0d5bd2e44b844\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/3b/60/14/6930445b08959fbdf4e3029bac7e1f2cccb2e94df8afa00b29\n",
|
||
" Building wheel for boto3 (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for boto3: filename=boto3-1.18.15-py3-none-any.whl size=129022 sha256=941da18e031a9d097d33bc5de515f375f3355ec687ffeac8a4fea628fa85d472\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/55/a5/fc/51fb60d7e4936acba6cac7e578e2b5ee050d6f5d8887e8af26\n",
|
||
" Building wheel for gpustat (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for gpustat: filename=gpustat-0.6.0-py3-none-any.whl size=12617 sha256=75379773569a479ff41e1387e3d899ddf08ba5ffe7c4da9b6eeb7cac07ad4203\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/e6/67/af/f1ad15974b8fd95f59a63dbf854483ebe5c7a46a93930798b8\n",
|
||
" Building wheel for langdetect (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for langdetect: filename=langdetect-1.0.9-py3-none-any.whl size=993241 sha256=d4903cc8743695c4e32c288b805030f31497400d52795b25de26d7e389e215a5\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/c5/96/8a/f90c59ed25d75e50a8c10a1b1c2d4c402e4dacfa87f3aff36a\n",
|
||
" Building wheel for prometheus-flask-exporter (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for prometheus-flask-exporter: filename=prometheus_flask_exporter-0.18.2-py3-none-any.whl size=17416 sha256=c101c93041961681d469994164d7bd43d318802d0317955277b26564976de7b3\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/6a/1e/1c/c765920cb92b2f0343d2dd8b481a407cee2823f9b4bbd2e52a\n",
|
||
" Building wheel for python-docx (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for python-docx: filename=python_docx-0.8.11-py3-none-any.whl size=184507 sha256=cccbf1f4c226287fe81fe4d58f8e65c68d3ab884d4fab837f4b0051cc8c0b0af\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/f6/6f/b9/d798122a8b55b74ad30b5f52b01482169b445fbb84a11797a6\n",
|
||
" Building wheel for python-multipart (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for python-multipart: filename=python_multipart-0.0.5-py3-none-any.whl size=31679 sha256=620e5395c8fff57ce4eaf6f2d26cd6ef54f3dfafa794161ff87f6c0e8708a8da\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/2c/41/7c/bfd1c180534ffdcc0972f78c5758f89881602175d48a8bcd2c\n",
|
||
" Building wheel for seqeval (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for seqeval: filename=seqeval-1.2.2-py3-none-any.whl size=16181 sha256=c60ebc68c6d29430a85f1b973cc64c0305ed82adc6dcd641f4e580d1da0b770d\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/05/96/ee/7cac4e74f3b19e3158dce26a20a1c86b3533c43ec72a549fd7\n",
|
||
" Building wheel for tika (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for tika: filename=tika-1.24-py3-none-any.whl size=32893 sha256=b34e6394b653d1b60f1f96d8a68f259a107723834d7a0eeb64514bb1b46f9e1b\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/ec/2b/38/58ff05467a742e32f67f5d0de048fa046e764e2fbb25ac93f3\n",
|
||
"Successfully built farm-haystack alembic databricks-cli boto3 gpustat langdetect prometheus-flask-exporter python-docx python-multipart seqeval tika\n",
|
||
"Installing collected packages: urllib3, Werkzeug, smmap, multidict, jmespath, isodate, yarl, websocket-client, tqdm, python-editor, msrest, Mako, gitdb, cryptography, botocore, azure-core, async-timeout, tokenizers, sacremoses, s3transfer, querystring-parser, prometheus-flask-exporter, platformdirs, opencensus-context, huggingface-hub, gunicorn, gitpython, docker, distlib, databricks-cli, blessings, backports.entry-points-selectable, azure-storage-blob, aniso8601, alembic, aiohttp, virtualenv, validators, ujson, transformers, torch, starlette, seqeval, sentencepiece, redis, rdflib, pydantic, py-spy, pluggy, opencensus, mlflow, h11, gpustat, flask-restplus, flask-cors, dotmap, colorama, boto3, asgiref, aioredis, aiohttp-cors, weaviate-client, uvloop, uvicorn, tox, tika, sqlalchemy-utils, SPARQLWrapper, ray, python-multipart, python-docx, pymilvus, psycopg2-binary, mmh3, langdetect, httptools, fastapi, farm, faiss-cpu, elasticsearch, elastic-apm, farm-haystack\n",
|
||
" Attempting uninstall: urllib3\n",
|
||
" Found existing installation: urllib3 1.24.3\n",
|
||
" Uninstalling urllib3-1.24.3:\n",
|
||
" Successfully uninstalled urllib3-1.24.3\n",
|
||
" Attempting uninstall: Werkzeug\n",
|
||
" Found existing installation: Werkzeug 1.0.1\n",
|
||
" Uninstalling Werkzeug-1.0.1:\n",
|
||
" Successfully uninstalled Werkzeug-1.0.1\n",
|
||
" Attempting uninstall: tqdm\n",
|
||
" Found existing installation: tqdm 4.41.1\n",
|
||
" Uninstalling tqdm-4.41.1:\n",
|
||
" Successfully uninstalled tqdm-4.41.1\n",
|
||
" Attempting uninstall: torch\n",
|
||
" Found existing installation: torch 1.9.0+cu102\n",
|
||
" Uninstalling torch-1.9.0+cu102:\n",
|
||
" Successfully uninstalled torch-1.9.0+cu102\n",
|
||
" Attempting uninstall: pluggy\n",
|
||
" Found existing installation: pluggy 0.7.1\n",
|
||
" Uninstalling pluggy-0.7.1:\n",
|
||
" Successfully uninstalled pluggy-0.7.1\n",
|
||
"\u001b[31mERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n",
|
||
"torchvision 0.10.0+cu102 requires torch==1.9.0, but you have torch 1.8.1 which is incompatible.\n",
|
||
"torchtext 0.10.0 requires torch==1.9.0, but you have torch 1.8.1 which is incompatible.\n",
|
||
"pytest 3.6.4 requires pluggy<0.8,>=0.5, but you have pluggy 0.13.1 which is incompatible.\n",
|
||
"datascience 0.10.6 requires folium==0.2.1, but you have folium 0.8.3 which is incompatible.\u001b[0m\n",
|
||
"Successfully installed Mako-1.1.4 SPARQLWrapper-1.8.5 Werkzeug-0.16.1 aiohttp-3.7.4.post0 aiohttp-cors-0.7.0 aioredis-2.0.0 alembic-1.4.1 aniso8601-9.0.1 asgiref-3.4.1 async-timeout-3.0.1 azure-core-1.17.0 azure-storage-blob-12.8.1 backports.entry-points-selectable-1.1.0 blessings-1.7 boto3-1.18.15 botocore-1.21.15 colorama-0.4.4 cryptography-3.4.7 databricks-cli-0.14.3 distlib-0.3.2 docker-5.0.0 dotmap-1.3.24 elastic-apm-6.3.3 elasticsearch-7.10.0 faiss-cpu-1.7.1.post2 farm-0.8.0 farm-haystack-0.9.0 fastapi-0.68.0 flask-cors-3.0.10 flask-restplus-0.13.0 gitdb-4.0.7 gitpython-3.1.18 gpustat-0.6.0 gunicorn-20.1.0 h11-0.12.0 httptools-0.2.0 huggingface-hub-0.0.8 isodate-0.6.0 jmespath-0.10.0 langdetect-1.0.9 mlflow-1.13.1 mmh3-3.0.0 msrest-0.6.21 multidict-5.1.0 opencensus-0.7.13 opencensus-context-0.1.2 platformdirs-2.2.0 pluggy-0.13.1 prometheus-flask-exporter-0.18.2 psycopg2-binary-2.9.1 py-spy-0.3.8 pydantic-1.8.2 pymilvus-1.1.2 python-docx-0.8.11 python-editor-1.0.4 python-multipart-0.0.5 querystring-parser-1.2.4 ray-1.5.0 rdflib-6.0.0 redis-3.5.3 s3transfer-0.5.0 sacremoses-0.0.45 sentencepiece-0.1.96 seqeval-1.2.2 smmap-4.0.0 sqlalchemy-utils-0.37.8 starlette-0.14.2 tika-1.24 tokenizers-0.10.3 torch-1.8.1 tox-3.24.1 tqdm-4.62.0 transformers-4.6.1 ujson-4.0.2 urllib3-1.25.11 uvicorn-0.14.0 uvloop-0.14.0 validators-0.18.2 virtualenv-20.7.0 weaviate-client-2.5.0 websocket-client-1.1.1 yarl-1.6.3\n",
|
||
"Reading package lists... Done\n",
|
||
"Building dependency tree \n",
|
||
"Reading state information... Done\n",
|
||
"The following additional packages will be installed:\n",
|
||
" libgail-common libgail18 libgtk2.0-0 libgtk2.0-bin libgtk2.0-common\n",
|
||
" libgvc6-plugins-gtk libxdot4\n",
|
||
"Suggested packages:\n",
|
||
" gvfs\n",
|
||
"The following NEW packages will be installed:\n",
|
||
" libgail-common libgail18 libgraphviz-dev libgtk2.0-0 libgtk2.0-bin\n",
|
||
" libgtk2.0-common libgvc6-plugins-gtk libxdot4\n",
|
||
"0 upgraded, 8 newly installed, 0 to remove and 40 not upgraded.\n",
|
||
"Need to get 2,120 kB of archives.\n",
|
||
"After this operation, 7,128 kB of additional disk space will be used.\n",
|
||
"Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgtk2.0-common all 2.24.32-1ubuntu1 [125 kB]\n",
|
||
"Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgtk2.0-0 amd64 2.24.32-1ubuntu1 [1,769 kB]\n",
|
||
"Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgail18 amd64 2.24.32-1ubuntu1 [14.2 kB]\n",
|
||
"Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgail-common amd64 2.24.32-1ubuntu1 [112 kB]\n",
|
||
"Get:5 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libxdot4 amd64 2.40.1-2 [15.7 kB]\n",
|
||
"Get:6 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgvc6-plugins-gtk amd64 2.40.1-2 [18.2 kB]\n",
|
||
"Get:7 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgraphviz-dev amd64 2.40.1-2 [57.3 kB]\n",
|
||
"Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgtk2.0-bin amd64 2.24.32-1ubuntu1 [7,536 B]\n",
|
||
"Fetched 2,120 kB in 2s (1,352 kB/s)\n",
|
||
"Selecting previously unselected package libgtk2.0-common.\n",
|
||
"(Reading database ... 160837 files and directories currently installed.)\n",
|
||
"Preparing to unpack .../0-libgtk2.0-common_2.24.32-1ubuntu1_all.deb ...\n",
|
||
"Unpacking libgtk2.0-common (2.24.32-1ubuntu1) ...\n",
|
||
"Selecting previously unselected package libgtk2.0-0:amd64.\n",
|
||
"Preparing to unpack .../1-libgtk2.0-0_2.24.32-1ubuntu1_amd64.deb ...\n",
|
||
"Unpacking libgtk2.0-0:amd64 (2.24.32-1ubuntu1) ...\n",
|
||
"Selecting previously unselected package libgail18:amd64.\n",
|
||
"Preparing to unpack .../2-libgail18_2.24.32-1ubuntu1_amd64.deb ...\n",
|
||
"Unpacking libgail18:amd64 (2.24.32-1ubuntu1) ...\n",
|
||
"Selecting previously unselected package libgail-common:amd64.\n",
|
||
"Preparing to unpack .../3-libgail-common_2.24.32-1ubuntu1_amd64.deb ...\n",
|
||
"Unpacking libgail-common:amd64 (2.24.32-1ubuntu1) ...\n",
|
||
"Selecting previously unselected package libxdot4.\n",
|
||
"Preparing to unpack .../4-libxdot4_2.40.1-2_amd64.deb ...\n",
|
||
"Unpacking libxdot4 (2.40.1-2) ...\n",
|
||
"Selecting previously unselected package libgvc6-plugins-gtk.\n",
|
||
"Preparing to unpack .../5-libgvc6-plugins-gtk_2.40.1-2_amd64.deb ...\n",
|
||
"Unpacking libgvc6-plugins-gtk (2.40.1-2) ...\n",
|
||
"Selecting previously unselected package libgraphviz-dev.\n",
|
||
"Preparing to unpack .../6-libgraphviz-dev_2.40.1-2_amd64.deb ...\n",
|
||
"Unpacking libgraphviz-dev (2.40.1-2) ...\n",
|
||
"Selecting previously unselected package libgtk2.0-bin.\n",
|
||
"Preparing to unpack .../7-libgtk2.0-bin_2.24.32-1ubuntu1_amd64.deb ...\n",
|
||
"Unpacking libgtk2.0-bin (2.24.32-1ubuntu1) ...\n",
|
||
"Setting up libgtk2.0-common (2.24.32-1ubuntu1) ...\n",
|
||
"Setting up libxdot4 (2.40.1-2) ...\n",
|
||
"Setting up libgtk2.0-0:amd64 (2.24.32-1ubuntu1) ...\n",
|
||
"Setting up libgail18:amd64 (2.24.32-1ubuntu1) ...\n",
|
||
"Setting up libgail-common:amd64 (2.24.32-1ubuntu1) ...\n",
|
||
"Setting up libgvc6-plugins-gtk (2.40.1-2) ...\n",
|
||
"Setting up libgraphviz-dev (2.40.1-2) ...\n",
|
||
"Setting up libgtk2.0-bin (2.24.32-1ubuntu1) ...\n",
|
||
"Processing triggers for man-db (2.8.3-2ubuntu0.1) ...\n",
|
||
"Processing triggers for libc-bin (2.27-3ubuntu1.2) ...\n",
|
||
"/sbin/ldconfig.real: /usr/local/lib/python3.7/dist-packages/ideep4py/lib/libmkldnn.so.0 is not a symbolic link\n",
|
||
"\n",
|
||
"Collecting pygraphviz\n",
|
||
" Downloading pygraphviz-1.7.zip (118 kB)\n",
|
||
"\u001b[K |████████████████████████████████| 118 kB 9.6 MB/s \n",
|
||
"\u001b[?25hBuilding wheels for collected packages: pygraphviz\n",
|
||
" Building wheel for pygraphviz (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
|
||
" Created wheel for pygraphviz: filename=pygraphviz-1.7-cp37-cp37m-linux_x86_64.whl size=165731 sha256=e956a5dbf87a503b3b4120e8f362c55c1bd0963020def309651ce28d993e5fce\n",
|
||
" Stored in directory: /root/.cache/pip/wheels/8c/bc/0c/ac35392b72556e75107ff610cb31b313e8471918a6d280e34c\n",
|
||
"Successfully built pygraphviz\n",
|
||
"Installing collected packages: pygraphviz\n",
|
||
"Successfully installed pygraphviz-1.7\n"
|
||
]
|
||
}
|
||
],
|
||
"metadata": {
|
||
"colab": {
|
||
"base_uri": "https://localhost:8080/"
|
||
},
|
||
"id": "CjA5n5lMN-gd",
|
||
"outputId": "da688e25-ad0e-41d3-94cf-581858fc05a4",
|
||
"pycharm": {
|
||
"name": "#%%\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"If running from Colab or a no Docker environment, you will want to start Elasticsearch from source"
|
||
],
|
||
"metadata": {
|
||
"id": "fAfd2cOQN-gd",
|
||
"pycharm": {
|
||
"name": "#%% md\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"## Initialization\n",
|
||
"\n",
|
||
"Here are some core imports"
|
||
],
|
||
"metadata": {
|
||
"id": "Z7Tu5OQnN-ge",
|
||
"pycharm": {
|
||
"name": "#%% md\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"Then let's fetch some data (in this case, pages from the Game of Thrones wiki) and prepare it so that it can\n",
|
||
"be used indexed into our `DocumentStore`"
|
||
],
|
||
"metadata": {
|
||
"id": "Vm9gqTioN-gf",
|
||
"pycharm": {
|
||
"name": "#%% md\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"from haystack.utils import print_answers, fetch_archive_from_http, convert_files_to_dicts, clean_wiki_text, launch_es\n",
|
||
"from haystack.pipelines import Pipeline, RootNode\n",
|
||
"from haystack.document_stores import ElasticsearchDocumentStore\n",
|
||
"from haystack.nodes import ElasticsearchRetriever, DensePassageRetriever, FARMReader, TransformersQueryClassifier, SklearnQueryClassifier\n",
|
||
"\n",
|
||
"#Download and prepare data - 517 Wikipedia articles for Game of Thrones\n",
|
||
"doc_dir = \"data/article_txt_got\"\n",
|
||
"s3_url = \"https://s3.eu-central-1.amazonaws.com/deepset.ai-farm-qa/datasets/documents/wiki_gameofthrones_txt.zip\"\n",
|
||
"fetch_archive_from_http(url=s3_url, output_dir=doc_dir)\n",
|
||
"\n",
|
||
"# convert files to dicts containing documents that can be indexed to our datastore\n",
|
||
"got_dicts = convert_files_to_dicts(\n",
|
||
" dir_path=doc_dir,\n",
|
||
" clean_func=clean_wiki_text,\n",
|
||
" split_paragraphs=True\n",
|
||
")\n",
|
||
"\n",
|
||
"# Initialize DocumentStore and index documents\n",
|
||
"launch_es()\n",
|
||
"document_store = ElasticsearchDocumentStore()\n",
|
||
"document_store.delete_documents()\n",
|
||
"document_store.write_documents(got_dicts)\n",
|
||
"\n",
|
||
"# Initialize Sparse retriever\n",
|
||
"es_retriever = ElasticsearchRetriever(document_store=document_store)\n",
|
||
"\n",
|
||
"# Initialize dense retriever\n",
|
||
"dpr_retriever = DensePassageRetriever(document_store)\n",
|
||
"document_store.update_embeddings(dpr_retriever, update_existing_embeddings=False)\n",
|
||
"\n",
|
||
"reader = FARMReader(model_name_or_path=\"deepset/roberta-base-squad2\")"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"/usr/local/lib/python3.7/dist-packages/ray/autoscaler/_private/cli_logger.py:61: FutureWarning: Not all Ray CLI dependencies were found. In Ray 1.4+, the Ray CLI, autoscaler, and dashboard will only be usable via `pip install 'ray[default]'`. Please update your install command.\n",
|
||
" \"update your install command.\", FutureWarning)\n",
|
||
"08/06/2021 15:42:27 - INFO - haystack.preprocessor.utils - Fetching from https://s3.eu-central-1.amazonaws.com/deepset.ai-farm-qa/datasets/documents/wiki_gameofthrones_txt.zip to `data/article_txt_got`\n",
|
||
"100%|██████████| 1095120/1095120 [00:00<00:00, 1226455.24B/s]\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/27_Game_of_Thrones__Season_4__soundtrack_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/160_Viserys_Targaryen.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/195_World_of_A_Song_of_Ice_and_Fire.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/118_Dark_Wings__Dark_Words.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/340_Roose_Bolton.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/75_Blackwater__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/514_Book_of_the_Stranger.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/23_Game_of_Thrones_Live_Concert_Experience.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/513_Oathbreaker__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/1_Dragonstone__Game_of_Thrones_episode_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/394_Game_of_Thrones__2014_video_game_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/39_Renly_Baratheon.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/145_Elio_M._García_Jr._and_Linda_Antonsson.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/73_A_Man_Without_Honor.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/356_Tales_of_Dunk_and_Egg.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/358_A_Game_of_Thrones__Genesis.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/446_A_Golden_Crown.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/74_The_Prince_of_Winterfell.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/317_The_Broken_Man.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/24_Game_of_Thrones__Season_1__soundtrack_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/212_The_Children__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/129_Second_Sons.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/359_Kill_the_Boy.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/11_The_Dragon_and_the_Wolf.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/12_Fire.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/21_The_Bear_and_the_Maiden_Fair__song_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/453_Game_of_Thrones__2012_video_game_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/121_The_Bear_and_the_Maiden_Fair.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/488_Brienne_of_Tarth.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/57_The_Laws_of_Gods_and_Men.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/341_Ned_Stark.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/97_Tyrion_Lannister.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/263_Tormund_Giantsbane.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/232_Tommen_Baratheon.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/306_The_Dance_of_Dragons.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/443_The_Kingsroad.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/360_List_of_Game_of_Thrones_episodes.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/452_Fire_and_Blood__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/28_Jorah_Mormont.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/480_Varys.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/487_Ramsay_Bolton.txt\n",
|
||
"08/06/2021 15:42:28 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/134_Game_of_Thrones__Season_6__soundtrack_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/371_Cersei_Lannister.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/217_The_Rogue_Prince.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/475_A_Game_of_Thrones__role-playing_game_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/477_A_Dance_with_Dragons.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/504_List_of_A_Song_of_Ice_and_Fire_video_games.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/369_Samwell_Tarly.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/330_Oberyn_Martell.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/378_A_Game_of_Thrones__board_game_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/481_Sandor_Clegane.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/0_Game_of_Thrones__season_8_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/447_You_Win_or_You_Die.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/469_Outline_of_A_Song_of_Ice_and_Fire_franchise.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/450_Baelor.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/86_Game_of_Thrones__season_4_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/501_Khal_Drogo.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/54_Two_Swords__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/456_Works_based_on_A_Song_of_Ice_and_Fire.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/198_A_Clash_of_Kings.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/40_Stannis_Baratheon.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/102_The_Princess_and_the_Queen.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/424_Night_King.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/87_Valar_Dohaeris.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/37_Joffrey_Baratheon.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/207_Jon_Snow__character_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/84_List_of_awards_and_nominations_received_by_Game_of_Thrones.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/30_List_of_A_Song_of_Ice_and_Fire_characters.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/194_A_Song_of_Ice_and_Fire.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/402_A_Knight_of_the_Seven_Kingdoms__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/151_Ellaria_Sand.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/77_Game_of_Thrones_Ascent.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/25_Game_of_Thrones__Season_2__soundtrack_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/211_The_Watchers_on_the_Wall.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/445_The_Wolf_and_the_Lion.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/22_The_Rains_of_Castamere__song_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/119_Walk_of_Punishment.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/508_A_Game_of_Thrones__Second_Edition__card_game_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/347_Game_of_Thrones__season_2_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/400_Winterfell__Game_of_Thrones_episode_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/379_Davos_Seaworth.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/101_Titties_and_Dragons.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/229_Game_of_Thrones.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/135_Game_of_Thrones__Season_7__soundtrack_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/53_The_Lion_and_the_Rose.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/197_A_Game_of_Thrones.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/213_Valyrian_languages.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/33_David_Benioff.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/449_The_Pointy_End.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/512_Home__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/199_A_Storm_of_Swords.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/343_Catelyn_Stark.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/191_Gendry.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/10_Beyond_the_Wall__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/148_Game_of_Thrones__Winter_Is_Coming.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/67_Unbowed__Unbent__Unbroken.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/399_For_the_Throne__Music_Inspired_by_the_HBO_Series_Game_of_Thrones.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/209_Mockingbird__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/55_Breaker_of_Chains.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/442_Game_of_Thrones__season_1_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/331_Bran_Stark.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/395_Game_of_Thrones__season_5_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/346_Ygritte.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/56_First_of_His_Name.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/9_Game_of_Thrones_Tapestry.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/2_Stormborn.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/146_The_Sons_of_the_Dragon.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/334_Rickon_Stark.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/367_Gregor_Clegane.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/332_Sansa_Stark.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/482_Petyr_Baelish.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/365_A_Song_of_Ice_and_Fire_Roleplaying.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/69_The_Red_Woman.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/362_Winter_Is_Coming.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/311_Game_of_Thrones__season_7_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/348_The_Winds_of_Winter.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/8_Eastwatch.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/410_The_Bells__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/85_Game_of_Thrones__Seven_Kingdoms.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/401_Power_Is_Power.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/98_Black_Friday__South_Park_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/228_Souad_Faress.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/214_Dothraki_language.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/408_The_Last_of_the_Starks.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/461_The_Winds_of_Winter__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/20_Light_of_the_Seven.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/130_Game_of_Thrones_title_sequence.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/373_Tywin_Lannister.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/26_Game_of_Thrones__Season_3__soundtrack_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/411_The_Iron_Throne__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/425_No_One__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/3_The_Queen_s_Justice.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/329_Robert_Baratheon.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/511_After_the_Thrones.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/224_The_Night_Lands.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/273_High_Sparrow.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/485_Oathkeeper.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/80_A_Song_of_Ice_and_Fire_fandom.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/262_Gilly__character_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/403_Jenny_of_Oldstones.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/44_Daenerys_Targaryen.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/68_The_Gift__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/310_Mother_s_Mercy.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/368_Jaime_Lannister.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/444_Cripples__Bastards__and_Broken_Things.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/76_Valar_Morghulis.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/202_A_Feast_for_Crows.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/127_The_Climb__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/120_And_Now_His_Watch_Is_Ended.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/133_Game_of_Thrones__Season_5__soundtrack_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/304_Hardhome.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/210_The_Mountain_and_the_Viper.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/7_The_Spoils_of_War__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/136_Game_of_Thrones__Season_8__soundtrack_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/460_Battle_of_the_Bastards.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/52_Catch_the_Throne.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/154_Margaery_Tyrell.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/299_Rani_Mahal__TV_series_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/79_Thronecast.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/78_The_Rains_of_Castamere.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/435_White_Walker.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/420_Blood_of_My_Blood.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/43_Arya_Stark.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/126_Kissed_by_Fire.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/454_Music_of_Game_of_Thrones.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/407_The_Long_Night__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/349_List_of_Game_of_Thrones_characters.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/99_A_Song_of_Ass_and_Fire.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/474_Bronn__character_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/201_A_Game_of_Thrones__card_game_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/193_Lord_Snow.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/131_Mhysa.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/439_Melisandre.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/396_Game_of_Thrones__season_6_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/208_Robb_Stark.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/506_Game_of_Thrones_Theme.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/515_The_Door__Game_of_Thrones_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/345_A_Game_of_Thrones__comics_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/51_Iron_Throne__A_Song_of_Ice_and_Fire_.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/218_Olenna_Tyrell.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/495_Hodor.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/233_Myrcella_Baratheon.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.preprocessor.utils - Converting data/article_txt_got/342_Theon_Greyjoy.txt\n",
|
||
"08/06/2021 15:42:29 - INFO - haystack.utils - Starting Elasticsearch ...\n",
|
||
"08/06/2021 15:42:29 - WARNING - haystack.utils - Tried to start Elasticsearch through Docker but this failed. It is likely that there is already an existing Elasticsearch instance running. \n",
|
||
"08/06/2021 15:42:29 - INFO - elasticsearch - HEAD http://localhost:9200/ [status:200 request:0.072s]\n",
|
||
"08/06/2021 15:42:30 - INFO - elasticsearch - PUT http://localhost:9200/document [status:200 request:0.331s]\n",
|
||
"08/06/2021 15:42:30 - INFO - elasticsearch - PUT http://localhost:9200/label [status:200 request:0.183s]\n",
|
||
"08/06/2021 15:42:30 - WARNING - haystack.document_store.elasticsearch - DEPRECATION WARNINGS: \n",
|
||
" 1. delete_all_documents() method is deprecated, please use delete_documents method\n",
|
||
" For more details, please refer to the issue: https://github.com/deepset-ai/haystack/issues/1045\n",
|
||
" \n",
|
||
"08/06/2021 15:42:30 - INFO - elasticsearch - POST http://localhost:9200/document/_delete_by_query [status:200 request:0.068s]\n",
|
||
"08/06/2021 15:42:34 - INFO - elasticsearch - POST http://localhost:9200/_bulk?refresh=wait_for [status:200 request:1.673s]\n",
|
||
"08/06/2021 15:42:35 - INFO - elasticsearch - POST http://localhost:9200/_bulk?refresh=wait_for [status:200 request:1.094s]\n",
|
||
"08/06/2021 15:42:36 - INFO - elasticsearch - POST http://localhost:9200/_bulk?refresh=wait_for [status:200 request:1.065s]\n",
|
||
"08/06/2021 15:42:37 - INFO - elasticsearch - POST http://localhost:9200/_bulk?refresh=wait_for [status:200 request:1.077s]\n",
|
||
"08/06/2021 15:42:38 - INFO - elasticsearch - POST http://localhost:9200/_bulk?refresh=wait_for [status:200 request:1.061s]\n",
|
||
"08/06/2021 15:42:38 - INFO - farm.utils - Using device: CUDA \n",
|
||
"08/06/2021 15:42:38 - INFO - farm.utils - Number of GPUs: 1\n",
|
||
"08/06/2021 15:42:38 - INFO - farm.utils - Distributed Training: False\n",
|
||
"08/06/2021 15:42:38 - INFO - farm.utils - Automatic Mixed Precision: None\n",
|
||
"08/06/2021 15:42:39 - INFO - filelock - Lock 140420549184400 acquired on /root/.cache/huggingface/transformers/4ad08b5f983c1384baaf257d8edf51a7a3961fd8c75a1778ac604e3c0b564dd9.d789d64ebfe299b0e416afc4a169632f903f693095b4629a7ea271d5a0cf2c99.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "e827efc5cd744b55b7d7d702663b8250",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/232k [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:39 - INFO - filelock - Lock 140420549184400 released on /root/.cache/huggingface/transformers/4ad08b5f983c1384baaf257d8edf51a7a3961fd8c75a1778ac604e3c0b564dd9.d789d64ebfe299b0e416afc4a169632f903f693095b4629a7ea271d5a0cf2c99.lock\n",
|
||
"08/06/2021 15:42:40 - INFO - filelock - Lock 140420646316304 acquired on /root/.cache/huggingface/transformers/b305bc9085b3d0ce33551c251b75c11b6c6df1d4d51e5d3439d01cf4bb1abc9d.7f2721073f19841be16f41b0a70b600ca6b880c8f3df6f3535cbc704371bdfa4.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "2c9841a834ec4e8fbae1990bc2b07a5c",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/466k [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:40 - INFO - filelock - Lock 140420646316304 released on /root/.cache/huggingface/transformers/b305bc9085b3d0ce33551c251b75c11b6c6df1d4d51e5d3439d01cf4bb1abc9d.7f2721073f19841be16f41b0a70b600ca6b880c8f3df6f3535cbc704371bdfa4.lock\n",
|
||
"08/06/2021 15:42:41 - INFO - filelock - Lock 140420646314128 acquired on /root/.cache/huggingface/transformers/d5b5f07ee846d5baa7142e121b6ee77d11ac68bd5d4541faab38a1ea76c2954a.20430bd8e10ef77a7d2977accefe796051e01bc2fc4aa146bc862997a1a15e79.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "ef99a76fdfbc48669ed4d18e118bfa42",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/28.0 [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:41 - INFO - filelock - Lock 140420646314128 released on /root/.cache/huggingface/transformers/d5b5f07ee846d5baa7142e121b6ee77d11ac68bd5d4541faab38a1ea76c2954a.20430bd8e10ef77a7d2977accefe796051e01bc2fc4aa146bc862997a1a15e79.lock\n",
|
||
"08/06/2021 15:42:42 - INFO - filelock - Lock 140420549303760 acquired on /root/.cache/huggingface/transformers/52774638a790c9ebc5ce11005b260f79cd4cc389abdab9eaa31e8f09d15b4f46.13b559f49587470ab6d85a7dde13174670a0b61c1b942d1489c96023f5d03772.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "dc143ea6a5594b769b3a4880d83f0e1b",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/493 [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:42 - INFO - filelock - Lock 140420549303760 released on /root/.cache/huggingface/transformers/52774638a790c9ebc5ce11005b260f79cd4cc389abdab9eaa31e8f09d15b4f46.13b559f49587470ab6d85a7dde13174670a0b61c1b942d1489c96023f5d03772.lock\n",
|
||
"08/06/2021 15:42:43 - INFO - filelock - Lock 140420532496144 acquired on /root/.cache/huggingface/transformers/41dac75f5df9070331cb0e4bf318c9fdeaef38d9ffd8ca80993c7db830d0c674.446ee898f4788c3ee90f8e7ee5a50281905f509e698f76dc0b583eb74ef973bd.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "4d37fd7e90a64ff68870b86334cfad7e",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/438M [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:52 - INFO - filelock - Lock 140420532496144 released on /root/.cache/huggingface/transformers/41dac75f5df9070331cb0e4bf318c9fdeaef38d9ffd8ca80993c7db830d0c674.446ee898f4788c3ee90f8e7ee5a50281905f509e698f76dc0b583eb74ef973bd.lock\n",
|
||
"08/06/2021 15:42:54 - INFO - filelock - Lock 140420545513488 acquired on /root/.cache/huggingface/transformers/deacb2c219c1bfe83909173f286b60d7cbfd37fc73dc8de723805ca82cabd183.d789d64ebfe299b0e416afc4a169632f903f693095b4629a7ea271d5a0cf2c99.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "56a2181e987a4227a69038267613ffc2",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/232k [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:54 - INFO - filelock - Lock 140420545513488 released on /root/.cache/huggingface/transformers/deacb2c219c1bfe83909173f286b60d7cbfd37fc73dc8de723805ca82cabd183.d789d64ebfe299b0e416afc4a169632f903f693095b4629a7ea271d5a0cf2c99.lock\n",
|
||
"08/06/2021 15:42:55 - INFO - filelock - Lock 140420551255952 acquired on /root/.cache/huggingface/transformers/9a42d18175a45f8dcfd587d7056cbe397e0fe49828bcc543bc3f5b4d2862f7e5.7f2721073f19841be16f41b0a70b600ca6b880c8f3df6f3535cbc704371bdfa4.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "5212b2c80437450fa2a7aa49f65a23f4",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/466k [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:55 - INFO - filelock - Lock 140420551255952 released on /root/.cache/huggingface/transformers/9a42d18175a45f8dcfd587d7056cbe397e0fe49828bcc543bc3f5b4d2862f7e5.7f2721073f19841be16f41b0a70b600ca6b880c8f3df6f3535cbc704371bdfa4.lock\n",
|
||
"08/06/2021 15:42:56 - INFO - filelock - Lock 140420549404048 acquired on /root/.cache/huggingface/transformers/70b0d7ed89bb3511a323f99b7cfa4a3e0c35754fda6a3ac74c3458ca8ffb5764.20430bd8e10ef77a7d2977accefe796051e01bc2fc4aa146bc862997a1a15e79.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "9d36e8f0ab3e4a18b519e5dc04a51061",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/28.0 [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:56 - INFO - filelock - Lock 140420549404048 released on /root/.cache/huggingface/transformers/70b0d7ed89bb3511a323f99b7cfa4a3e0c35754fda6a3ac74c3458ca8ffb5764.20430bd8e10ef77a7d2977accefe796051e01bc2fc4aa146bc862997a1a15e79.lock\n",
|
||
"08/06/2021 15:42:57 - INFO - filelock - Lock 140420549184400 acquired on /root/.cache/huggingface/transformers/f31ea67434695abc6c4fbe109214416d8b48a44f2fe5a0617e7faa3d6a4f8d05.be8dbf4cc0650b9c5997b3b3bc47d0d6c20749c3871e9285d3b624cd75dd9ee6.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "3fa3082333c344d1be66344a7d0ff542",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/492 [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:42:57 - INFO - filelock - Lock 140420549184400 released on /root/.cache/huggingface/transformers/f31ea67434695abc6c4fbe109214416d8b48a44f2fe5a0617e7faa3d6a4f8d05.be8dbf4cc0650b9c5997b3b3bc47d0d6c20749c3871e9285d3b624cd75dd9ee6.lock\n",
|
||
"08/06/2021 15:42:58 - INFO - filelock - Lock 140420549435984 acquired on /root/.cache/huggingface/transformers/2623d56adfe8cc7bf9275b0c620a0e271ee4004c335173bde56310dc8ea99d4f.714228ba33c6248205269978fd6d0ca0ef96508cbd4a11d894882e71d45fad7c.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "e0599025f4534a89932b42945c3c1e21",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/438M [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:43:08 - INFO - filelock - Lock 140420549435984 released on /root/.cache/huggingface/transformers/2623d56adfe8cc7bf9275b0c620a0e271ee4004c335173bde56310dc8ea99d4f.714228ba33c6248205269978fd6d0ca0ef96508cbd4a11d894882e71d45fad7c.lock\n",
|
||
"08/06/2021 15:43:17 - INFO - elasticsearch - POST http://localhost:9200/document/_count [status:200 request:0.032s]\n",
|
||
"08/06/2021 15:43:17 - INFO - haystack.document_store.elasticsearch - Updating embeddings for 2357 docs without embeddings ...\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "5fa38582019043d084a6ecb2f2fea016",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Updating embeddings: 0%| | 0/2357 [00:00<?, ? Docs/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "8412dd46b64444b685563081f2c3c5c2",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Create embeddings: 0%| | 0/2368 [00:00<?, ? Docs/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:44:10 - INFO - farm.utils - Using device: CUDA \n",
|
||
"08/06/2021 15:44:10 - INFO - farm.utils - Number of GPUs: 1\n",
|
||
"08/06/2021 15:44:10 - INFO - farm.utils - Distributed Training: False\n",
|
||
"08/06/2021 15:44:10 - INFO - farm.utils - Automatic Mixed Precision: None\n",
|
||
"08/06/2021 15:44:10 - INFO - filelock - Lock 140420529975184 acquired on /root/.cache/huggingface/transformers/c40d0abb589629c48763f271020d0b1f602f5208c432c0874d420491ed37e28b.122ed338b3591c07dba452777c59ff52330edb340d3d56d67aa9117ad9905673.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "814e632c690e4745a93fdef461fd48b6",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/571 [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:44:10 - INFO - filelock - Lock 140420529975184 released on /root/.cache/huggingface/transformers/c40d0abb589629c48763f271020d0b1f602f5208c432c0874d420491ed37e28b.122ed338b3591c07dba452777c59ff52330edb340d3d56d67aa9117ad9905673.lock\n",
|
||
"08/06/2021 15:44:11 - INFO - filelock - Lock 140417512571920 acquired on /root/.cache/huggingface/transformers/eac3273a8097dda671e3bea1db32c616e74f36a306c65b4858171c98d6db83e9.084aa7284f3a51fa1c8f0641aa04c47d366fbd18711f29d0a995693cfdbc9c9e.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "f29213e62e9e4b33ac72454b6f407073",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/496M [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:44:23 - INFO - filelock - Lock 140417512571920 released on /root/.cache/huggingface/transformers/eac3273a8097dda671e3bea1db32c616e74f36a306c65b4858171c98d6db83e9.084aa7284f3a51fa1c8f0641aa04c47d366fbd18711f29d0a995693cfdbc9c9e.lock\n",
|
||
"Some weights of the model checkpoint at deepset/roberta-base-squad2 were not used when initializing RobertaModel: ['qa_outputs.weight', 'qa_outputs.bias']\n",
|
||
"- This IS expected if you are initializing RobertaModel from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\n",
|
||
"- This IS NOT expected if you are initializing RobertaModel from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\n",
|
||
"Some weights of RobertaModel were not initialized from the model checkpoint at deepset/roberta-base-squad2 and are newly initialized: ['roberta.pooler.dense.weight', 'roberta.pooler.dense.bias']\n",
|
||
"You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\n",
|
||
"08/06/2021 15:44:27 - WARNING - farm.utils - Failed to log params: Changing param values is not allowed. Param with key='prediction_heads' was already logged with value='TextSimilarityHead' for run ID='1b048d196ff442d781f6dccac1eaa0a1'. Attempted logging new value 'QuestionAnsweringHead'.\n",
|
||
"08/06/2021 15:44:28 - INFO - filelock - Lock 140417504669200 acquired on /root/.cache/huggingface/transformers/81c80edb4c6cefa5cae64ccfdb34b3b309ecaf60da99da7cd1c17e24a5d36eb5.647b4548b6d9ea817e82e7a9231a320231a1c9ea24053cc9e758f3fe68216f05.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "f27ffc683e714a28a0842a730e736716",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/899k [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:44:28 - INFO - filelock - Lock 140417504669200 released on /root/.cache/huggingface/transformers/81c80edb4c6cefa5cae64ccfdb34b3b309ecaf60da99da7cd1c17e24a5d36eb5.647b4548b6d9ea817e82e7a9231a320231a1c9ea24053cc9e758f3fe68216f05.lock\n",
|
||
"08/06/2021 15:44:29 - INFO - filelock - Lock 140417504268880 acquired on /root/.cache/huggingface/transformers/b87d46371731376b11768b7839b1a5938a4f77d6bd2d9b683f167df0026af432.5d12962c5ee615a4c803841266e9c3be9a691a924f72d395d3a6c6c81157788b.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "443739aca635464ea01e08e800dd40aa",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/456k [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:44:29 - INFO - filelock - Lock 140417504268880 released on /root/.cache/huggingface/transformers/b87d46371731376b11768b7839b1a5938a4f77d6bd2d9b683f167df0026af432.5d12962c5ee615a4c803841266e9c3be9a691a924f72d395d3a6c6c81157788b.lock\n",
|
||
"08/06/2021 15:44:30 - INFO - filelock - Lock 140420403278096 acquired on /root/.cache/huggingface/transformers/c9d2c178fac8d40234baa1833a3b1903d393729bf93ea34da247c07db24900d0.cb2244924ab24d706b02fd7fcedaea4531566537687a539ebb94db511fd122a0.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "1b81083a5e9644c08eb711693d480ed2",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/772 [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:44:31 - INFO - filelock - Lock 140420403278096 released on /root/.cache/huggingface/transformers/c9d2c178fac8d40234baa1833a3b1903d393729bf93ea34da247c07db24900d0.cb2244924ab24d706b02fd7fcedaea4531566537687a539ebb94db511fd122a0.lock\n",
|
||
"08/06/2021 15:44:31 - INFO - filelock - Lock 140420403278096 acquired on /root/.cache/huggingface/transformers/e8a600814b69e3ee74bb4a7398cc6fef9812475010f16a6c9f151b2c2772b089.451739a2f3b82c3375da0dfc6af295bedc4567373b171f514dd09a4cc4b31513.lock\n"
|
||
]
|
||
},
|
||
{
|
||
"output_type": "display_data",
|
||
"data": {
|
||
"application/vnd.jupyter.widget-view+json": {
|
||
"model_id": "3abc298844944bcca8615925d4cf36a5",
|
||
"version_major": 2,
|
||
"version_minor": 0
|
||
},
|
||
"text/plain": [
|
||
"Downloading: 0%| | 0.00/79.0 [00:00<?, ?B/s]"
|
||
]
|
||
},
|
||
"metadata": {
|
||
"tags": []
|
||
}
|
||
},
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stderr",
|
||
"text": [
|
||
"08/06/2021 15:44:31 - INFO - filelock - Lock 140420403278096 released on /root/.cache/huggingface/transformers/e8a600814b69e3ee74bb4a7398cc6fef9812475010f16a6c9f151b2c2772b089.451739a2f3b82c3375da0dfc6af295bedc4567373b171f514dd09a4cc4b31513.lock\n",
|
||
"08/06/2021 15:44:32 - WARNING - farm.utils - Failed to log params: Changing param values is not allowed. Param with key='processor' was already logged with value='TextSimilarityProcessor' for run ID='1b048d196ff442d781f6dccac1eaa0a1'. Attempted logging new value 'SquadProcessor'.\n",
|
||
"08/06/2021 15:44:32 - WARNING - farm.utils - ML Logging is turned off. No parameters, metrics or artifacts will be logged to MLFlow.\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.utils - Using device: CUDA \n",
|
||
"08/06/2021 15:44:32 - INFO - farm.utils - Number of GPUs: 1\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.utils - Distributed Training: False\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.utils - Automatic Mixed Precision: None\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.infer - Got ya 2 parallel workers to do inference ...\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.infer - 0 0 \n",
|
||
"08/06/2021 15:44:32 - INFO - farm.infer - /w\\ /w\\\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.infer - /'\\ / \\\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.infer - \n",
|
||
"08/06/2021 15:44:32 - INFO - farm.utils - Using device: CUDA \n",
|
||
"08/06/2021 15:44:32 - INFO - farm.utils - Number of GPUs: 1\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.utils - Distributed Training: False\n",
|
||
"08/06/2021 15:44:32 - INFO - farm.utils - Automatic Mixed Precision: None\n"
|
||
]
|
||
}
|
||
],
|
||
"metadata": {
|
||
"colab": {
|
||
"base_uri": "https://localhost:8080/",
|
||
"height": 1000,
|
||
"referenced_widgets": [
|
||
"e827efc5cd744b55b7d7d702663b8250",
|
||
"d7f2e3e918514031acf261116b690c5b",
|
||
"e7c2e561bfdf49aa88814126e0471a58",
|
||
"3838eb97db0f46a8828473c0e686f5df",
|
||
"769ee7fdb9c549e2a8d7f0e0719477eb",
|
||
"b64f5d69b6dc4f57894296991279b707",
|
||
"f069997c1a114e46947c8a07cebc709b",
|
||
"9cf11e92693141e6bb06462209b67b46",
|
||
"02b9c7b799a846b6974eac600c0178ba",
|
||
"667c145e9bef4f5b99fffda361a2ea47",
|
||
"32325d4b51d04b47bde5794b174fbb26",
|
||
"2c9841a834ec4e8fbae1990bc2b07a5c",
|
||
"216fd635f06847c5a7daf25d543e321b",
|
||
"fe18331098014a22aeb390730d35fedb",
|
||
"b8dddaca70054b5cab955e0dab9d6d0a",
|
||
"490edef475d646a2ba12b429c1244de4",
|
||
"3817606563914b0ca26620da959a1fc4",
|
||
"cbe8cc2b1394456bac529507081a2263",
|
||
"a2a0402f1a63407190cf2a132a0bc2b6",
|
||
"6bf5fe6ae4bf494e9c33e0940da62951",
|
||
"9e5b65de890b446bba6ea3c24fef8588",
|
||
"d6ec9612d02c42e7bb42033d727fc03c",
|
||
"ef99a76fdfbc48669ed4d18e118bfa42",
|
||
"4de441f28ec040e995c285b1e3fcadb9",
|
||
"a8f5a18af7cf410bb065eefdb887cb92",
|
||
"9a4e9075d67b4bbaab47ff97e8ea539c",
|
||
"ff4b4d0b7fc14f05971ad09a603e55d4",
|
||
"1a9b1a31f910412bb69e4cb59170fc25",
|
||
"b2249a087bd343999a5319152d7e0548",
|
||
"1618f5a1981c4d18a67be3965745aa49",
|
||
"790f7b4b1d3d4d8e84a3693f3c8b9b85",
|
||
"a226c1daa4454c55a03b1edf595a33ae",
|
||
"6de6dbe386d447f588c982d3501bd1c1",
|
||
"dc143ea6a5594b769b3a4880d83f0e1b",
|
||
"b637557712f44674abc5e5ebd32d87cf",
|
||
"aad1b320c9fd451ab081f5c238bb91c0",
|
||
"99ae91dc416b4108b4282395f403b39a",
|
||
"68b86c5c4be34554975a77a26ea6319b",
|
||
"e80fc1c849354ee89fa0d51f7de4c78e",
|
||
"b4eb040d5e224e619414a4d4740badc5",
|
||
"30413c25f3774ef6860be4230804e31c",
|
||
"5f4b28761f204e8eaa90f22a9e7677c7",
|
||
"ec237876a762449394f0930aa6690fcb",
|
||
"983cde7e80fd4eebb0b01f444aa16579",
|
||
"4d37fd7e90a64ff68870b86334cfad7e",
|
||
"394b26eab89b410db98a07cdf6609ead",
|
||
"b5c93207802346b69b7d9178b4d67b2a",
|
||
"027441d4e1f14648919f54ba9d9a5204",
|
||
"b27ce7d9f5e74ef895b809e519673c60",
|
||
"37fcf93794cb46d491d55100a6d8fee8",
|
||
"f46b46bdc75641b6b3c8d23b939bc797",
|
||
"de371bd60c64464284f47eeef0a07bed",
|
||
"04a81edc284a4378bc841f72f729305c",
|
||
"a86a02ebcb184749bd27590067ef71bc",
|
||
"7ea5f945a5aa4eb4adc96e9f986a0d71",
|
||
"56a2181e987a4227a69038267613ffc2",
|
||
"3308704acebe439188b70c6fd238ae66",
|
||
"6b97bc4ee3924dfdbe72738d137c967e",
|
||
"c05f2ee787944a9e931f74de9831599c",
|
||
"14cd6229f5e043f8862c6fe1773df4e0",
|
||
"7541bd7ec86f4c028405e6e9ca6f4d06",
|
||
"853a80d353144e8d9cd6ce8788c7a9bb",
|
||
"f825adffa7544868a2ae665ab6434d5d",
|
||
"d4e2dd1fa16b40c3bb115ecccba69a03",
|
||
"15e1e4e3276a467c88777aae68cd693c",
|
||
"1c6f0c68669a4c34b74fcb49cdb4aa07",
|
||
"5212b2c80437450fa2a7aa49f65a23f4",
|
||
"a702fc844c5b40e2986c62da5fe92c9b",
|
||
"24a7839d950740c9958e2d88b7ad829a",
|
||
"c6d3d0bb414c4aa5ae20f006cce90f33",
|
||
"b14faabb0d6d4d30bfa8efc097e5aa23",
|
||
"ba340a739c554989849060bd29eadbc9",
|
||
"27a54e55bff94428b7c19fc35b125047",
|
||
"56660d608cbe451e9ec0701c1941a7ab",
|
||
"8dc7877695b74610a849b160008ccbab",
|
||
"ca54b4744f244922bc75447d707685e6",
|
||
"7a26b17f3b9d45a4a99b8494fc5de6dd",
|
||
"9d36e8f0ab3e4a18b519e5dc04a51061",
|
||
"5b2cc531f1e44c318488c993024a94b7",
|
||
"463ff451eab94f509f4ba6ce4e1ae1ef",
|
||
"7e59ccb05ef3494eb8ad400dd8f606e0",
|
||
"cbfecc60258e428eb51652dd36655511",
|
||
"42819b5d13df44b392be19add1bdd122",
|
||
"6aa855ad681f44dabb024d4c4d34490b",
|
||
"bc806490fb8148ca9525c3b685a377c2",
|
||
"91e3d408502b480d818df1fdbbd88afb",
|
||
"1fcbba1dc2924f0489dd6cf3f6622915",
|
||
"41635bd3da9c4c1da50fe86a01da25bf",
|
||
"3fa3082333c344d1be66344a7d0ff542",
|
||
"a2905ce60084476da1c96d46a63f138d",
|
||
"4de5d23d236646629ee2cabf08f4621b",
|
||
"2d5ce6e282b14019ab5aece4ceb4e643",
|
||
"f028104b8e9548f0a7e53f1edcd63c4e",
|
||
"4cea79778d26402dad42393c2bebfe10",
|
||
"8f52bb4d56dc4084be52840e97b22790",
|
||
"b0b7c0653441453db63d253b839144f6",
|
||
"6445465e075f4254b18874e0f7353885",
|
||
"89a23afc2b704d83927acc1835361e73",
|
||
"051606acbe974583b33f5e50402c72de",
|
||
"e0599025f4534a89932b42945c3c1e21",
|
||
"a1ce792f467c47acb4803b4c727b80a1",
|
||
"09dd2dd5a35c4f418ea1ef010e6831d2",
|
||
"7a408f3b5c644f42b88574ccffc2d7bb",
|
||
"b780dea3ed6e4057a09e432a067596fb",
|
||
"1d14929d95684c05a66c958fd8a5b89d",
|
||
"11d32ef999d94db187dab41a1bbf7723",
|
||
"3d71e9d26ebb41d980819d608ddb115a",
|
||
"a53314a74ba14e9ba7fc81a4aa39070d",
|
||
"96b976f448be47d892dc1923c51c470e",
|
||
"c151c810fc984ff79aa85178d54c3b6a",
|
||
"5fa38582019043d084a6ecb2f2fea016",
|
||
"1c10236190604ad49fa72d4d851ac316",
|
||
"2a71821c410d4cb1afaab09574982b02",
|
||
"66f26219cc6248288423c2e7ba5304c4",
|
||
"33143aed23264e82a7750d5fbc8e22a7",
|
||
"112a6f4e707a4accb18b649f671634cf",
|
||
"9aa65bb178af419bbdc15d19fa572e62",
|
||
"0cab5420cdb144e9aa3dfa907e1ed729",
|
||
"28b880a5c9864a63b2d557a1ec9458a5",
|
||
"6e5b975419994befb261100d7719e991",
|
||
"0f7ab0ce7ee24838a6cbffac4cdb3040",
|
||
"8412dd46b64444b685563081f2c3c5c2",
|
||
"ba67c6d2324d440abbd25de05161b381",
|
||
"84cea882fd1e431b9c93631ee3f4ed17",
|
||
"cea38043b06d419fa63695a316233088",
|
||
"caa201fa5bc74823bcdea73599130499",
|
||
"f53911fd1c9c47c69e69206c3169158a",
|
||
"33b89e0dfe124edaa5c90ada36a4c7a8",
|
||
"b7e2a9e5035544ba94bdeb3c56b19174",
|
||
"7b4fa73603264880ad4046d5791c76fa",
|
||
"2d476cc7b1ce45ebb82f9cf5a41d4024",
|
||
"4e35f1931b50406393ffce1c3b622986",
|
||
"814e632c690e4745a93fdef461fd48b6",
|
||
"56b67d80ef05478da31ef471eb7de385",
|
||
"1bc6ff28903f4b2e9aefb6275aa047be",
|
||
"77265036d6824670b9fc258192deac11",
|
||
"3f0c353869fe42828794cd8a14acb39e",
|
||
"409718ada73943e69bee6f73e0db5b94",
|
||
"e1e04bcfd0754a3cb1ea6ac0d8ba0efa",
|
||
"fc67d27eeac0448ba310e3fb991b9b5a",
|
||
"39547579c0b443e696121427bd3279dd",
|
||
"e7227229d21d4d7292733f373fa7f9db",
|
||
"adbe499b09574ba6853581f3f6cc21d5",
|
||
"f29213e62e9e4b33ac72454b6f407073",
|
||
"46802db8abd042fb90c811cd2ea4bb5b",
|
||
"209eb3ac83504ba3920b13e5aec28da6",
|
||
"ebd1f7d8259549b1b287cd624ff5b75d",
|
||
"e7a21b2d87c942858f1b956f9af2b06e",
|
||
"fb31d79ac3f3467d986a97bd237f26be",
|
||
"0ca3a7dc4e804cecb8c719bfef9c055b",
|
||
"399fa7054fc74dfea45d22ee20765b30",
|
||
"26be6fe237fd4b8c8d8fac787d72e823",
|
||
"52de26e5a87e44debbcf00c0c4073dca",
|
||
"d03e8b5ed27c4c97a8a25bdfa82a752e",
|
||
"f27ffc683e714a28a0842a730e736716",
|
||
"b5efbf17543a4db7a3b01ee0e28743c9",
|
||
"cddcc8af67ae4c539dec147436d4628b",
|
||
"892b9273604c4440ad179ed4a8dfc5e1",
|
||
"96f73362e4694c24acb058e1b7d69a14",
|
||
"671cf89ffa2741cb9c1ffb898199d49b",
|
||
"61e9bdf3a077438cb26f4bff9265ee4c",
|
||
"76e76e39d6d64438a24919e973e0053c",
|
||
"83dad7ffdd8747ddbb3942bb6c58445c",
|
||
"d377b1dec2a84337bc1644ff51464e4d",
|
||
"038267d5661343deb4be8a3c6d16a221",
|
||
"443739aca635464ea01e08e800dd40aa",
|
||
"484eafd3786b43219fd4103aba12c2e9",
|
||
"c87dcd38005944f2affcacb28ab8dd89",
|
||
"f591cb897745493182b1854d3be5e546",
|
||
"580a190f9eee4b0e8d3008e529535aa7",
|
||
"3fc82442548e42e887ba9ad11dfd5d77",
|
||
"c7ca455474c04af18ade2d3fd906727e",
|
||
"d31dc63868a4475fbcfc7406723ad359",
|
||
"2ed78454dfa347aaa0ab9be6be341264",
|
||
"0ace7e3fad4b430c9fb09d6736ea9ac3",
|
||
"b6c733e5327a40259700554efe576527",
|
||
"1b81083a5e9644c08eb711693d480ed2",
|
||
"ac67a20654414b0ea3b36acdc6e86171",
|
||
"0122a517adf14859b9a594f3da1a0688",
|
||
"518539c52ba54f1f9d59ec0dfdca132d",
|
||
"e058a81bbdc941fd9932f5c04a9cdc23",
|
||
"7389aaaf51f349c5aa745c29c08dcc66",
|
||
"f374072420b947c3a5a9f4d3849d3334",
|
||
"a762c482b84540beb350901ac7f0f46b",
|
||
"f1238867e4e249c1a0daa553d459e98b",
|
||
"00aaf9b5872940b8b055dbb27caccda6",
|
||
"4bbce51f2459479f8a95064c17b73e2c",
|
||
"3abc298844944bcca8615925d4cf36a5",
|
||
"854d7275b81c443cb997a975164a3b99",
|
||
"01781b50453c401785af24b5ea608440",
|
||
"6476b24e759f4ae4ba594ec63190506c",
|
||
"90755e4609454529b3246d1d5573cf26",
|
||
"6d34f638e428428f8463026b19172847",
|
||
"715a7b7b1c8444b5abc1c779f8f78cd1",
|
||
"9f8dbb42b20a43799c4c5590be22cb30",
|
||
"c3ca769e981a4e41929246c2b22bfb7c",
|
||
"3ff47ea8d9a641cd9cfece170597dd51",
|
||
"30a569a443254abebf4cb863c80c8253"
|
||
]
|
||
},
|
||
"id": "Ig7dgfdHN-gg",
|
||
"outputId": "62383a2b-d653-4f9f-e3a9-4b2cb90ee007",
|
||
"pycharm": {
|
||
"name": "#%%\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"## Keyword vs Question/Statement Classifier\n",
|
||
"\n",
|
||
"The keyword vs question/statement query classifier essentially distinguishes between the keyword queries and statements/questions. So you can intelligently route to different retrieval nodes based on the nature of the query. Using this classifier can potentially yield the following benefits:\n",
|
||
"\n",
|
||
"* Getting better search results (e.g. by routing only proper questions to DPR / QA branches and not keyword queries)\n",
|
||
"* Less GPU costs (e.g. if 50% of your traffic is only keyword queries you could just use elastic here and save the GPU resources for the other 50% of traffic with semantic queries)\n",
|
||
"\n",
|
||
"\n"
|
||
],
|
||
"metadata": {
|
||
"id": "5kPAbP4EN-gk",
|
||
"pycharm": {
|
||
"name": "#%% md\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"Below, we define a `SklQueryClassifier` and show how to use it:\n",
|
||
"\n",
|
||
"Read more about the trained model and dataset used [here](https://ext-models-haystack.s3.eu-central-1.amazonaws.com/gradboost_query_classifier/readme.txt)"
|
||
],
|
||
"metadata": {
|
||
"id": "K4wZ3xkQCHjY"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"# Here we build the pipeline\n",
|
||
"sklearn_keyword_classifier = Pipeline()\n",
|
||
"sklearn_keyword_classifier.add_node(component=SklearnQueryClassifier(), name=\"QueryClassifier\", inputs=[\"Query\"])\n",
|
||
"sklearn_keyword_classifier.add_node(component=dpr_retriever, name=\"DPRRetriever\", inputs=[\"QueryClassifier.output_1\"])\n",
|
||
"sklearn_keyword_classifier.add_node(component=es_retriever, name=\"ESRetriever\", inputs=[\"QueryClassifier.output_2\"])\n",
|
||
"sklearn_keyword_classifier.add_node(component=reader, name=\"QAReader\", inputs=[\"ESRetriever\", \"DPRRetriever\"])\n",
|
||
"sklearn_keyword_classifier.draw(\"pipeline_classifier.png\")\n"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "Sz-oZ5eJN-gl",
|
||
"pycharm": {
|
||
"name": "#%%\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"\n",
|
||
"# Run only the dense retriever on the full sentence query\n",
|
||
"res_1 = sklearn_keyword_classifier.run(\n",
|
||
" query=\"Who is the father of Arya Stark?\"\n",
|
||
")\n",
|
||
"print(\"DPR Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_1, details=\"minimum\")\n",
|
||
"\n",
|
||
"# Run only the sparse retriever on a keyword based query\n",
|
||
"res_2 = sklearn_keyword_classifier.run(\n",
|
||
" query=\"arya stark father\"\n",
|
||
")\n",
|
||
"print(\"ES Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_2, details=\"minimum\")\n"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "fP6Cpcb-o0HK"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"\n",
|
||
"# Run only the dense retriever on the full sentence query\n",
|
||
"res_3 = sklearn_keyword_classifier.run(\n",
|
||
" query=\"which country was jon snow filmed ?\"\n",
|
||
")\n",
|
||
"print(\"DPR Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_3, details=\"minimum\")\n",
|
||
"\n",
|
||
"# Run only the sparse retriever on a keyword based query\n",
|
||
"res_4 = sklearn_keyword_classifier.run(\n",
|
||
" query=\"jon snow country\"\n",
|
||
")\n",
|
||
"print(\"ES Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_4, details=\"minimum\")"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "EZru--pao1UG"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"# Run only the dense retriever on the full sentence query\n",
|
||
"res_5 = sklearn_keyword_classifier.run(\n",
|
||
" query=\"who are the younger brothers of arya stark ?\"\n",
|
||
")\n",
|
||
"print(\"DPR Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_5, details=\"minimum\")\n",
|
||
"\n",
|
||
"# Run only the sparse retriever on a keyword based query\n",
|
||
"res_6 = sklearn_keyword_classifier.run(\n",
|
||
" query=\"arya stark younger brothers\"\n",
|
||
")\n",
|
||
"print(\"ES Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_6, details=\"minimum\")"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "MWCMG8MJo1tB"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"## Transformer Keyword vs Question/Statement Classifier\n",
|
||
"\n",
|
||
"Firstly, it's essential to understand the trade-offs between SkLearn and Transformer query classifiers. The transformer classifier is more accurate than SkLearn classifier however, it requires more memory and most probably GPU for faster inference however the transformer size is roughly `50 MBs`. Whereas, SkLearn is less accurate however is much more faster and doesn't require GPU for inference.\n",
|
||
"\n",
|
||
"Below, we define a `TransformersQueryClassifier` and show how to use it:\n",
|
||
"\n",
|
||
"Read more about the trained model and dataset used [here](https://huggingface.co/shahrukhx01/bert-mini-finetune-question-detection)"
|
||
],
|
||
"metadata": {
|
||
"id": "dQ5YMyd4CQPC"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"# Here we build the pipeline\n",
|
||
"transformer_keyword_classifier = Pipeline()\n",
|
||
"transformer_keyword_classifier.add_node(component=TransformersQueryClassifier(), name=\"QueryClassifier\", inputs=[\"Query\"])\n",
|
||
"transformer_keyword_classifier.add_node(component=dpr_retriever, name=\"DPRRetriever\", inputs=[\"QueryClassifier.output_1\"])\n",
|
||
"transformer_keyword_classifier.add_node(component=es_retriever, name=\"ESRetriever\", inputs=[\"QueryClassifier.output_2\"])\n",
|
||
"transformer_keyword_classifier.add_node(component=reader, name=\"QAReader\", inputs=[\"ESRetriever\", \"DPRRetriever\"])\n",
|
||
"transformer_keyword_classifier.draw(\"pipeline_classifier.png\")"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "yuddZL3FCPeq"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"\n",
|
||
"# Run only the dense retriever on the full sentence query\n",
|
||
"res_1 = transformer_keyword_classifier.run(\n",
|
||
" query=\"Who is the father of Arya Stark?\"\n",
|
||
")\n",
|
||
"print(\"DPR Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_1, details=\"minimum\")\n",
|
||
"\n",
|
||
"# Run only the sparse retriever on a keyword based query\n",
|
||
"res_2 = transformer_keyword_classifier.run(\n",
|
||
" query=\"arya stark father\"\n",
|
||
")\n",
|
||
"print(\"ES Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_2, details=\"minimum\")\n"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "uFmJJIb_q-X7"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"\n",
|
||
"# Run only the dense retriever on the full sentence query\n",
|
||
"res_3 = transformer_keyword_classifier.run(\n",
|
||
" query=\"which country was jon snow filmed ?\"\n",
|
||
")\n",
|
||
"print(\"DPR Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_3, details=\"minimum\")\n",
|
||
"\n",
|
||
"# Run only the sparse retriever on a keyword based query\n",
|
||
"res_4 = transformer_keyword_classifier.run(\n",
|
||
" query=\"jon snow country\"\n",
|
||
")\n",
|
||
"print(\"ES Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_4, details=\"minimum\")"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "GMPNcTz8rdix"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"# Run only the dense retriever on the full sentence query\n",
|
||
"res_5 = transformer_keyword_classifier.run(\n",
|
||
" query=\"who are the younger brothers of arya stark ?\"\n",
|
||
")\n",
|
||
"print(\"DPR Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_5, details=\"minimum\")\n",
|
||
"\n",
|
||
"# Run only the sparse retriever on a keyword based query\n",
|
||
"res_6 = transformer_keyword_classifier.run(\n",
|
||
" query=\"arya stark younger brothers\"\n",
|
||
")\n",
|
||
"print(\"ES Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_6, details=\"minimum\")"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "jN5zdLJbrzOh"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"## Question vs Statement Classifier\n",
|
||
"\n",
|
||
"One possible use case of this classifier could be to route queries after the document retrieval to only send questions to QA reader and in case of declarative sentence, just return the DPR/ES results back to user to enhance user experience and only show answers when user explicitly asks it.\n",
|
||
"\n",
|
||
"\n"
|
||
],
|
||
"metadata": {
|
||
"id": "zLwdVwMXDcoS"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"Below, we define a `TransformersQueryClassifier` and show how to use it:\n",
|
||
"\n",
|
||
"Read more about the trained model and dataset used [here](https://huggingface.co/shahrukhx01/question-vs-statement-classifier)"
|
||
],
|
||
"metadata": {
|
||
"id": "SMVFFRtMPVIt"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"# Here we build the pipeline\n",
|
||
"transformer_question_classifier = Pipeline()\n",
|
||
"transformer_question_classifier.add_node(component=dpr_retriever, name=\"DPRRetriever\", inputs=[\"Query\"])\n",
|
||
"transformer_question_classifier.add_node(component=TransformersQueryClassifier(model_name_or_path=\"shahrukhx01/question-vs-statement-classifier\"), name=\"QueryClassifier\", inputs=[\"DPRRetriever\"])\n",
|
||
"transformer_question_classifier.add_node(component=reader, name=\"QAReader\", inputs=[\"QueryClassifier.output_1\"])\n",
|
||
"transformer_question_classifier.draw(\"question_classifier.png\")\n",
|
||
"\n",
|
||
"# Run only the QA reader on the question query\n",
|
||
"res_1 = transformer_question_classifier.run(\n",
|
||
" query=\"Who is the father of Arya Stark?\"\n",
|
||
")\n",
|
||
"print(\"DPR Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_1, details=\"minimum\")\n",
|
||
"\n",
|
||
"# Show only DPR results\n",
|
||
"res_2 = transformer_question_classifier.run(\n",
|
||
" query=\"Arya Stark was the daughter of a Lord.\"\n",
|
||
")\n",
|
||
"print(\"ES Results\" + \"\\n\" + \"=\"*15)\n",
|
||
"print_answers(res_2, details=\"minimum\")"
|
||
],
|
||
"outputs": [],
|
||
"metadata": {
|
||
"id": "BIisEJrzDr-9"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"## Standalone Query Classifier\n",
|
||
"Below we run queries classifiers standalone to better understand their outputs on each of the three types of queries"
|
||
],
|
||
"metadata": {
|
||
"id": "sJcWRK4Hwyx2"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"# Here we create the keyword vs question/statement query classifier\n",
|
||
"from haystack.pipelines import TransformersQueryClassifier\n",
|
||
"\n",
|
||
"queries = [\"arya stark father\",\"jon snow country\",\n",
|
||
" \"who is the father of arya stark\",\"which country was jon snow filmed?\"]\n",
|
||
"\n",
|
||
"keyword_classifier = TransformersQueryClassifier()\n",
|
||
"\n",
|
||
"for query in queries:\n",
|
||
" result = keyword_classifier.run(query=query)\n",
|
||
" if result[1] == \"output_1\":\n",
|
||
" category = \"question/statement\"\n",
|
||
" else:\n",
|
||
" category = \"keyword\"\n",
|
||
"\n",
|
||
" print(f\"Query: {query}, raw_output: {result}, class: {category}\")\n"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stdout",
|
||
"text": [
|
||
"Query: arya stark father, raw_output: ({'query': 'arya stark father'}, 'output_2'), class: keyword\n",
|
||
"Query: jon snow country, raw_output: ({'query': 'jon snow country'}, 'output_2'), class: keyword\n",
|
||
"Query: who is the father of arya stark, raw_output: ({'query': 'who is the father of arya stark'}, 'output_1'), class: question/statement\n",
|
||
"Query: which country was jon snow filmed?, raw_output: ({'query': 'which country was jon snow filmed?'}, 'output_1'), class: question/statement\n"
|
||
]
|
||
}
|
||
],
|
||
"metadata": {
|
||
"colab": {
|
||
"base_uri": "https://localhost:8080/"
|
||
},
|
||
"id": "XhPMEqBzxA8V",
|
||
"outputId": "be3ba2ac-b557-4cb3-9eed-41928f644b6e"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"source": [
|
||
"# Here we create the question vs statement query classifier \n",
|
||
"from haystack.pipelines import TransformersQueryClassifier\n",
|
||
"\n",
|
||
"queries = [\"Lord Eddard was the father of Arya Stark.\",\"Jon Snow was filmed in United Kingdom.\",\n",
|
||
" \"who is the father of arya stark?\",\"Which country was jon snow filmed in?\"]\n",
|
||
"\n",
|
||
"question_classifier = TransformersQueryClassifier(model_name_or_path=\"shahrukhx01/question-vs-statement-classifier\")\n",
|
||
"\n",
|
||
"for query in queries:\n",
|
||
" result = question_classifier.run(query=query)\n",
|
||
" if result[1] == \"output_1\":\n",
|
||
" category = \"question\"\n",
|
||
" else:\n",
|
||
" category = \"statement\"\n",
|
||
"\n",
|
||
" print(f\"Query: {query}, raw_output: {result}, class: {category}\")"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"output_type": "stream",
|
||
"name": "stdout",
|
||
"text": [
|
||
"Query: Lord Eddard was the father of Arya Stark., raw_output: ({'query': 'Lord Eddard was the father of Arya Stark.'}, 'output_2'), class: statement\n",
|
||
"Query: Jon Snow was filmed in United Kingdom., raw_output: ({'query': 'Jon Snow was filmed in United Kingdom.'}, 'output_2'), class: statement\n",
|
||
"Query: who is the father of arya stark?, raw_output: ({'query': 'who is the father of arya stark?'}, 'output_1'), class: question\n",
|
||
"Query: Which country was jon snow filmed in?, raw_output: ({'query': 'Which country was jon snow filmed in?'}, 'output_1'), class: question\n"
|
||
]
|
||
}
|
||
],
|
||
"metadata": {
|
||
"colab": {
|
||
"base_uri": "https://localhost:8080/"
|
||
},
|
||
"id": "l4eH3SSaxZ0O",
|
||
"outputId": "53384108-3d4c-4547-d32a-4a63aa1b74a0"
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"## Conclusion\n",
|
||
"\n",
|
||
"The query classifier gives you more possibility to be more creative with the pipelines and use different retrieval nodes in a flexible fashion. Moreover, as in the case of Question vs Statement classifier you can also choose the queries which you want to send to the reader.\n",
|
||
"\n",
|
||
"Finally, you also have the possible of bringing your own classifier and plugging it into either `TransformersQueryClassifier(model_name_or_path=\"<huggingface_model_name_or_file_path>\")` or using the `SklearnQueryClassifier(model_name_or_path=\"url_to_classifier_or_file_path_as_pickle\", vectorizer_name_or_path=\"url_to_vectorizer_or_file_path_as_pickle\")`"
|
||
],
|
||
"metadata": {
|
||
"id": "9VMUHR-BN-gl",
|
||
"pycharm": {
|
||
"name": "#%% md\n"
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"## About us\n",
|
||
"\n",
|
||
"This [Haystack](https://github.com/deepset-ai/haystack/) notebook was made with love by [deepset](https://deepset.ai/) in Berlin, Germany\n",
|
||
"\n",
|
||
"We bring NLP to the industry via open source! \n",
|
||
"Our focus: Industry specific language models & large scale QA systems.\n",
|
||
" \n",
|
||
"Some of our other work: \n",
|
||
"- [German BERT](https://deepset.ai/german-bert)\n",
|
||
"- [GermanQuAD and GermanDPR](https://deepset.ai/germanquad)\n",
|
||
"- [FARM](https://github.com/deepset-ai/FARM)\n",
|
||
"\n",
|
||
"Get in touch:\n",
|
||
"[Twitter](https://twitter.com/deepset_ai) | [LinkedIn](https://www.linkedin.com/company/deepset-ai/) | [Slack](https://haystack.deepset.ai/community/join) | [GitHub Discussions](https://github.com/deepset-ai/haystack/discussions) | [Website](https://deepset.ai)\n",
|
||
"\n",
|
||
"By the way: [we're hiring!](https://www.deepset.ai/jobs) "
|
||
],
|
||
"metadata": {}
|
||
}
|
||
],
|
||
"metadata": {
|
||
"accelerator": "GPU",
|
||
"colab": {
|
||
"collapsed_sections": [],
|
||
"name": "Tutorial14_Query_Classifier.ipynb",
|
||
"provenance": []
|
||
},
|
||
"kernelspec": {
|
||
"name": "python3",
|
||
"display_name": "Python 3.9.5 64-bit ('venv': venv)"
|
||
},
|
||
"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.5"
|
||
},
|
||
"widgets": {
|
||
"application/vnd.jupyter.widget-state+json": {
|
||
"00aaf9b5872940b8b055dbb27caccda6": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"0122a517adf14859b9a594f3da1a0688": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_f374072420b947c3a5a9f4d3849d3334",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_7389aaaf51f349c5aa745c29c08dcc66",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"01781b50453c401785af24b5ea608440": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_715a7b7b1c8444b5abc1c779f8f78cd1",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_6d34f638e428428f8463026b19172847",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"027441d4e1f14648919f54ba9d9a5204": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_04a81edc284a4378bc841f72f729305c",
|
||
"max": 437986065,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_de371bd60c64464284f47eeef0a07bed",
|
||
"value": 437986065
|
||
}
|
||
},
|
||
"02b9c7b799a846b6974eac600c0178ba": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"038267d5661343deb4be8a3c6d16a221": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"04a81edc284a4378bc841f72f729305c": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"051606acbe974583b33f5e50402c72de": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"09dd2dd5a35c4f418ea1ef010e6831d2": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_11d32ef999d94db187dab41a1bbf7723",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_1d14929d95684c05a66c958fd8a5b89d",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"0ace7e3fad4b430c9fb09d6736ea9ac3": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"0ca3a7dc4e804cecb8c719bfef9c055b": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"0cab5420cdb144e9aa3dfa907e1ed729": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"0f7ab0ce7ee24838a6cbffac4cdb3040": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"112a6f4e707a4accb18b649f671634cf": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"11d32ef999d94db187dab41a1bbf7723": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"14cd6229f5e043f8862c6fe1773df4e0": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_1c6f0c68669a4c34b74fcb49cdb4aa07",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_15e1e4e3276a467c88777aae68cd693c",
|
||
"value": " 232k/232k [00:00<00:00, 1.35MB/s]"
|
||
}
|
||
},
|
||
"15e1e4e3276a467c88777aae68cd693c": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"1618f5a1981c4d18a67be3965745aa49": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"1a9b1a31f910412bb69e4cb59170fc25": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"1b81083a5e9644c08eb711693d480ed2": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_0122a517adf14859b9a594f3da1a0688",
|
||
"IPY_MODEL_518539c52ba54f1f9d59ec0dfdca132d",
|
||
"IPY_MODEL_e058a81bbdc941fd9932f5c04a9cdc23"
|
||
],
|
||
"layout": "IPY_MODEL_ac67a20654414b0ea3b36acdc6e86171"
|
||
}
|
||
},
|
||
"1bc6ff28903f4b2e9aefb6275aa047be": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_e1e04bcfd0754a3cb1ea6ac0d8ba0efa",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_409718ada73943e69bee6f73e0db5b94",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"1c10236190604ad49fa72d4d851ac316": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"1c6f0c68669a4c34b74fcb49cdb4aa07": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"1d14929d95684c05a66c958fd8a5b89d": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"1fcbba1dc2924f0489dd6cf3f6622915": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"209eb3ac83504ba3920b13e5aec28da6": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_0ca3a7dc4e804cecb8c719bfef9c055b",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_fb31d79ac3f3467d986a97bd237f26be",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"216fd635f06847c5a7daf25d543e321b": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"24a7839d950740c9958e2d88b7ad829a": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_27a54e55bff94428b7c19fc35b125047",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_ba340a739c554989849060bd29eadbc9",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"26be6fe237fd4b8c8d8fac787d72e823": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"27a54e55bff94428b7c19fc35b125047": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"28b880a5c9864a63b2d557a1ec9458a5": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"2a71821c410d4cb1afaab09574982b02": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_9aa65bb178af419bbdc15d19fa572e62",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_112a6f4e707a4accb18b649f671634cf",
|
||
"value": "Updating embeddings: "
|
||
}
|
||
},
|
||
"2c9841a834ec4e8fbae1990bc2b07a5c": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_fe18331098014a22aeb390730d35fedb",
|
||
"IPY_MODEL_b8dddaca70054b5cab955e0dab9d6d0a",
|
||
"IPY_MODEL_490edef475d646a2ba12b429c1244de4"
|
||
],
|
||
"layout": "IPY_MODEL_216fd635f06847c5a7daf25d543e321b"
|
||
}
|
||
},
|
||
"2d476cc7b1ce45ebb82f9cf5a41d4024": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"2d5ce6e282b14019ab5aece4ceb4e643": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_6445465e075f4254b18874e0f7353885",
|
||
"max": 492,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_b0b7c0653441453db63d253b839144f6",
|
||
"value": 492
|
||
}
|
||
},
|
||
"2ed78454dfa347aaa0ab9be6be341264": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"30413c25f3774ef6860be4230804e31c": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"30a569a443254abebf4cb863c80c8253": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"32325d4b51d04b47bde5794b174fbb26": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"3308704acebe439188b70c6fd238ae66": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"33143aed23264e82a7750d5fbc8e22a7": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_0f7ab0ce7ee24838a6cbffac4cdb3040",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_6e5b975419994befb261100d7719e991",
|
||
"value": " 10000/? [00:52<00:00, 189.70 Docs/s]"
|
||
}
|
||
},
|
||
"33b89e0dfe124edaa5c90ada36a4c7a8": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"37fcf93794cb46d491d55100a6d8fee8": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"3817606563914b0ca26620da959a1fc4": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"3838eb97db0f46a8828473c0e686f5df": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_02b9c7b799a846b6974eac600c0178ba",
|
||
"max": 231508,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_9cf11e92693141e6bb06462209b67b46",
|
||
"value": 231508
|
||
}
|
||
},
|
||
"394b26eab89b410db98a07cdf6609ead": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"39547579c0b443e696121427bd3279dd": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"399fa7054fc74dfea45d22ee20765b30": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"3abc298844944bcca8615925d4cf36a5": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_01781b50453c401785af24b5ea608440",
|
||
"IPY_MODEL_6476b24e759f4ae4ba594ec63190506c",
|
||
"IPY_MODEL_90755e4609454529b3246d1d5573cf26"
|
||
],
|
||
"layout": "IPY_MODEL_854d7275b81c443cb997a975164a3b99"
|
||
}
|
||
},
|
||
"3d71e9d26ebb41d980819d608ddb115a": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"3f0c353869fe42828794cd8a14acb39e": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_adbe499b09574ba6853581f3f6cc21d5",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_e7227229d21d4d7292733f373fa7f9db",
|
||
"value": " 571/571 [00:00<00:00, 19.2kB/s]"
|
||
}
|
||
},
|
||
"3fa3082333c344d1be66344a7d0ff542": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_4de5d23d236646629ee2cabf08f4621b",
|
||
"IPY_MODEL_2d5ce6e282b14019ab5aece4ceb4e643",
|
||
"IPY_MODEL_f028104b8e9548f0a7e53f1edcd63c4e"
|
||
],
|
||
"layout": "IPY_MODEL_a2905ce60084476da1c96d46a63f138d"
|
||
}
|
||
},
|
||
"3fc82442548e42e887ba9ad11dfd5d77": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"3ff47ea8d9a641cd9cfece170597dd51": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"409718ada73943e69bee6f73e0db5b94": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"41635bd3da9c4c1da50fe86a01da25bf": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"42819b5d13df44b392be19add1bdd122": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"443739aca635464ea01e08e800dd40aa": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_c87dcd38005944f2affcacb28ab8dd89",
|
||
"IPY_MODEL_f591cb897745493182b1854d3be5e546",
|
||
"IPY_MODEL_580a190f9eee4b0e8d3008e529535aa7"
|
||
],
|
||
"layout": "IPY_MODEL_484eafd3786b43219fd4103aba12c2e9"
|
||
}
|
||
},
|
||
"463ff451eab94f509f4ba6ce4e1ae1ef": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_6aa855ad681f44dabb024d4c4d34490b",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_42819b5d13df44b392be19add1bdd122",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"46802db8abd042fb90c811cd2ea4bb5b": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"484eafd3786b43219fd4103aba12c2e9": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"490edef475d646a2ba12b429c1244de4": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_d6ec9612d02c42e7bb42033d727fc03c",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_9e5b65de890b446bba6ea3c24fef8588",
|
||
"value": " 466k/466k [00:00<00:00, 1.56MB/s]"
|
||
}
|
||
},
|
||
"4bbce51f2459479f8a95064c17b73e2c": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"4cea79778d26402dad42393c2bebfe10": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"4d37fd7e90a64ff68870b86334cfad7e": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_b5c93207802346b69b7d9178b4d67b2a",
|
||
"IPY_MODEL_027441d4e1f14648919f54ba9d9a5204",
|
||
"IPY_MODEL_b27ce7d9f5e74ef895b809e519673c60"
|
||
],
|
||
"layout": "IPY_MODEL_394b26eab89b410db98a07cdf6609ead"
|
||
}
|
||
},
|
||
"4de441f28ec040e995c285b1e3fcadb9": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"4de5d23d236646629ee2cabf08f4621b": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_8f52bb4d56dc4084be52840e97b22790",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_4cea79778d26402dad42393c2bebfe10",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"4e35f1931b50406393ffce1c3b622986": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"518539c52ba54f1f9d59ec0dfdca132d": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_f1238867e4e249c1a0daa553d459e98b",
|
||
"max": 772,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_a762c482b84540beb350901ac7f0f46b",
|
||
"value": 772
|
||
}
|
||
},
|
||
"5212b2c80437450fa2a7aa49f65a23f4": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_24a7839d950740c9958e2d88b7ad829a",
|
||
"IPY_MODEL_c6d3d0bb414c4aa5ae20f006cce90f33",
|
||
"IPY_MODEL_b14faabb0d6d4d30bfa8efc097e5aa23"
|
||
],
|
||
"layout": "IPY_MODEL_a702fc844c5b40e2986c62da5fe92c9b"
|
||
}
|
||
},
|
||
"52de26e5a87e44debbcf00c0c4073dca": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"56660d608cbe451e9ec0701c1941a7ab": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"56a2181e987a4227a69038267613ffc2": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_6b97bc4ee3924dfdbe72738d137c967e",
|
||
"IPY_MODEL_c05f2ee787944a9e931f74de9831599c",
|
||
"IPY_MODEL_14cd6229f5e043f8862c6fe1773df4e0"
|
||
],
|
||
"layout": "IPY_MODEL_3308704acebe439188b70c6fd238ae66"
|
||
}
|
||
},
|
||
"56b67d80ef05478da31ef471eb7de385": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"580a190f9eee4b0e8d3008e529535aa7": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_b6c733e5327a40259700554efe576527",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_0ace7e3fad4b430c9fb09d6736ea9ac3",
|
||
"value": " 456k/456k [00:00<00:00, 1.51MB/s]"
|
||
}
|
||
},
|
||
"5b2cc531f1e44c318488c993024a94b7": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"5f4b28761f204e8eaa90f22a9e7677c7": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"5fa38582019043d084a6ecb2f2fea016": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_2a71821c410d4cb1afaab09574982b02",
|
||
"IPY_MODEL_66f26219cc6248288423c2e7ba5304c4",
|
||
"IPY_MODEL_33143aed23264e82a7750d5fbc8e22a7"
|
||
],
|
||
"layout": "IPY_MODEL_1c10236190604ad49fa72d4d851ac316"
|
||
}
|
||
},
|
||
"61e9bdf3a077438cb26f4bff9265ee4c": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"6445465e075f4254b18874e0f7353885": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"6476b24e759f4ae4ba594ec63190506c": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_c3ca769e981a4e41929246c2b22bfb7c",
|
||
"max": 79,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_9f8dbb42b20a43799c4c5590be22cb30",
|
||
"value": 79
|
||
}
|
||
},
|
||
"667c145e9bef4f5b99fffda361a2ea47": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"66f26219cc6248288423c2e7ba5304c4": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_28b880a5c9864a63b2d557a1ec9458a5",
|
||
"max": 2357,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_0cab5420cdb144e9aa3dfa907e1ed729",
|
||
"value": 2357
|
||
}
|
||
},
|
||
"671cf89ffa2741cb9c1ffb898199d49b": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"68b86c5c4be34554975a77a26ea6319b": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_983cde7e80fd4eebb0b01f444aa16579",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_ec237876a762449394f0930aa6690fcb",
|
||
"value": " 493/493 [00:00<00:00, 13.0kB/s]"
|
||
}
|
||
},
|
||
"6aa855ad681f44dabb024d4c4d34490b": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"6b97bc4ee3924dfdbe72738d137c967e": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_853a80d353144e8d9cd6ce8788c7a9bb",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_7541bd7ec86f4c028405e6e9ca6f4d06",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"6bf5fe6ae4bf494e9c33e0940da62951": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"6d34f638e428428f8463026b19172847": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"6de6dbe386d447f588c982d3501bd1c1": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"6e5b975419994befb261100d7719e991": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"715a7b7b1c8444b5abc1c779f8f78cd1": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"7389aaaf51f349c5aa745c29c08dcc66": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"7541bd7ec86f4c028405e6e9ca6f4d06": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"769ee7fdb9c549e2a8d7f0e0719477eb": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_32325d4b51d04b47bde5794b174fbb26",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_667c145e9bef4f5b99fffda361a2ea47",
|
||
"value": " 232k/232k [00:00<00:00, 1.50MB/s]"
|
||
}
|
||
},
|
||
"76e76e39d6d64438a24919e973e0053c": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"77265036d6824670b9fc258192deac11": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_39547579c0b443e696121427bd3279dd",
|
||
"max": 571,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_fc67d27eeac0448ba310e3fb991b9b5a",
|
||
"value": 571
|
||
}
|
||
},
|
||
"790f7b4b1d3d4d8e84a3693f3c8b9b85": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"7a26b17f3b9d45a4a99b8494fc5de6dd": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"7a408f3b5c644f42b88574ccffc2d7bb": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_a53314a74ba14e9ba7fc81a4aa39070d",
|
||
"max": 437983985,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_3d71e9d26ebb41d980819d608ddb115a",
|
||
"value": 437983985
|
||
}
|
||
},
|
||
"7b4fa73603264880ad4046d5791c76fa": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"7e59ccb05ef3494eb8ad400dd8f606e0": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_91e3d408502b480d818df1fdbbd88afb",
|
||
"max": 28,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_bc806490fb8148ca9525c3b685a377c2",
|
||
"value": 28
|
||
}
|
||
},
|
||
"7ea5f945a5aa4eb4adc96e9f986a0d71": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"814e632c690e4745a93fdef461fd48b6": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_1bc6ff28903f4b2e9aefb6275aa047be",
|
||
"IPY_MODEL_77265036d6824670b9fc258192deac11",
|
||
"IPY_MODEL_3f0c353869fe42828794cd8a14acb39e"
|
||
],
|
||
"layout": "IPY_MODEL_56b67d80ef05478da31ef471eb7de385"
|
||
}
|
||
},
|
||
"83dad7ffdd8747ddbb3942bb6c58445c": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"8412dd46b64444b685563081f2c3c5c2": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_84cea882fd1e431b9c93631ee3f4ed17",
|
||
"IPY_MODEL_cea38043b06d419fa63695a316233088",
|
||
"IPY_MODEL_caa201fa5bc74823bcdea73599130499"
|
||
],
|
||
"layout": "IPY_MODEL_ba67c6d2324d440abbd25de05161b381"
|
||
}
|
||
},
|
||
"84cea882fd1e431b9c93631ee3f4ed17": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_33b89e0dfe124edaa5c90ada36a4c7a8",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_f53911fd1c9c47c69e69206c3169158a",
|
||
"value": "Create embeddings: 99%"
|
||
}
|
||
},
|
||
"853a80d353144e8d9cd6ce8788c7a9bb": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"854d7275b81c443cb997a975164a3b99": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"892b9273604c4440ad179ed4a8dfc5e1": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_83dad7ffdd8747ddbb3942bb6c58445c",
|
||
"max": 898822,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_76e76e39d6d64438a24919e973e0053c",
|
||
"value": 898822
|
||
}
|
||
},
|
||
"89a23afc2b704d83927acc1835361e73": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"8dc7877695b74610a849b160008ccbab": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"8f52bb4d56dc4084be52840e97b22790": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"90755e4609454529b3246d1d5573cf26": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_30a569a443254abebf4cb863c80c8253",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_3ff47ea8d9a641cd9cfece170597dd51",
|
||
"value": " 79.0/79.0 [00:00<00:00, 2.32kB/s]"
|
||
}
|
||
},
|
||
"91e3d408502b480d818df1fdbbd88afb": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"96b976f448be47d892dc1923c51c470e": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"96f73362e4694c24acb058e1b7d69a14": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_038267d5661343deb4be8a3c6d16a221",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_d377b1dec2a84337bc1644ff51464e4d",
|
||
"value": " 899k/899k [00:00<00:00, 4.56MB/s]"
|
||
}
|
||
},
|
||
"983cde7e80fd4eebb0b01f444aa16579": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"99ae91dc416b4108b4282395f403b39a": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_5f4b28761f204e8eaa90f22a9e7677c7",
|
||
"max": 493,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_30413c25f3774ef6860be4230804e31c",
|
||
"value": 493
|
||
}
|
||
},
|
||
"9a4e9075d67b4bbaab47ff97e8ea539c": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_790f7b4b1d3d4d8e84a3693f3c8b9b85",
|
||
"max": 28,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_1618f5a1981c4d18a67be3965745aa49",
|
||
"value": 28
|
||
}
|
||
},
|
||
"9aa65bb178af419bbdc15d19fa572e62": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"9cf11e92693141e6bb06462209b67b46": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"9d36e8f0ab3e4a18b519e5dc04a51061": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_463ff451eab94f509f4ba6ce4e1ae1ef",
|
||
"IPY_MODEL_7e59ccb05ef3494eb8ad400dd8f606e0",
|
||
"IPY_MODEL_cbfecc60258e428eb51652dd36655511"
|
||
],
|
||
"layout": "IPY_MODEL_5b2cc531f1e44c318488c993024a94b7"
|
||
}
|
||
},
|
||
"9e5b65de890b446bba6ea3c24fef8588": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"9f8dbb42b20a43799c4c5590be22cb30": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"a1ce792f467c47acb4803b4c727b80a1": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"a226c1daa4454c55a03b1edf595a33ae": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"a2905ce60084476da1c96d46a63f138d": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"a2a0402f1a63407190cf2a132a0bc2b6": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"a53314a74ba14e9ba7fc81a4aa39070d": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"a702fc844c5b40e2986c62da5fe92c9b": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"a762c482b84540beb350901ac7f0f46b": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"a86a02ebcb184749bd27590067ef71bc": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"a8f5a18af7cf410bb065eefdb887cb92": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_b2249a087bd343999a5319152d7e0548",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_1a9b1a31f910412bb69e4cb59170fc25",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"aad1b320c9fd451ab081f5c238bb91c0": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_b4eb040d5e224e619414a4d4740badc5",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_e80fc1c849354ee89fa0d51f7de4c78e",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"ac67a20654414b0ea3b36acdc6e86171": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"adbe499b09574ba6853581f3f6cc21d5": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"b0b7c0653441453db63d253b839144f6": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"b14faabb0d6d4d30bfa8efc097e5aa23": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_7a26b17f3b9d45a4a99b8494fc5de6dd",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_ca54b4744f244922bc75447d707685e6",
|
||
"value": " 466k/466k [00:00<00:00, 1.34MB/s]"
|
||
}
|
||
},
|
||
"b2249a087bd343999a5319152d7e0548": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"b27ce7d9f5e74ef895b809e519673c60": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_7ea5f945a5aa4eb4adc96e9f986a0d71",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_a86a02ebcb184749bd27590067ef71bc",
|
||
"value": " 438M/438M [00:09<00:00, 48.2MB/s]"
|
||
}
|
||
},
|
||
"b4eb040d5e224e619414a4d4740badc5": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"b5c93207802346b69b7d9178b4d67b2a": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_f46b46bdc75641b6b3c8d23b939bc797",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_37fcf93794cb46d491d55100a6d8fee8",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"b5efbf17543a4db7a3b01ee0e28743c9": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"b637557712f44674abc5e5ebd32d87cf": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"b64f5d69b6dc4f57894296991279b707": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"b6c733e5327a40259700554efe576527": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"b780dea3ed6e4057a09e432a067596fb": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_c151c810fc984ff79aa85178d54c3b6a",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_96b976f448be47d892dc1923c51c470e",
|
||
"value": " 438M/438M [00:10<00:00, 41.2MB/s]"
|
||
}
|
||
},
|
||
"b7e2a9e5035544ba94bdeb3c56b19174": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"b8dddaca70054b5cab955e0dab9d6d0a": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_6bf5fe6ae4bf494e9c33e0940da62951",
|
||
"max": 466062,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_a2a0402f1a63407190cf2a132a0bc2b6",
|
||
"value": 466062
|
||
}
|
||
},
|
||
"ba340a739c554989849060bd29eadbc9": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"ba67c6d2324d440abbd25de05161b381": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"bc806490fb8148ca9525c3b685a377c2": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"c05f2ee787944a9e931f74de9831599c": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_d4e2dd1fa16b40c3bb115ecccba69a03",
|
||
"max": 231508,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_f825adffa7544868a2ae665ab6434d5d",
|
||
"value": 231508
|
||
}
|
||
},
|
||
"c151c810fc984ff79aa85178d54c3b6a": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"c3ca769e981a4e41929246c2b22bfb7c": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"c6d3d0bb414c4aa5ae20f006cce90f33": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_8dc7877695b74610a849b160008ccbab",
|
||
"max": 466062,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_56660d608cbe451e9ec0701c1941a7ab",
|
||
"value": 466062
|
||
}
|
||
},
|
||
"c7ca455474c04af18ade2d3fd906727e": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"c87dcd38005944f2affcacb28ab8dd89": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_c7ca455474c04af18ade2d3fd906727e",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_3fc82442548e42e887ba9ad11dfd5d77",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"ca54b4744f244922bc75447d707685e6": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"caa201fa5bc74823bcdea73599130499": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_4e35f1931b50406393ffce1c3b622986",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_2d476cc7b1ce45ebb82f9cf5a41d4024",
|
||
"value": " 2352/2368 [00:34<00:00, 67.47 Docs/s]"
|
||
}
|
||
},
|
||
"cbe8cc2b1394456bac529507081a2263": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"cbfecc60258e428eb51652dd36655511": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_41635bd3da9c4c1da50fe86a01da25bf",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_1fcbba1dc2924f0489dd6cf3f6622915",
|
||
"value": " 28.0/28.0 [00:00<00:00, 766B/s]"
|
||
}
|
||
},
|
||
"cddcc8af67ae4c539dec147436d4628b": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_61e9bdf3a077438cb26f4bff9265ee4c",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_671cf89ffa2741cb9c1ffb898199d49b",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"cea38043b06d419fa63695a316233088": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": "",
|
||
"description": "",
|
||
"description_tooltip": null,
|
||
"layout": "IPY_MODEL_7b4fa73603264880ad4046d5791c76fa",
|
||
"max": 2368,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_b7e2a9e5035544ba94bdeb3c56b19174",
|
||
"value": 2368
|
||
}
|
||
},
|
||
"d03e8b5ed27c4c97a8a25bdfa82a752e": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"d31dc63868a4475fbcfc7406723ad359": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"d377b1dec2a84337bc1644ff51464e4d": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"d4e2dd1fa16b40c3bb115ecccba69a03": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"d6ec9612d02c42e7bb42033d727fc03c": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"d7f2e3e918514031acf261116b690c5b": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"dc143ea6a5594b769b3a4880d83f0e1b": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_aad1b320c9fd451ab081f5c238bb91c0",
|
||
"IPY_MODEL_99ae91dc416b4108b4282395f403b39a",
|
||
"IPY_MODEL_68b86c5c4be34554975a77a26ea6319b"
|
||
],
|
||
"layout": "IPY_MODEL_b637557712f44674abc5e5ebd32d87cf"
|
||
}
|
||
},
|
||
"de371bd60c64464284f47eeef0a07bed": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"e058a81bbdc941fd9932f5c04a9cdc23": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_4bbce51f2459479f8a95064c17b73e2c",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_00aaf9b5872940b8b055dbb27caccda6",
|
||
"value": " 772/772 [00:00<00:00, 19.8kB/s]"
|
||
}
|
||
},
|
||
"e0599025f4534a89932b42945c3c1e21": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_09dd2dd5a35c4f418ea1ef010e6831d2",
|
||
"IPY_MODEL_7a408f3b5c644f42b88574ccffc2d7bb",
|
||
"IPY_MODEL_b780dea3ed6e4057a09e432a067596fb"
|
||
],
|
||
"layout": "IPY_MODEL_a1ce792f467c47acb4803b4c727b80a1"
|
||
}
|
||
},
|
||
"e1e04bcfd0754a3cb1ea6ac0d8ba0efa": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"e7227229d21d4d7292733f373fa7f9db": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"e7a21b2d87c942858f1b956f9af2b06e": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_d03e8b5ed27c4c97a8a25bdfa82a752e",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_52de26e5a87e44debbcf00c0c4073dca",
|
||
"value": " 496M/496M [00:11<00:00, 35.7MB/s]"
|
||
}
|
||
},
|
||
"e7c2e561bfdf49aa88814126e0471a58": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_f069997c1a114e46947c8a07cebc709b",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_b64f5d69b6dc4f57894296991279b707",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"e80fc1c849354ee89fa0d51f7de4c78e": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"e827efc5cd744b55b7d7d702663b8250": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_e7c2e561bfdf49aa88814126e0471a58",
|
||
"IPY_MODEL_3838eb97db0f46a8828473c0e686f5df",
|
||
"IPY_MODEL_769ee7fdb9c549e2a8d7f0e0719477eb"
|
||
],
|
||
"layout": "IPY_MODEL_d7f2e3e918514031acf261116b690c5b"
|
||
}
|
||
},
|
||
"ebd1f7d8259549b1b287cd624ff5b75d": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_26be6fe237fd4b8c8d8fac787d72e823",
|
||
"max": 496313727,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_399fa7054fc74dfea45d22ee20765b30",
|
||
"value": 496313727
|
||
}
|
||
},
|
||
"ec237876a762449394f0930aa6690fcb": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"ef99a76fdfbc48669ed4d18e118bfa42": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_a8f5a18af7cf410bb065eefdb887cb92",
|
||
"IPY_MODEL_9a4e9075d67b4bbaab47ff97e8ea539c",
|
||
"IPY_MODEL_ff4b4d0b7fc14f05971ad09a603e55d4"
|
||
],
|
||
"layout": "IPY_MODEL_4de441f28ec040e995c285b1e3fcadb9"
|
||
}
|
||
},
|
||
"f028104b8e9548f0a7e53f1edcd63c4e": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_051606acbe974583b33f5e50402c72de",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_89a23afc2b704d83927acc1835361e73",
|
||
"value": " 492/492 [00:00<00:00, 16.8kB/s]"
|
||
}
|
||
},
|
||
"f069997c1a114e46947c8a07cebc709b": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"f1238867e4e249c1a0daa553d459e98b": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"f27ffc683e714a28a0842a730e736716": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_cddcc8af67ae4c539dec147436d4628b",
|
||
"IPY_MODEL_892b9273604c4440ad179ed4a8dfc5e1",
|
||
"IPY_MODEL_96f73362e4694c24acb058e1b7d69a14"
|
||
],
|
||
"layout": "IPY_MODEL_b5efbf17543a4db7a3b01ee0e28743c9"
|
||
}
|
||
},
|
||
"f29213e62e9e4b33ac72454b6f407073": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_209eb3ac83504ba3920b13e5aec28da6",
|
||
"IPY_MODEL_ebd1f7d8259549b1b287cd624ff5b75d",
|
||
"IPY_MODEL_e7a21b2d87c942858f1b956f9af2b06e"
|
||
],
|
||
"layout": "IPY_MODEL_46802db8abd042fb90c811cd2ea4bb5b"
|
||
}
|
||
},
|
||
"f374072420b947c3a5a9f4d3849d3334": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"f46b46bdc75641b6b3c8d23b939bc797": {
|
||
"model_module": "@jupyter-widgets/base",
|
||
"model_name": "LayoutModel",
|
||
"state": {
|
||
"_model_module": "@jupyter-widgets/base",
|
||
"_model_module_version": "1.2.0",
|
||
"_model_name": "LayoutModel",
|
||
"_view_count": null,
|
||
"_view_module": "@jupyter-widgets/base",
|
||
"_view_module_version": "1.2.0",
|
||
"_view_name": "LayoutView",
|
||
"align_content": null,
|
||
"align_items": null,
|
||
"align_self": null,
|
||
"border": null,
|
||
"bottom": null,
|
||
"display": null,
|
||
"flex": null,
|
||
"flex_flow": null,
|
||
"grid_area": null,
|
||
"grid_auto_columns": null,
|
||
"grid_auto_flow": null,
|
||
"grid_auto_rows": null,
|
||
"grid_column": null,
|
||
"grid_gap": null,
|
||
"grid_row": null,
|
||
"grid_template_areas": null,
|
||
"grid_template_columns": null,
|
||
"grid_template_rows": null,
|
||
"height": null,
|
||
"justify_content": null,
|
||
"justify_items": null,
|
||
"left": null,
|
||
"margin": null,
|
||
"max_height": null,
|
||
"max_width": null,
|
||
"min_height": null,
|
||
"min_width": null,
|
||
"object_fit": null,
|
||
"object_position": null,
|
||
"order": null,
|
||
"overflow": null,
|
||
"overflow_x": null,
|
||
"overflow_y": null,
|
||
"padding": null,
|
||
"right": null,
|
||
"top": null,
|
||
"visibility": null,
|
||
"width": null
|
||
}
|
||
},
|
||
"f53911fd1c9c47c69e69206c3169158a": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"f591cb897745493182b1854d3be5e546": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_2ed78454dfa347aaa0ab9be6be341264",
|
||
"max": 456318,
|
||
"min": 0,
|
||
"orientation": "horizontal",
|
||
"style": "IPY_MODEL_d31dc63868a4475fbcfc7406723ad359",
|
||
"value": 456318
|
||
}
|
||
},
|
||
"f825adffa7544868a2ae665ab6434d5d": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"fb31d79ac3f3467d986a97bd237f26be": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"fc67d27eeac0448ba310e3fb991b9b5a": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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": ""
|
||
}
|
||
},
|
||
"fe18331098014a22aeb390730d35fedb": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_cbe8cc2b1394456bac529507081a2263",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_3817606563914b0ca26620da959a1fc4",
|
||
"value": "Downloading: 100%"
|
||
}
|
||
},
|
||
"ff4b4d0b7fc14f05971ad09a603e55d4": {
|
||
"model_module": "@jupyter-widgets/controls",
|
||
"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_6de6dbe386d447f588c982d3501bd1c1",
|
||
"placeholder": "",
|
||
"style": "IPY_MODEL_a226c1daa4454c55a03b1edf595a33ae",
|
||
"value": " 28.0/28.0 [00:00<00:00, 746B/s]"
|
||
}
|
||
}
|
||
}
|
||
},
|
||
"interpreter": {
|
||
"hash": "01829e1eb67c4f5275a41f9336c92adbb77a108c8fc957dfe99d03e96dd1f349"
|
||
}
|
||
},
|
||
"nbformat": 4,
|
||
"nbformat_minor": 1
|
||
} |