Last active
August 22, 2024 07:53
-
-
Save Gijs-Koot/23ab98785ef04c4a79ab1e01779606cb to your computer and use it in GitHub Desktop.
computer vision starter notebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "PaSeWCj7FxNn" | |
}, | |
"source": [ | |
"# Computer vision starter notebook\n", | |
"\n", | |
"Examples of running a pretrained CV model from HuggingFace" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"from PIL import Image\n", | |
"from io import BytesIO\n", | |
"import requests\n", | |
"\n", | |
"img_dog = Image.open(BytesIO(requests.get(\"https://farm3.staticflickr.com/2633/3938105788_410f0def89_z.jpg\").content))\n", | |
"img_dog" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"id": "mUjnv-9jOlhn" | |
}, | |
"outputs": [], | |
"source": [ | |
"# use pretrained yolo8 model\n", | |
"\n", | |
"from ultralytics import YOLO\n", | |
"\n", | |
"model = YOLO('yolov8n.pt')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "WxSpVLt6PDph", | |
"outputId": "bb306a65-9ec1-466f-8ef5-6883535dbfdb", | |
"scrolled": true | |
}, | |
"outputs": [], | |
"source": [ | |
"# inference\n", | |
"\n", | |
"results = model([img_dog], conf=.2)\n", | |
"\n", | |
"# draw boxes on copy of the image\n", | |
"\n", | |
"from PIL import ImageDraw\n", | |
"\n", | |
"res_img_dog = img_dog.copy()\n", | |
"draw = ImageDraw.Draw(res_img_dog)\n", | |
"\n", | |
"# Iterate over the results and draw bounding boxes\n", | |
"for result in results:\n", | |
" for box in result.boxes:\n", | |
" # Get the bounding box coordinates\n", | |
" x1, y1, x2, y2 = box.xyxy[0].tolist()\n", | |
" \n", | |
" # Draw the bounding box on the image\n", | |
" draw.rectangle([x1, y1, x2, y2], outline=\"red\", width=2)\n", | |
" \n", | |
" # Optionally, you can add labels or other information\n", | |
" draw.text((x1, y1), result.names[int(box.cls)], fill=\"red\")\n", | |
"\n", | |
"res_img_dog" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"# Aerial image from WMS service\n", | |
"\n", | |
"ulx, uly = 168130, 452830\n", | |
"\n", | |
"url = \"https://service.pdok.nl/hwh/luchtfotorgb/wms/v1_0?\"\n", | |
"params = f\"service=wms&request=GetMap&layers=Actueel_orthoHR&format=image/png&bbox={ulx},{uly},{ulx + 100},{uly + 100}&&width=1000&height=1000&crs=EPSG:28992&version=1_0\"\n", | |
"url + params" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"response = requests.get(url + params)\n", | |
"aerial_img = Image.open(BytesIO(response.content))\n", | |
"\n", | |
"aerial_img" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"# obtain model from https://huggingface.co/finloop/yolov8s-seg-solar-panels\n", | |
"\n", | |
"!wget \"https://huggingface.co/finloop/yolov8s-seg-solar-panels/resolve/main/best.pt?download=true\" -O solar.pt\n", | |
"!ls" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"solar_panel_model = YOLO('solar.pt')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"\n", | |
"\n", | |
"# draw boxes on copy of the image\n", | |
"\n", | |
"from PIL import ImageDraw\n", | |
"\n", | |
"res_aerial_img = aerial_img.resize((1000, 1000))\n", | |
"results = solar_panel_model([res_aerial_img], conf=.01)\n", | |
"draw = ImageDraw.Draw(res_aerial_img)\n", | |
"\n", | |
"# Iterate over the results and draw bounding boxes\n", | |
"for result in results:\n", | |
" for box in result.boxes:\n", | |
" # Get the bounding box coordinates\n", | |
" x1, y1, x2, y2 = box.xyxy[0].tolist()\n", | |
" \n", | |
" # Draw the bounding box on the image\n", | |
" draw.rectangle([x1, y1, x2, y2], outline=\"red\", width=2)\n", | |
" \n", | |
" # Optionally, you can add labels or other information\n", | |
" draw.text((x1, y1), result.names[int(box.cls)], fill=\"red\")\n", | |
"\n", | |
"res_aerial_img" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 400, | |
"referenced_widgets": [ | |
"398a518909af4a719c2b843194eddba3", | |
"9e89fd13b97443aaa2be446547665fa8", | |
"06db0c3614e34bd6a4141ef767823e7a", | |
"b17db0cec74748c396c53360376cf1b0", | |
"45aae7eacbb54f2bbee4cf6898f841a3", | |
"4349f782aa9e45edad4bc3f2d045c39f", | |
"eb95b823ae694b729962f2b01d2ec9ea", | |
"062a415f0de74fc79c3d1f67dc0a4f64", | |
"6c185dcebbba4565a519b4fd90f51043", | |
"5b72386a7903475b8ec990097b3239a9", | |
"d3f01801f3b24d569fd9f2c12d7b851d", | |
"7b806a968a0448d2916fcc03c3b81381", | |
"6ba77f9af7614500ae25d1c5954757c7", | |
"3fe81dfb01324b1988dadcfc7d3a38b2", | |
"759b6d883d10443884f378054b8b10dc", | |
"b06885edf5534826844894aed3354991", | |
"14c77e2eab614ba285a5accebe2808ec", | |
"da0f3f0234574d1e82959f7a277fc2f8", | |
"d632e9a116da4d1db93cde93807dde4b", | |
"ea9ad4c765e14078bcc7d3b34db47f40", | |
"1c32be3e2b2a45f7ae31d77fc29414c8", | |
"a0f8529e7fac43fba76b95dff178a14a", | |
"a6f7b8b849c34a9ebab22e0d876acec9", | |
"7931601735c44f78ab6e86607452f0c5", | |
"6e05fc7d2e174d81bb9070f2638b4d25", | |
"7579e22806c649fda3bb8557590074aa", | |
"5e27e0f928be4c0eb993e71f52fc72a4", | |
"78cdd20cbb09464d943b2dac67df9e89", | |
"7747dfb4c7884de0aef3228825d29b39", | |
"0e407f8a543942f2aeef9e3908b9f694", | |
"a842f18cf94545f497330da0c3dbfdbf", | |
"4eef0b2659134b69b7bf74c36f7fb4eb", | |
"d36a89fb0eba419eb05de9a9f87e68c1", | |
"459c1a7dbf284faaae609a39621fd69d", | |
"3076dd62b256437aa7a48e73f9edfc53", | |
"ec72193c7b844887b3c2684fe5072827", | |
"7296928c5c2f46c29549667ff6acf425", | |
"53aaca798dab4b6199a301a6fa8a59a3", | |
"d35b3fb0c5b644fa943c43081cc89e70", | |
"7723c6559816436fa8130686cd86860a", | |
"c463434d06d34acaad4c55e867c61e97", | |
"89aad17ed4a64aca8ef9416dafee41b3", | |
"05ca0535fbcd4bba8e18bbafc9372597", | |
"cde4f420fbf342d9944d50845518ae1c", | |
"10fb2d05680041c289d672c5f20db9b4", | |
"b09b0fc657f348df8eb45b4c2d79691c", | |
"8449011a95994a37970bb807ff539b6c", | |
"1860b06b5a264eb6a23cbf1d5a1ea027", | |
"9c3e4341492f4fe38cef908aff567083", | |
"81e69a00a3d544c4b9cb94f43c089b16", | |
"19c424e87bc7434d99362e027e7b6a7c", | |
"98c5a2b4f6b5424b8717b6b89ced4d67", | |
"ec478780e5cb445c8e5f68f62213a265", | |
"1cf606ffb50d42aa91b6ebd5b52ec8cb", | |
"b6eccbcefc84470e911a9994f8c349a6", | |
"0f06715a09f24e268f0a2339f544f60c", | |
"ec0dc55c95d742e4bb16276e1d70f98f", | |
"c163e3594d4e4b35afa8dd3b973dce6c", | |
"bb675798c0624c9b949141665954b1bc", | |
"694a9a3a9d7749b189d64bb992ad2b22", | |
"b0f03c4e246e40d9b7c73cc8b106fa03", | |
"c464c781b2ad43a7a034d374bffd3bf3", | |
"13dbd68cae9e45b18059d54149c2a852", | |
"abb6336ce6b14a76b006dd692ecc409d", | |
"a165256119fe46a18f4e32253ef38106", | |
"ded2ca2bf4f441fabfe7cc7a7fa80e92", | |
"28dd6b63820249148363c42fba7f02a9", | |
"6a24787a5aaf4383bf6c2adb2663f7b8", | |
"c07e3db98f234918abad840cedf9d5d5", | |
"c410a98169ef4f1c8c6cb11a869e1aa5", | |
"67412722a78146d1bc83560713a4e79a", | |
"62763f6c5426435c846f65c926f8067f", | |
"83cc85d3494743e0bb499fd7998005ad", | |
"97c1419b0cc444c8951c2ad4e891b9b0", | |
"ed0d94f31522455cae50e21cacbd69bd", | |
"ba1b5fb4b12948fea521e244096acd8b", | |
"7f65a4e7cf0e4d9c8c9180a9904ca5fe", | |
"3c03d8001f534aaeb5869c98f52e7d5d", | |
"d6412397c31145ec9bb5e72b8585bcd2", | |
"599023bad56e468383e82240136882f4", | |
"d65cc12c4c334bf9ade9ae8c678d2304", | |
"e03959ef7f2f4ac29c7fce2c077d1166", | |
"37619597cd5f4de7b69a99ee004eede8", | |
"9a4baa2c17c44326860ce48b7c71223a", | |
"2ee235ad7f3e4e4ea7eb8e30f06fd62b", | |
"fe0ab24b0edb4053b99eae582958b9c2", | |
"0303b13ea17f430daca9f3954e30d534", | |
"f6b69171c09849c3907012150baafff6" | |
] | |
}, | |
"id": "lZ_KLB9CPdtp", | |
"outputId": "a9118e2b-3f8e-471f-efc6-da36bee0b93e" | |
}, | |
"source": [ | |
"# 4. Zero-shot object detection model" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 400, | |
"referenced_widgets": [ | |
"398a518909af4a719c2b843194eddba3", | |
"9e89fd13b97443aaa2be446547665fa8", | |
"06db0c3614e34bd6a4141ef767823e7a", | |
"b17db0cec74748c396c53360376cf1b0", | |
"45aae7eacbb54f2bbee4cf6898f841a3", | |
"4349f782aa9e45edad4bc3f2d045c39f", | |
"eb95b823ae694b729962f2b01d2ec9ea", | |
"062a415f0de74fc79c3d1f67dc0a4f64", | |
"6c185dcebbba4565a519b4fd90f51043", | |
"5b72386a7903475b8ec990097b3239a9", | |
"d3f01801f3b24d569fd9f2c12d7b851d", | |
"7b806a968a0448d2916fcc03c3b81381", | |
"6ba77f9af7614500ae25d1c5954757c7", | |
"3fe81dfb01324b1988dadcfc7d3a38b2", | |
"759b6d883d10443884f378054b8b10dc", | |
"b06885edf5534826844894aed3354991", | |
"14c77e2eab614ba285a5accebe2808ec", | |
"da0f3f0234574d1e82959f7a277fc2f8", | |
"d632e9a116da4d1db93cde93807dde4b", | |
"ea9ad4c765e14078bcc7d3b34db47f40", | |
"1c32be3e2b2a45f7ae31d77fc29414c8", | |
"a0f8529e7fac43fba76b95dff178a14a", | |
"a6f7b8b849c34a9ebab22e0d876acec9", | |
"7931601735c44f78ab6e86607452f0c5", | |
"6e05fc7d2e174d81bb9070f2638b4d25", | |
"7579e22806c649fda3bb8557590074aa", | |
"5e27e0f928be4c0eb993e71f52fc72a4", | |
"78cdd20cbb09464d943b2dac67df9e89", | |
"7747dfb4c7884de0aef3228825d29b39", | |
"0e407f8a543942f2aeef9e3908b9f694", | |
"a842f18cf94545f497330da0c3dbfdbf", | |
"4eef0b2659134b69b7bf74c36f7fb4eb", | |
"d36a89fb0eba419eb05de9a9f87e68c1", | |
"459c1a7dbf284faaae609a39621fd69d", | |
"3076dd62b256437aa7a48e73f9edfc53", | |
"ec72193c7b844887b3c2684fe5072827", | |
"7296928c5c2f46c29549667ff6acf425", | |
"53aaca798dab4b6199a301a6fa8a59a3", | |
"d35b3fb0c5b644fa943c43081cc89e70", | |
"7723c6559816436fa8130686cd86860a", | |
"c463434d06d34acaad4c55e867c61e97", | |
"89aad17ed4a64aca8ef9416dafee41b3", | |
"05ca0535fbcd4bba8e18bbafc9372597", | |
"cde4f420fbf342d9944d50845518ae1c", | |
"10fb2d05680041c289d672c5f20db9b4", | |
"b09b0fc657f348df8eb45b4c2d79691c", | |
"8449011a95994a37970bb807ff539b6c", | |
"1860b06b5a264eb6a23cbf1d5a1ea027", | |
"9c3e4341492f4fe38cef908aff567083", | |
"81e69a00a3d544c4b9cb94f43c089b16", | |
"19c424e87bc7434d99362e027e7b6a7c", | |
"98c5a2b4f6b5424b8717b6b89ced4d67", | |
"ec478780e5cb445c8e5f68f62213a265", | |
"1cf606ffb50d42aa91b6ebd5b52ec8cb", | |
"b6eccbcefc84470e911a9994f8c349a6", | |
"0f06715a09f24e268f0a2339f544f60c", | |
"ec0dc55c95d742e4bb16276e1d70f98f", | |
"c163e3594d4e4b35afa8dd3b973dce6c", | |
"bb675798c0624c9b949141665954b1bc", | |
"694a9a3a9d7749b189d64bb992ad2b22", | |
"b0f03c4e246e40d9b7c73cc8b106fa03", | |
"c464c781b2ad43a7a034d374bffd3bf3", | |
"13dbd68cae9e45b18059d54149c2a852", | |
"abb6336ce6b14a76b006dd692ecc409d", | |
"a165256119fe46a18f4e32253ef38106", | |
"ded2ca2bf4f441fabfe7cc7a7fa80e92", | |
"28dd6b63820249148363c42fba7f02a9", | |
"6a24787a5aaf4383bf6c2adb2663f7b8", | |
"c07e3db98f234918abad840cedf9d5d5", | |
"c410a98169ef4f1c8c6cb11a869e1aa5", | |
"67412722a78146d1bc83560713a4e79a", | |
"62763f6c5426435c846f65c926f8067f", | |
"83cc85d3494743e0bb499fd7998005ad", | |
"97c1419b0cc444c8951c2ad4e891b9b0", | |
"ed0d94f31522455cae50e21cacbd69bd", | |
"ba1b5fb4b12948fea521e244096acd8b", | |
"7f65a4e7cf0e4d9c8c9180a9904ca5fe", | |
"3c03d8001f534aaeb5869c98f52e7d5d", | |
"d6412397c31145ec9bb5e72b8585bcd2", | |
"599023bad56e468383e82240136882f4", | |
"d65cc12c4c334bf9ade9ae8c678d2304", | |
"e03959ef7f2f4ac29c7fce2c077d1166", | |
"37619597cd5f4de7b69a99ee004eede8", | |
"9a4baa2c17c44326860ce48b7c71223a", | |
"2ee235ad7f3e4e4ea7eb8e30f06fd62b", | |
"fe0ab24b0edb4053b99eae582958b9c2", | |
"0303b13ea17f430daca9f3954e30d534", | |
"f6b69171c09849c3907012150baafff6" | |
] | |
}, | |
"id": "lZ_KLB9CPdtp", | |
"outputId": "a9118e2b-3f8e-471f-efc6-da36bee0b93e" | |
}, | |
"outputs": [], | |
"source": [ | |
"import requests\n", | |
"\n", | |
"import torch\n", | |
"from PIL import Image\n", | |
"from transformers import AutoProcessor, AutoModelForZeroShotObjectDetection\n", | |
"\n", | |
"model_id = \"IDEA-Research/grounding-dino-tiny\"\n", | |
"device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n", | |
"\n", | |
"processor = AutoProcessor.from_pretrained(model_id)\n", | |
"model = AutoModelForZeroShotObjectDetection.from_pretrained(model_id).to(device)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 400, | |
"referenced_widgets": [ | |
"398a518909af4a719c2b843194eddba3", | |
"9e89fd13b97443aaa2be446547665fa8", | |
"06db0c3614e34bd6a4141ef767823e7a", | |
"b17db0cec74748c396c53360376cf1b0", | |
"45aae7eacbb54f2bbee4cf6898f841a3", | |
"4349f782aa9e45edad4bc3f2d045c39f", | |
"eb95b823ae694b729962f2b01d2ec9ea", | |
"062a415f0de74fc79c3d1f67dc0a4f64", | |
"6c185dcebbba4565a519b4fd90f51043", | |
"5b72386a7903475b8ec990097b3239a9", | |
"d3f01801f3b24d569fd9f2c12d7b851d", | |
"7b806a968a0448d2916fcc03c3b81381", | |
"6ba77f9af7614500ae25d1c5954757c7", | |
"3fe81dfb01324b1988dadcfc7d3a38b2", | |
"759b6d883d10443884f378054b8b10dc", | |
"b06885edf5534826844894aed3354991", | |
"14c77e2eab614ba285a5accebe2808ec", | |
"da0f3f0234574d1e82959f7a277fc2f8", | |
"d632e9a116da4d1db93cde93807dde4b", | |
"ea9ad4c765e14078bcc7d3b34db47f40", | |
"1c32be3e2b2a45f7ae31d77fc29414c8", | |
"a0f8529e7fac43fba76b95dff178a14a", | |
"a6f7b8b849c34a9ebab22e0d876acec9", | |
"7931601735c44f78ab6e86607452f0c5", | |
"6e05fc7d2e174d81bb9070f2638b4d25", | |
"7579e22806c649fda3bb8557590074aa", | |
"5e27e0f928be4c0eb993e71f52fc72a4", | |
"78cdd20cbb09464d943b2dac67df9e89", | |
"7747dfb4c7884de0aef3228825d29b39", | |
"0e407f8a543942f2aeef9e3908b9f694", | |
"a842f18cf94545f497330da0c3dbfdbf", | |
"4eef0b2659134b69b7bf74c36f7fb4eb", | |
"d36a89fb0eba419eb05de9a9f87e68c1", | |
"459c1a7dbf284faaae609a39621fd69d", | |
"3076dd62b256437aa7a48e73f9edfc53", | |
"ec72193c7b844887b3c2684fe5072827", | |
"7296928c5c2f46c29549667ff6acf425", | |
"53aaca798dab4b6199a301a6fa8a59a3", | |
"d35b3fb0c5b644fa943c43081cc89e70", | |
"7723c6559816436fa8130686cd86860a", | |
"c463434d06d34acaad4c55e867c61e97", | |
"89aad17ed4a64aca8ef9416dafee41b3", | |
"05ca0535fbcd4bba8e18bbafc9372597", | |
"cde4f420fbf342d9944d50845518ae1c", | |
"10fb2d05680041c289d672c5f20db9b4", | |
"b09b0fc657f348df8eb45b4c2d79691c", | |
"8449011a95994a37970bb807ff539b6c", | |
"1860b06b5a264eb6a23cbf1d5a1ea027", | |
"9c3e4341492f4fe38cef908aff567083", | |
"81e69a00a3d544c4b9cb94f43c089b16", | |
"19c424e87bc7434d99362e027e7b6a7c", | |
"98c5a2b4f6b5424b8717b6b89ced4d67", | |
"ec478780e5cb445c8e5f68f62213a265", | |
"1cf606ffb50d42aa91b6ebd5b52ec8cb", | |
"b6eccbcefc84470e911a9994f8c349a6", | |
"0f06715a09f24e268f0a2339f544f60c", | |
"ec0dc55c95d742e4bb16276e1d70f98f", | |
"c163e3594d4e4b35afa8dd3b973dce6c", | |
"bb675798c0624c9b949141665954b1bc", | |
"694a9a3a9d7749b189d64bb992ad2b22", | |
"b0f03c4e246e40d9b7c73cc8b106fa03", | |
"c464c781b2ad43a7a034d374bffd3bf3", | |
"13dbd68cae9e45b18059d54149c2a852", | |
"abb6336ce6b14a76b006dd692ecc409d", | |
"a165256119fe46a18f4e32253ef38106", | |
"ded2ca2bf4f441fabfe7cc7a7fa80e92", | |
"28dd6b63820249148363c42fba7f02a9", | |
"6a24787a5aaf4383bf6c2adb2663f7b8", | |
"c07e3db98f234918abad840cedf9d5d5", | |
"c410a98169ef4f1c8c6cb11a869e1aa5", | |
"67412722a78146d1bc83560713a4e79a", | |
"62763f6c5426435c846f65c926f8067f", | |
"83cc85d3494743e0bb499fd7998005ad", | |
"97c1419b0cc444c8951c2ad4e891b9b0", | |
"ed0d94f31522455cae50e21cacbd69bd", | |
"ba1b5fb4b12948fea521e244096acd8b", | |
"7f65a4e7cf0e4d9c8c9180a9904ca5fe", | |
"3c03d8001f534aaeb5869c98f52e7d5d", | |
"d6412397c31145ec9bb5e72b8585bcd2", | |
"599023bad56e468383e82240136882f4", | |
"d65cc12c4c334bf9ade9ae8c678d2304", | |
"e03959ef7f2f4ac29c7fce2c077d1166", | |
"37619597cd5f4de7b69a99ee004eede8", | |
"9a4baa2c17c44326860ce48b7c71223a", | |
"2ee235ad7f3e4e4ea7eb8e30f06fd62b", | |
"fe0ab24b0edb4053b99eae582958b9c2", | |
"0303b13ea17f430daca9f3954e30d534", | |
"f6b69171c09849c3907012150baafff6" | |
] | |
}, | |
"id": "lZ_KLB9CPdtp", | |
"outputId": "a9118e2b-3f8e-471f-efc6-da36bee0b93e" | |
}, | |
"outputs": [], | |
"source": [ | |
"# use model on aerial image\n", | |
"\n", | |
"text = \"a car.\"\n", | |
"\n", | |
"inputs = processor(images=aerial_img, text=text, return_tensors=\"pt\").to(device)\n", | |
"with torch.no_grad():\n", | |
" outputs = model(**inputs)\n", | |
"\n", | |
"results = processor.post_process_grounded_object_detection(\n", | |
" outputs,\n", | |
" inputs.input_ids,\n", | |
" box_threshold=0.25,\n", | |
" text_threshold=0.25,\n", | |
" target_sizes=[aerial_img.size[::-1]]\n", | |
")" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 400, | |
"referenced_widgets": [ | |
"398a518909af4a719c2b843194eddba3", | |
"9e89fd13b97443aaa2be446547665fa8", | |
"06db0c3614e34bd6a4141ef767823e7a", | |
"b17db0cec74748c396c53360376cf1b0", | |
"45aae7eacbb54f2bbee4cf6898f841a3", | |
"4349f782aa9e45edad4bc3f2d045c39f", | |
"eb95b823ae694b729962f2b01d2ec9ea", | |
"062a415f0de74fc79c3d1f67dc0a4f64", | |
"6c185dcebbba4565a519b4fd90f51043", | |
"5b72386a7903475b8ec990097b3239a9", | |
"d3f01801f3b24d569fd9f2c12d7b851d", | |
"7b806a968a0448d2916fcc03c3b81381", | |
"6ba77f9af7614500ae25d1c5954757c7", | |
"3fe81dfb01324b1988dadcfc7d3a38b2", | |
"759b6d883d10443884f378054b8b10dc", | |
"b06885edf5534826844894aed3354991", | |
"14c77e2eab614ba285a5accebe2808ec", | |
"da0f3f0234574d1e82959f7a277fc2f8", | |
"d632e9a116da4d1db93cde93807dde4b", | |
"ea9ad4c765e14078bcc7d3b34db47f40", | |
"1c32be3e2b2a45f7ae31d77fc29414c8", | |
"a0f8529e7fac43fba76b95dff178a14a", | |
"a6f7b8b849c34a9ebab22e0d876acec9", | |
"7931601735c44f78ab6e86607452f0c5", | |
"6e05fc7d2e174d81bb9070f2638b4d25", | |
"7579e22806c649fda3bb8557590074aa", | |
"5e27e0f928be4c0eb993e71f52fc72a4", | |
"78cdd20cbb09464d943b2dac67df9e89", | |
"7747dfb4c7884de0aef3228825d29b39", | |
"0e407f8a543942f2aeef9e3908b9f694", | |
"a842f18cf94545f497330da0c3dbfdbf", | |
"4eef0b2659134b69b7bf74c36f7fb4eb", | |
"d36a89fb0eba419eb05de9a9f87e68c1", | |
"459c1a7dbf284faaae609a39621fd69d", | |
"3076dd62b256437aa7a48e73f9edfc53", | |
"ec72193c7b844887b3c2684fe5072827", | |
"7296928c5c2f46c29549667ff6acf425", | |
"53aaca798dab4b6199a301a6fa8a59a3", | |
"d35b3fb0c5b644fa943c43081cc89e70", | |
"7723c6559816436fa8130686cd86860a", | |
"c463434d06d34acaad4c55e867c61e97", | |
"89aad17ed4a64aca8ef9416dafee41b3", | |
"05ca0535fbcd4bba8e18bbafc9372597", | |
"cde4f420fbf342d9944d50845518ae1c", | |
"10fb2d05680041c289d672c5f20db9b4", | |
"b09b0fc657f348df8eb45b4c2d79691c", | |
"8449011a95994a37970bb807ff539b6c", | |
"1860b06b5a264eb6a23cbf1d5a1ea027", | |
"9c3e4341492f4fe38cef908aff567083", | |
"81e69a00a3d544c4b9cb94f43c089b16", | |
"19c424e87bc7434d99362e027e7b6a7c", | |
"98c5a2b4f6b5424b8717b6b89ced4d67", | |
"ec478780e5cb445c8e5f68f62213a265", | |
"1cf606ffb50d42aa91b6ebd5b52ec8cb", | |
"b6eccbcefc84470e911a9994f8c349a6", | |
"0f06715a09f24e268f0a2339f544f60c", | |
"ec0dc55c95d742e4bb16276e1d70f98f", | |
"c163e3594d4e4b35afa8dd3b973dce6c", | |
"bb675798c0624c9b949141665954b1bc", | |
"694a9a3a9d7749b189d64bb992ad2b22", | |
"b0f03c4e246e40d9b7c73cc8b106fa03", | |
"c464c781b2ad43a7a034d374bffd3bf3", | |
"13dbd68cae9e45b18059d54149c2a852", | |
"abb6336ce6b14a76b006dd692ecc409d", | |
"a165256119fe46a18f4e32253ef38106", | |
"ded2ca2bf4f441fabfe7cc7a7fa80e92", | |
"28dd6b63820249148363c42fba7f02a9", | |
"6a24787a5aaf4383bf6c2adb2663f7b8", | |
"c07e3db98f234918abad840cedf9d5d5", | |
"c410a98169ef4f1c8c6cb11a869e1aa5", | |
"67412722a78146d1bc83560713a4e79a", | |
"62763f6c5426435c846f65c926f8067f", | |
"83cc85d3494743e0bb499fd7998005ad", | |
"97c1419b0cc444c8951c2ad4e891b9b0", | |
"ed0d94f31522455cae50e21cacbd69bd", | |
"ba1b5fb4b12948fea521e244096acd8b", | |
"7f65a4e7cf0e4d9c8c9180a9904ca5fe", | |
"3c03d8001f534aaeb5869c98f52e7d5d", | |
"d6412397c31145ec9bb5e72b8585bcd2", | |
"599023bad56e468383e82240136882f4", | |
"d65cc12c4c334bf9ade9ae8c678d2304", | |
"e03959ef7f2f4ac29c7fce2c077d1166", | |
"37619597cd5f4de7b69a99ee004eede8", | |
"9a4baa2c17c44326860ce48b7c71223a", | |
"2ee235ad7f3e4e4ea7eb8e30f06fd62b", | |
"fe0ab24b0edb4053b99eae582958b9c2", | |
"0303b13ea17f430daca9f3954e30d534", | |
"f6b69171c09849c3907012150baafff6" | |
] | |
}, | |
"id": "lZ_KLB9CPdtp", | |
"outputId": "a9118e2b-3f8e-471f-efc6-da36bee0b93e" | |
}, | |
"outputs": [], | |
"source": [ | |
"res_zs_aerial_img = aerial_img.copy()\n", | |
"\n", | |
"draw = ImageDraw.Draw(res_zs_aerial_img)\n", | |
"for score, label, box in zip(results[0][\"scores\"], results[0][\"labels\"], results[0][\"boxes\"]):\n", | |
" if score > 0.2: # Confidence threshold\n", | |
" box = [round(i, 2) for i in box.tolist()]\n", | |
" draw.rectangle(box, outline=\"red\", width=2)\n", | |
" draw.text((box[0], box[1]), f\"{label}: {score:.2f}\", fill=\"red\")\n", | |
"\n", | |
"# Save the output image\n", | |
"\n", | |
"res_zs_aerial_img" | |
] | |
} | |
], | |
"metadata": { | |
"colab": { | |
"provenance": [] | |
}, | |
"kernelspec": { | |
"display_name": "Python 3 (ipykernel)", | |
"language": "python", | |
"name": "python3" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 3 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython3", | |
"version": "3.11.9" | |
}, | |
"widgets": { | |
"application/vnd.jupyter.widget-state+json": { | |
"0303b13ea17f430daca9f3954e30d534": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"05ca0535fbcd4bba8e18bbafc9372597": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"062a415f0de74fc79c3d1f67dc0a4f64": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"06db0c3614e34bd6a4141ef767823e7a": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "FloatProgressModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "FloatProgressModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "ProgressView", | |
"bar_style": "success", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_062a415f0de74fc79c3d1f67dc0a4f64", | |
"max": 457, | |
"min": 0, | |
"orientation": "horizontal", | |
"style": "IPY_MODEL_6c185dcebbba4565a519b4fd90f51043", | |
"value": 457 | |
} | |
}, | |
"0e407f8a543942f2aeef9e3908b9f694": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"0f06715a09f24e268f0a2339f544f60c": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HBoxModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HBoxModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HBoxView", | |
"box_style": "", | |
"children": [ | |
"IPY_MODEL_ec0dc55c95d742e4bb16276e1d70f98f", | |
"IPY_MODEL_c163e3594d4e4b35afa8dd3b973dce6c", | |
"IPY_MODEL_bb675798c0624c9b949141665954b1bc" | |
], | |
"layout": "IPY_MODEL_694a9a3a9d7749b189d64bb992ad2b22" | |
} | |
}, | |
"10fb2d05680041c289d672c5f20db9b4": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HBoxModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HBoxModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HBoxView", | |
"box_style": "", | |
"children": [ | |
"IPY_MODEL_b09b0fc657f348df8eb45b4c2d79691c", | |
"IPY_MODEL_8449011a95994a37970bb807ff539b6c", | |
"IPY_MODEL_1860b06b5a264eb6a23cbf1d5a1ea027" | |
], | |
"layout": "IPY_MODEL_9c3e4341492f4fe38cef908aff567083" | |
} | |
}, | |
"13dbd68cae9e45b18059d54149c2a852": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"14c77e2eab614ba285a5accebe2808ec": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"1860b06b5a264eb6a23cbf1d5a1ea027": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_1cf606ffb50d42aa91b6ebd5b52ec8cb", | |
"placeholder": "", | |
"style": "IPY_MODEL_b6eccbcefc84470e911a9994f8c349a6", | |
"value": " 82.0/82.0 [00:00<00:00, 650B/s]" | |
} | |
}, | |
"19c424e87bc7434d99362e027e7b6a7c": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"1c32be3e2b2a45f7ae31d77fc29414c8": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"1cf606ffb50d42aa91b6ebd5b52ec8cb": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"28dd6b63820249148363c42fba7f02a9": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HBoxModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HBoxModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HBoxView", | |
"box_style": "", | |
"children": [ | |
"IPY_MODEL_6a24787a5aaf4383bf6c2adb2663f7b8", | |
"IPY_MODEL_c07e3db98f234918abad840cedf9d5d5", | |
"IPY_MODEL_c410a98169ef4f1c8c6cb11a869e1aa5" | |
], | |
"layout": "IPY_MODEL_67412722a78146d1bc83560713a4e79a" | |
} | |
}, | |
"2ee235ad7f3e4e4ea7eb8e30f06fd62b": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"3076dd62b256437aa7a48e73f9edfc53": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_d35b3fb0c5b644fa943c43081cc89e70", | |
"placeholder": "", | |
"style": "IPY_MODEL_7723c6559816436fa8130686cd86860a", | |
"value": "tokenizer.json: 100%" | |
} | |
}, | |
"37619597cd5f4de7b69a99ee004eede8": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"398a518909af4a719c2b843194eddba3": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HBoxModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HBoxModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HBoxView", | |
"box_style": "", | |
"children": [ | |
"IPY_MODEL_9e89fd13b97443aaa2be446547665fa8", | |
"IPY_MODEL_06db0c3614e34bd6a4141ef767823e7a", | |
"IPY_MODEL_b17db0cec74748c396c53360376cf1b0" | |
], | |
"layout": "IPY_MODEL_45aae7eacbb54f2bbee4cf6898f841a3" | |
} | |
}, | |
"3c03d8001f534aaeb5869c98f52e7d5d": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HBoxModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HBoxModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HBoxView", | |
"box_style": "", | |
"children": [ | |
"IPY_MODEL_d6412397c31145ec9bb5e72b8585bcd2", | |
"IPY_MODEL_599023bad56e468383e82240136882f4", | |
"IPY_MODEL_d65cc12c4c334bf9ade9ae8c678d2304" | |
], | |
"layout": "IPY_MODEL_e03959ef7f2f4ac29c7fce2c077d1166" | |
} | |
}, | |
"3fe81dfb01324b1988dadcfc7d3a38b2": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "FloatProgressModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "FloatProgressModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "ProgressView", | |
"bar_style": "success", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_d632e9a116da4d1db93cde93807dde4b", | |
"max": 1237, | |
"min": 0, | |
"orientation": "horizontal", | |
"style": "IPY_MODEL_ea9ad4c765e14078bcc7d3b34db47f40", | |
"value": 1237 | |
} | |
}, | |
"4349f782aa9e45edad4bc3f2d045c39f": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"459c1a7dbf284faaae609a39621fd69d": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HBoxModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HBoxModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HBoxView", | |
"box_style": "", | |
"children": [ | |
"IPY_MODEL_3076dd62b256437aa7a48e73f9edfc53", | |
"IPY_MODEL_ec72193c7b844887b3c2684fe5072827", | |
"IPY_MODEL_7296928c5c2f46c29549667ff6acf425" | |
], | |
"layout": "IPY_MODEL_53aaca798dab4b6199a301a6fa8a59a3" | |
} | |
}, | |
"45aae7eacbb54f2bbee4cf6898f841a3": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"4eef0b2659134b69b7bf74c36f7fb4eb": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"53aaca798dab4b6199a301a6fa8a59a3": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"599023bad56e468383e82240136882f4": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "FloatProgressModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "FloatProgressModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "ProgressView", | |
"bar_style": "success", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_2ee235ad7f3e4e4ea7eb8e30f06fd62b", | |
"max": 689359096, | |
"min": 0, | |
"orientation": "horizontal", | |
"style": "IPY_MODEL_fe0ab24b0edb4053b99eae582958b9c2", | |
"value": 689359096 | |
} | |
}, | |
"5b72386a7903475b8ec990097b3239a9": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"5e27e0f928be4c0eb993e71f52fc72a4": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"62763f6c5426435c846f65c926f8067f": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"67412722a78146d1bc83560713a4e79a": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"694a9a3a9d7749b189d64bb992ad2b22": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"6a24787a5aaf4383bf6c2adb2663f7b8": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_62763f6c5426435c846f65c926f8067f", | |
"placeholder": "", | |
"style": "IPY_MODEL_83cc85d3494743e0bb499fd7998005ad", | |
"value": "config.json: 100%" | |
} | |
}, | |
"6ba77f9af7614500ae25d1c5954757c7": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_14c77e2eab614ba285a5accebe2808ec", | |
"placeholder": "", | |
"style": "IPY_MODEL_da0f3f0234574d1e82959f7a277fc2f8", | |
"value": "tokenizer_config.json: 100%" | |
} | |
}, | |
"6c185dcebbba4565a519b4fd90f51043": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "ProgressStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "ProgressStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"bar_color": null, | |
"description_width": "" | |
} | |
}, | |
"6e05fc7d2e174d81bb9070f2638b4d25": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "FloatProgressModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "FloatProgressModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "ProgressView", | |
"bar_style": "success", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_0e407f8a543942f2aeef9e3908b9f694", | |
"max": 231508, | |
"min": 0, | |
"orientation": "horizontal", | |
"style": "IPY_MODEL_a842f18cf94545f497330da0c3dbfdbf", | |
"value": 231508 | |
} | |
}, | |
"7296928c5c2f46c29549667ff6acf425": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_05ca0535fbcd4bba8e18bbafc9372597", | |
"placeholder": "", | |
"style": "IPY_MODEL_cde4f420fbf342d9944d50845518ae1c", | |
"value": " 711k/711k [00:00<00:00, 1.37MB/s]" | |
} | |
}, | |
"7579e22806c649fda3bb8557590074aa": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_4eef0b2659134b69b7bf74c36f7fb4eb", | |
"placeholder": "", | |
"style": "IPY_MODEL_d36a89fb0eba419eb05de9a9f87e68c1", | |
"value": " 232k/232k [00:00<00:00, 665kB/s]" | |
} | |
}, | |
"759b6d883d10443884f378054b8b10dc": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_1c32be3e2b2a45f7ae31d77fc29414c8", | |
"placeholder": "", | |
"style": "IPY_MODEL_a0f8529e7fac43fba76b95dff178a14a", | |
"value": " 1.24k/1.24k [00:00<00:00, 23.9kB/s]" | |
} | |
}, | |
"7723c6559816436fa8130686cd86860a": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"7747dfb4c7884de0aef3228825d29b39": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"78cdd20cbb09464d943b2dac67df9e89": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"7931601735c44f78ab6e86607452f0c5": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_78cdd20cbb09464d943b2dac67df9e89", | |
"placeholder": "", | |
"style": "IPY_MODEL_7747dfb4c7884de0aef3228825d29b39", | |
"value": "vocab.txt: 100%" | |
} | |
}, | |
"7b806a968a0448d2916fcc03c3b81381": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HBoxModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HBoxModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HBoxView", | |
"box_style": "", | |
"children": [ | |
"IPY_MODEL_6ba77f9af7614500ae25d1c5954757c7", | |
"IPY_MODEL_3fe81dfb01324b1988dadcfc7d3a38b2", | |
"IPY_MODEL_759b6d883d10443884f378054b8b10dc" | |
], | |
"layout": "IPY_MODEL_b06885edf5534826844894aed3354991" | |
} | |
}, | |
"7f65a4e7cf0e4d9c8c9180a9904ca5fe": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"81e69a00a3d544c4b9cb94f43c089b16": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"83cc85d3494743e0bb499fd7998005ad": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"8449011a95994a37970bb807ff539b6c": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "FloatProgressModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "FloatProgressModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "ProgressView", | |
"bar_style": "success", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_98c5a2b4f6b5424b8717b6b89ced4d67", | |
"max": 82, | |
"min": 0, | |
"orientation": "horizontal", | |
"style": "IPY_MODEL_ec478780e5cb445c8e5f68f62213a265", | |
"value": 82 | |
} | |
}, | |
"89aad17ed4a64aca8ef9416dafee41b3": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "ProgressStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "ProgressStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"bar_color": null, | |
"description_width": "" | |
} | |
}, | |
"97c1419b0cc444c8951c2ad4e891b9b0": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"98c5a2b4f6b5424b8717b6b89ced4d67": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"9a4baa2c17c44326860ce48b7c71223a": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"9c3e4341492f4fe38cef908aff567083": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"9e89fd13b97443aaa2be446547665fa8": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_4349f782aa9e45edad4bc3f2d045c39f", | |
"placeholder": "", | |
"style": "IPY_MODEL_eb95b823ae694b729962f2b01d2ec9ea", | |
"value": "preprocessor_config.json: 100%" | |
} | |
}, | |
"a0f8529e7fac43fba76b95dff178a14a": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"a165256119fe46a18f4e32253ef38106": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"a6f7b8b849c34a9ebab22e0d876acec9": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HBoxModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HBoxModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HBoxView", | |
"box_style": "", | |
"children": [ | |
"IPY_MODEL_7931601735c44f78ab6e86607452f0c5", | |
"IPY_MODEL_6e05fc7d2e174d81bb9070f2638b4d25", | |
"IPY_MODEL_7579e22806c649fda3bb8557590074aa" | |
], | |
"layout": "IPY_MODEL_5e27e0f928be4c0eb993e71f52fc72a4" | |
} | |
}, | |
"a842f18cf94545f497330da0c3dbfdbf": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "ProgressStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "ProgressStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"bar_color": null, | |
"description_width": "" | |
} | |
}, | |
"abb6336ce6b14a76b006dd692ecc409d": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "ProgressStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "ProgressStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"bar_color": null, | |
"description_width": "" | |
} | |
}, | |
"b06885edf5534826844894aed3354991": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"b09b0fc657f348df8eb45b4c2d79691c": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_81e69a00a3d544c4b9cb94f43c089b16", | |
"placeholder": "", | |
"style": "IPY_MODEL_19c424e87bc7434d99362e027e7b6a7c", | |
"value": "added_tokens.json: 100%" | |
} | |
}, | |
"b0f03c4e246e40d9b7c73cc8b106fa03": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"b17db0cec74748c396c53360376cf1b0": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_5b72386a7903475b8ec990097b3239a9", | |
"placeholder": "", | |
"style": "IPY_MODEL_d3f01801f3b24d569fd9f2c12d7b851d", | |
"value": " 457/457 [00:00<00:00, 8.37kB/s]" | |
} | |
}, | |
"b6eccbcefc84470e911a9994f8c349a6": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"ba1b5fb4b12948fea521e244096acd8b": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"bb675798c0624c9b949141665954b1bc": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_a165256119fe46a18f4e32253ef38106", | |
"placeholder": "", | |
"style": "IPY_MODEL_ded2ca2bf4f441fabfe7cc7a7fa80e92", | |
"value": " 125/125 [00:00<00:00, 1.05kB/s]" | |
} | |
}, | |
"c07e3db98f234918abad840cedf9d5d5": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "FloatProgressModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "FloatProgressModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "ProgressView", | |
"bar_style": "success", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_97c1419b0cc444c8951c2ad4e891b9b0", | |
"max": 1644, | |
"min": 0, | |
"orientation": "horizontal", | |
"style": "IPY_MODEL_ed0d94f31522455cae50e21cacbd69bd", | |
"value": 1644 | |
} | |
}, | |
"c163e3594d4e4b35afa8dd3b973dce6c": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "FloatProgressModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "FloatProgressModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "ProgressView", | |
"bar_style": "success", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_13dbd68cae9e45b18059d54149c2a852", | |
"max": 125, | |
"min": 0, | |
"orientation": "horizontal", | |
"style": "IPY_MODEL_abb6336ce6b14a76b006dd692ecc409d", | |
"value": 125 | |
} | |
}, | |
"c410a98169ef4f1c8c6cb11a869e1aa5": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_ba1b5fb4b12948fea521e244096acd8b", | |
"placeholder": "", | |
"style": "IPY_MODEL_7f65a4e7cf0e4d9c8c9180a9904ca5fe", | |
"value": " 1.64k/1.64k [00:00<00:00, 17.2kB/s]" | |
} | |
}, | |
"c463434d06d34acaad4c55e867c61e97": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"c464c781b2ad43a7a034d374bffd3bf3": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"cde4f420fbf342d9944d50845518ae1c": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"d35b3fb0c5b644fa943c43081cc89e70": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"d36a89fb0eba419eb05de9a9f87e68c1": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"d3f01801f3b24d569fd9f2c12d7b851d": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"d632e9a116da4d1db93cde93807dde4b": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"d6412397c31145ec9bb5e72b8585bcd2": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_37619597cd5f4de7b69a99ee004eede8", | |
"placeholder": "", | |
"style": "IPY_MODEL_9a4baa2c17c44326860ce48b7c71223a", | |
"value": "model.safetensors: 100%" | |
} | |
}, | |
"d65cc12c4c334bf9ade9ae8c678d2304": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_0303b13ea17f430daca9f3954e30d534", | |
"placeholder": "", | |
"style": "IPY_MODEL_f6b69171c09849c3907012150baafff6", | |
"value": " 689M/689M [00:10<00:00, 68.6MB/s]" | |
} | |
}, | |
"da0f3f0234574d1e82959f7a277fc2f8": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"ded2ca2bf4f441fabfe7cc7a7fa80e92": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"e03959ef7f2f4ac29c7fce2c077d1166": { | |
"model_module": "@jupyter-widgets/base", | |
"model_module_version": "1.2.0", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/base", | |
"_model_module_version": "1.2.0", | |
"_model_name": "LayoutModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "LayoutView", | |
"align_content": null, | |
"align_items": null, | |
"align_self": null, | |
"border": null, | |
"bottom": null, | |
"display": null, | |
"flex": null, | |
"flex_flow": null, | |
"grid_area": null, | |
"grid_auto_columns": null, | |
"grid_auto_flow": null, | |
"grid_auto_rows": null, | |
"grid_column": null, | |
"grid_gap": null, | |
"grid_row": null, | |
"grid_template_areas": null, | |
"grid_template_columns": null, | |
"grid_template_rows": null, | |
"height": null, | |
"justify_content": null, | |
"justify_items": null, | |
"left": null, | |
"margin": null, | |
"max_height": null, | |
"max_width": null, | |
"min_height": null, | |
"min_width": null, | |
"object_fit": null, | |
"object_position": null, | |
"order": null, | |
"overflow": null, | |
"overflow_x": null, | |
"overflow_y": null, | |
"padding": null, | |
"right": null, | |
"top": null, | |
"visibility": null, | |
"width": null | |
} | |
}, | |
"ea9ad4c765e14078bcc7d3b34db47f40": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "ProgressStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "ProgressStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"bar_color": null, | |
"description_width": "" | |
} | |
}, | |
"eb95b823ae694b729962f2b01d2ec9ea": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"ec0dc55c95d742e4bb16276e1d70f98f": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "HTMLModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "HTMLModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "HTMLView", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_b0f03c4e246e40d9b7c73cc8b106fa03", | |
"placeholder": "", | |
"style": "IPY_MODEL_c464c781b2ad43a7a034d374bffd3bf3", | |
"value": "special_tokens_map.json: 100%" | |
} | |
}, | |
"ec478780e5cb445c8e5f68f62213a265": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "ProgressStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "ProgressStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"bar_color": null, | |
"description_width": "" | |
} | |
}, | |
"ec72193c7b844887b3c2684fe5072827": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "FloatProgressModel", | |
"state": { | |
"_dom_classes": [], | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "FloatProgressModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/controls", | |
"_view_module_version": "1.5.0", | |
"_view_name": "ProgressView", | |
"bar_style": "success", | |
"description": "", | |
"description_tooltip": null, | |
"layout": "IPY_MODEL_c463434d06d34acaad4c55e867c61e97", | |
"max": 711396, | |
"min": 0, | |
"orientation": "horizontal", | |
"style": "IPY_MODEL_89aad17ed4a64aca8ef9416dafee41b3", | |
"value": 711396 | |
} | |
}, | |
"ed0d94f31522455cae50e21cacbd69bd": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "ProgressStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "ProgressStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"bar_color": null, | |
"description_width": "" | |
} | |
}, | |
"f6b69171c09849c3907012150baafff6": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "DescriptionStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "DescriptionStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"description_width": "" | |
} | |
}, | |
"fe0ab24b0edb4053b99eae582958b9c2": { | |
"model_module": "@jupyter-widgets/controls", | |
"model_module_version": "1.5.0", | |
"model_name": "ProgressStyleModel", | |
"state": { | |
"_model_module": "@jupyter-widgets/controls", | |
"_model_module_version": "1.5.0", | |
"_model_name": "ProgressStyleModel", | |
"_view_count": null, | |
"_view_module": "@jupyter-widgets/base", | |
"_view_module_version": "1.2.0", | |
"_view_name": "StyleView", | |
"bar_color": null, | |
"description_width": "" | |
} | |
} | |
} | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment