Files
pdf-extraction-agenda/repack_olmOCR_mix_0225.ipynb
2025-03-10 18:23:51 +03:00

1711 lines
59 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/github/dantetemplar/pdf-extraction-agenda/blob/main/repack_olmOCR_mix_0225.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"source": [
"### This script extract eval from [olmOCR dataset](https://huggingface.co/datasets/allenai/olmOCR-mix-0225) and repack it to reduce download time"
],
"metadata": {
"id": "74Lyc5fiLRie"
}
},
{
"cell_type": "code",
"source": [
"!pip install -q datasets huggingface-hub[hf-transfer]"
],
"metadata": {
"id": "rTSLld0eIBSQ",
"collapsed": true
},
"execution_count": 7,
"outputs": []
},
{
"cell_type": "code",
"source": [
"import json\n",
"import os\n",
"\n",
"from datasets import load_dataset\n",
"from huggingface_hub import snapshot_download\n",
"\n",
"\n",
"def download_files():\n",
" os.environ[\"HF_HUB_ENABLE_HF_TRANSFER\"] = \"1\"\n",
" path_to_snaphot = snapshot_download(repo_id=\"allenai/olmOCR-mix-0225\", repo_type=\"dataset\", allow_patterns=[\"*.tar.gz\"])\n",
" return path_to_snaphot"
],
"metadata": {
"id": "9i21u_7QRVB_"
},
"execution_count": 8,
"outputs": []
},
{
"cell_type": "code",
"source": [
"dataset = load_dataset(\"allenai/olmOCR-mix-0225\", \"00_documents\", split=\"eval_s2pdf\")"
],
"metadata": {
"id": "KsMlhISsRZA1"
},
"execution_count": 9,
"outputs": []
},
{
"cell_type": "code",
"source": [
"path_to_snaphot = download_files()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 49,
"referenced_widgets": [
"c0862d5ded6e4c2d9b07a1d450c46dd5",
"4fc45801eaed4dd1bf3f629ff111c8d3",
"8ffa244f284842f5bde7f969e4c94db6",
"b1b6fc2f58d2482a96385d3129d0dfb4",
"51b7af7dbdf045d0a61ed2b46acfc884",
"2f9d1ebdd6ee4bebad7a218583d11d65",
"b107206c8df1496d80e1fd9edc8a0951",
"8bbbe8196ad8494b8ff79522b6d06e32",
"f0f8adc6d4ee4d27831ee0c44e34f343",
"7e7d255b21914ba0b1284ec70212c55a",
"7d92e78f7aa84de18ba01931ee2963df"
]
},
"id": "Zub4qMHqReHr",
"outputId": "23354ab7-ce7a-47ca-f646-e47717bb9346",
"collapsed": true
},
"execution_count": 10,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"Fetching 52 files: 0%| | 0/52 [00:00<?, ?it/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "c0862d5ded6e4c2d9b07a1d450c46dd5"
}
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [
"import tarfile\n",
"\n",
"from collections import Counter\n",
"from tqdm import tqdm\n",
"\n",
"ids = dataset.select_columns([\"id\"]).to_list()\n",
"id_set = {id_dict[\"id\"] + \".pdf\" for id_dict in ids}\n",
"pdf_tarballs_dir = f\"{path_to_snaphot}/pdf_tarballs\"\n",
"tar_files = [os.path.join(pdf_tarballs_dir, f) for f in os.listdir(pdf_tarballs_dir) if f.endswith(\".tar.gz\")]\n",
"\n",
"counter = Counter()\n",
"extracted_files = {}\n",
"temp_extract_dir = \"temp_extracted\"\n",
"\n",
"os.makedirs(temp_extract_dir, exist_ok=True)\n",
"\n",
"for tarball_path in tqdm(tar_files):\n",
" with tarfile.open(tarball_path, \"r:gz\") as tar:\n",
" for member in tar.getmembers():\n",
" if member.name in id_set: # Only extract relevant PDFs\n",
" tar.extract(member, path=temp_extract_dir)\n",
" extracted_files[member.name] = os.path.join(temp_extract_dir, member.name)\n",
" counter[tarball_path] += 1\n",
"\n",
"print(f\"Extracted {len(extracted_files)} PDFs.\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "blH_w2dWeq1O",
"outputId": "183b01ea-6bc9-4631-d56b-1c9ef662d416"
},
"execution_count": 12,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"100%|██████████| 52/52 [13:32<00:00, 15.62s/it]"
]
},
{
"output_type": "stream",
"name": "stdout",
"text": [
"Extracted 1166 PDFs.\n"
]
},
{
"output_type": "stream",
"name": "stderr",
"text": [
"\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"assert all([extracted_files.get(id_) for id_ in id_set]), \"All files should be extracted\"\n",
"print(f\"Relevant pdfs was distributed into {len(counter)} tarballs originally\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "BSembq8pckZQ",
"outputId": "83c42461-91e7-44c2-e8ff-a71325e71714"
},
"execution_count": 13,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Relevant pdfs was distributed into 49 tarballs originally\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"target_chunk_size = 1 * 1024**3 # 1GB in bytes\n",
"chunks = []\n",
"current_chunk = []\n",
"current_size = 0\n",
"total_size = 0\n",
"\n",
"for pdf_name, pdf_path in extracted_files.items():\n",
" file_size = os.path.getsize(pdf_path)\n",
" if current_size + file_size > target_chunk_size and current_chunk:\n",
" chunks.append(current_chunk)\n",
" current_chunk = []\n",
" current_size = 0\n",
"\n",
" current_chunk.append((pdf_name, pdf_path))\n",
" current_size += file_size\n",
" total_size += file_size\n",
"\n",
"if current_chunk:\n",
" chunks.append(current_chunk)\n",
"print(f\"Will be {len(chunks)} chunks. Total {total_size / (1 * 1024 ** 3):.2f} GB\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "wuE5RSJMfmfD",
"outputId": "2896e7a4-aa74-43a6-afb8-dfe55bb169c5"
},
"execution_count": 14,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Will be 1 chunks. Total 0.20 GB\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"output_dir = \"new_tarballs\"\n",
"os.makedirs(output_dir, exist_ok=True)\n",
"new_tarballs = []\n",
"\n",
"for i, chunk in enumerate(chunks):\n",
" tarball_path = os.path.join(output_dir, f\"pdf_chunk_{i:04d}.tar.gz\")\n",
" with tarfile.open(tarball_path, \"w:gz\") as tar:\n",
" for pdf_name, pdf_path in chunk:\n",
" tar.add(pdf_path, arcname=pdf_name)\n",
" new_tarballs.append(tarball_path)\n",
"\n",
"print(\"Tarballs packed, ready for upload.\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "NTYtwlcCf0iB",
"outputId": "3116d454-b0db-435a-9be3-5a128e523734"
},
"execution_count": 15,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Tarballs packed, ready for upload.\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"from huggingface_hub import notebook_login\n",
"\n",
"notebook_login()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 17,
"referenced_widgets": [
"93a4749b2bd54021a2dbb18c28cbff48",
"eaead5bd922c421bb79391c7e2e2dc90",
"5d0ba8d9ba604e9ba37dc2eeb4817ffe",
"95092a731d3244e88e5c9e7c0f4c958a",
"d92fc935782d4372a740c52b2ec05c7f",
"64aaa1da09b742a3817012e438772bb1",
"f75f78a5b87043b6bcd00a46fe07ba5c",
"25706dadf23b49388c94c7a04bffd706",
"919ee23b172d46d882e170a3616867ab",
"87ddac609f2a43bba84be29a9501ec87",
"9d1d1cd0e1094fc5af33510352866ecd",
"9e6a81c9c8f346b9a50713d54ba1b5d1",
"33c4a24a0e5340cd831e3838b7fbfa7b",
"eed80e942e7347209e01d025d42f92ec",
"e55d97206384431fae4aacc615cba6e5",
"c633e5fdf31646eea2aaff96d103782c",
"1e1964c8652e487aa61dfba916a84c34",
"3fbb728270a148a3905fe0169d589c90",
"f9d8c0e3af354477be47c65e6f32c7f3",
"f200dce75853458c941c40607775d1c5"
]
},
"id": "Pr2DA_0XnAZZ",
"outputId": "d777a21b-6203-4582-86dd-6f3dbc32b437"
},
"execution_count": 16,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"VBox(children=(HTML(value='<center> <img\\nsrc=https://huggingface.co/front/assets/huggingface_logo-noborder.sv…"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "93a4749b2bd54021a2dbb18c28cbff48"
}
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [
"from huggingface_hub import HfApi\n",
"import shutil\n",
"\n",
"api = HfApi()\n",
"repo_id = \"dantetemplar/pdf-extraction-agenda\"\n",
"\n",
"for tarball in new_tarballs:\n",
" api.upload_file(\n",
" path_or_fileobj=tarball,\n",
" path_in_repo=f\"data/olmOCR-mix-0225/{os.path.basename(tarball)}\",\n",
" repo_id=repo_id,\n",
" repo_type=\"dataset\"\n",
" )\n",
"\n",
"shutil.rmtree(temp_extract_dir)\n",
"print(\"Uploaded all new tarballs to Hugging Face!\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 66,
"referenced_widgets": [
"f36009c54dbe46e48db86f3caf66d11c",
"d6a337c143c14521a54251ccab270980",
"3265695c437045bf8a82aab88f8d8615",
"ae562a2c8da4414ca6b0b784684e126f",
"ff41fcbcefb64a9582d829e8ab57bca2",
"e5b38b885e924c39930cd16f5d1b55fd",
"63f75611de9d4419be4abccff7c52196",
"1ba396eb58c64fc59a7d8c037bc3b9d9",
"0788b973a35b484bbce266c56c240480",
"ce13208dc99a42caaadf7bfda7027d8a",
"760283383a31474ea0adf7173fba0fcd"
]
},
"id": "nUpvx98sgOPC",
"outputId": "d779a0f2-e1bd-4e03-f126-a8d6c9e45423"
},
"execution_count": 18,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"pdf_chunk_0000.tar.gz: 0%| | 0.00/200M [00:00<?, ?B/s]"
],
"application/vnd.jupyter.widget-view+json": {
"version_major": 2,
"version_minor": 0,
"model_id": "f36009c54dbe46e48db86f3caf66d11c"
}
},
"metadata": {}
},
{
"output_type": "stream",
"name": "stdout",
"text": [
"Uploaded all new tarballs to Hugging Face!\n"
]
}
]
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "LFMOwLVxpzEv"
},
"execution_count": null,
"outputs": []
}
],
"metadata": {
"colab": {
"gpuType": "T4",
"provenance": [],
"authorship_tag": "ABX9TyOlcDSLMqc5q1z5kFtgDk6K",
"include_colab_link": true
},
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
},
"language_info": {
"name": "python"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"c0862d5ded6e4c2d9b07a1d450c46dd5": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HBoxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_4fc45801eaed4dd1bf3f629ff111c8d3",
"IPY_MODEL_8ffa244f284842f5bde7f969e4c94db6",
"IPY_MODEL_b1b6fc2f58d2482a96385d3129d0dfb4"
],
"layout": "IPY_MODEL_51b7af7dbdf045d0a61ed2b46acfc884"
}
},
"4fc45801eaed4dd1bf3f629ff111c8d3": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_2f9d1ebdd6ee4bebad7a218583d11d65",
"placeholder": "",
"style": "IPY_MODEL_b107206c8df1496d80e1fd9edc8a0951",
"value": "Fetching52files:100%"
}
},
"8ffa244f284842f5bde7f969e4c94db6": {
"model_module": "@jupyter-widgets/controls",
"model_name": "FloatProgressModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_8bbbe8196ad8494b8ff79522b6d06e32",
"max": 52,
"min": 0,
"orientation": "horizontal",
"style": "IPY_MODEL_f0f8adc6d4ee4d27831ee0c44e34f343",
"value": 52
}
},
"b1b6fc2f58d2482a96385d3129d0dfb4": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_7e7d255b21914ba0b1284ec70212c55a",
"placeholder": "",
"style": "IPY_MODEL_7d92e78f7aa84de18ba01931ee2963df",
"value": "52/52[00:00&lt;00:00,1845.74it/s]"
}
},
"51b7af7dbdf045d0a61ed2b46acfc884": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2f9d1ebdd6ee4bebad7a218583d11d65": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b107206c8df1496d80e1fd9edc8a0951": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"8bbbe8196ad8494b8ff79522b6d06e32": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f0f8adc6d4ee4d27831ee0c44e34f343": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ProgressStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"7e7d255b21914ba0b1284ec70212c55a": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7d92e78f7aa84de18ba01931ee2963df": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"93a4749b2bd54021a2dbb18c28cbff48": {
"model_module": "@jupyter-widgets/controls",
"model_name": "VBoxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "VBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "VBoxView",
"box_style": "",
"children": [],
"layout": "IPY_MODEL_f75f78a5b87043b6bcd00a46fe07ba5c"
}
},
"eaead5bd922c421bb79391c7e2e2dc90": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_25706dadf23b49388c94c7a04bffd706",
"placeholder": "",
"style": "IPY_MODEL_919ee23b172d46d882e170a3616867ab",
"value": "<center> <img\nsrc=https://huggingface.co/front/assets/huggingface_logo-noborder.svg\nalt='Hugging Face'> <br> Copy a token from <a\nhref=\"https://huggingface.co/settings/tokens\" target=\"_blank\">your Hugging Face\ntokens page</a> and paste it below. <br> Immediately click login after copying\nyour token or it might be stored in plain text in this notebook file. </center>"
}
},
"5d0ba8d9ba604e9ba37dc2eeb4817ffe": {
"model_module": "@jupyter-widgets/controls",
"model_name": "PasswordModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "PasswordModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "PasswordView",
"continuous_update": true,
"description": "Token:",
"description_tooltip": null,
"disabled": false,
"layout": "IPY_MODEL_87ddac609f2a43bba84be29a9501ec87",
"placeholder": "",
"style": "IPY_MODEL_9d1d1cd0e1094fc5af33510352866ecd",
"value": ""
}
},
"95092a731d3244e88e5c9e7c0f4c958a": {
"model_module": "@jupyter-widgets/controls",
"model_name": "CheckboxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "CheckboxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "CheckboxView",
"description": "Add token as git credential?",
"description_tooltip": null,
"disabled": false,
"indent": true,
"layout": "IPY_MODEL_9e6a81c9c8f346b9a50713d54ba1b5d1",
"style": "IPY_MODEL_33c4a24a0e5340cd831e3838b7fbfa7b",
"value": true
}
},
"d92fc935782d4372a740c52b2ec05c7f": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ButtonModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ButtonModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ButtonView",
"button_style": "",
"description": "Login",
"disabled": false,
"icon": "",
"layout": "IPY_MODEL_eed80e942e7347209e01d025d42f92ec",
"style": "IPY_MODEL_e55d97206384431fae4aacc615cba6e5",
"tooltip": ""
}
},
"64aaa1da09b742a3817012e438772bb1": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_c633e5fdf31646eea2aaff96d103782c",
"placeholder": "",
"style": "IPY_MODEL_1e1964c8652e487aa61dfba916a84c34",
"value": "\n<b>Pro Tip:</b> If you don't already have one, you can create a dedicated\n'notebooks' token with 'write' access, that you can then easily reuse for all\nnotebooks. </center>"
}
},
"f75f78a5b87043b6bcd00a46fe07ba5c": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": "center",
"align_self": null,
"border": null,
"bottom": null,
"display": "flex",
"flex": null,
"flex_flow": "column",
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": "50%"
}
},
"25706dadf23b49388c94c7a04bffd706": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"919ee23b172d46d882e170a3616867ab": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"87ddac609f2a43bba84be29a9501ec87": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9d1d1cd0e1094fc5af33510352866ecd": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"9e6a81c9c8f346b9a50713d54ba1b5d1": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"33c4a24a0e5340cd831e3838b7fbfa7b": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"eed80e942e7347209e01d025d42f92ec": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e55d97206384431fae4aacc615cba6e5": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ButtonStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ButtonStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"button_color": null,
"font_weight": ""
}
},
"c633e5fdf31646eea2aaff96d103782c": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1e1964c8652e487aa61dfba916a84c34": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"3fbb728270a148a3905fe0169d589c90": {
"model_module": "@jupyter-widgets/controls",
"model_name": "LabelModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "LabelModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "LabelView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_f9d8c0e3af354477be47c65e6f32c7f3",
"placeholder": "",
"style": "IPY_MODEL_f200dce75853458c941c40607775d1c5",
"value": "Connecting..."
}
},
"f9d8c0e3af354477be47c65e6f32c7f3": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f200dce75853458c941c40607775d1c5": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"f36009c54dbe46e48db86f3caf66d11c": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HBoxModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HBoxModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HBoxView",
"box_style": "",
"children": [
"IPY_MODEL_d6a337c143c14521a54251ccab270980",
"IPY_MODEL_3265695c437045bf8a82aab88f8d8615",
"IPY_MODEL_ae562a2c8da4414ca6b0b784684e126f"
],
"layout": "IPY_MODEL_ff41fcbcefb64a9582d829e8ab57bca2"
}
},
"d6a337c143c14521a54251ccab270980": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_e5b38b885e924c39930cd16f5d1b55fd",
"placeholder": "",
"style": "IPY_MODEL_63f75611de9d4419be4abccff7c52196",
"value": "pdf_chunk_0000.tar.gz:100%"
}
},
"3265695c437045bf8a82aab88f8d8615": {
"model_module": "@jupyter-widgets/controls",
"model_name": "FloatProgressModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "FloatProgressModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "ProgressView",
"bar_style": "success",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_1ba396eb58c64fc59a7d8c037bc3b9d9",
"max": 200009196,
"min": 0,
"orientation": "horizontal",
"style": "IPY_MODEL_0788b973a35b484bbce266c56c240480",
"value": 200009196
}
},
"ae562a2c8da4414ca6b0b784684e126f": {
"model_module": "@jupyter-widgets/controls",
"model_name": "HTMLModel",
"model_module_version": "1.5.0",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "HTMLModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "1.5.0",
"_view_name": "HTMLView",
"description": "",
"description_tooltip": null,
"layout": "IPY_MODEL_ce13208dc99a42caaadf7bfda7027d8a",
"placeholder": "",
"style": "IPY_MODEL_760283383a31474ea0adf7173fba0fcd",
"value": "200M/200M[00:08&lt;00:00,29.9MB/s]"
}
},
"ff41fcbcefb64a9582d829e8ab57bca2": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e5b38b885e924c39930cd16f5d1b55fd": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"63f75611de9d4419be4abccff7c52196": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
},
"1ba396eb58c64fc59a7d8c037bc3b9d9": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0788b973a35b484bbce266c56c240480": {
"model_module": "@jupyter-widgets/controls",
"model_name": "ProgressStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "ProgressStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"bar_color": null,
"description_width": ""
}
},
"ce13208dc99a42caaadf7bfda7027d8a": {
"model_module": "@jupyter-widgets/base",
"model_name": "LayoutModel",
"model_module_version": "1.2.0",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "1.2.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"overflow_x": null,
"overflow_y": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"760283383a31474ea0adf7173fba0fcd": {
"model_module": "@jupyter-widgets/controls",
"model_name": "DescriptionStyleModel",
"model_module_version": "1.5.0",
"state": {
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "1.5.0",
"_model_name": "DescriptionStyleModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "1.2.0",
"_view_name": "StyleView",
"description_width": ""
}
}
}
}
},
"nbformat": 4,
"nbformat_minor": 0
}