peft

Форк
0
8070 строк · 288.7 Кб
1
{
2
  "cells": [
3
    {
4
      "cell_type": "code",
5
      "execution_count": 2,
6
      "id": "a9935ae2",
7
      "metadata": {
8
        "id": "a9935ae2"
9
      },
10
      "outputs": [],
11
      "source": [
12
        "import argparse\n",
13
        "import os\n",
14
        "\n",
15
        "import torch\n",
16
        "from torch.optim import AdamW\n",
17
        "from torch.utils.data import DataLoader\n",
18
        "import peft\n",
19
        "\n",
20
        "import evaluate\n",
21
        "from datasets import load_dataset\n",
22
        "from transformers import AutoModelForSequenceClassification, AutoTokenizer, get_linear_schedule_with_warmup, set_seed\n",
23
        "from tqdm import tqdm"
24
      ]
25
    },
26
    {
27
      "cell_type": "code",
28
      "execution_count": 3,
29
      "id": "e3b13308",
30
      "metadata": {
31
        "id": "e3b13308"
32
      },
33
      "outputs": [],
34
      "source": [
35
        "batch_size = 8\n",
36
        "model_name_or_path = \"roberta-large\"\n",
37
        "task = \"mrpc\"\n",
38
        "peft_type = peft.PeftType.IA3\n",
39
        "device = \"cuda\"\n",
40
        "num_epochs = 12"
41
      ]
42
    },
43
    {
44
      "cell_type": "code",
45
      "execution_count": 4,
46
      "id": "0526f571",
47
      "metadata": {
48
        "id": "0526f571"
49
      },
50
      "outputs": [],
51
      "source": [
52
        "# peft_config = LoraConfig(task_type=\"SEQ_CLS\", inference_mode=False, r=8, lora_alpha=16, lora_dropout=0.1)\n",
53
        "peft_config = peft.IA3Config(task_type=\"SEQ_CLS\", inference_mode=False)\n",
54
        "lr = 1e-3"
55
      ]
56
    },
57
    {
58
      "cell_type": "code",
59
      "execution_count": 5,
60
      "id": "c2697d07",
61
      "metadata": {
62
        "colab": {
63
          "base_uri": "https://localhost:8080/",
64
          "height": 489,
65
          "referenced_widgets": [
66
            "6ea6ff70fa164264aef9efce9f921f10",
67
            "ecc2102ede2d4c8b94ce66b247054c96",
68
            "e64ca48867434ca2944dcb2b1c70c02c",
69
            "7ac75048225f4a4bbedac97965cf9837",
70
            "332971de5e894c8ca866c311cc6e180c",
71
            "bdf0999dfddc43ca8e04ceaac628064c",
72
            "c289713b179641bd915b3c334208197a",
73
            "e3d36dd4ddcb4287b8d8c942a26dc478",
74
            "0b20fa2eb59749e1b564df70f2378984",
75
            "d8e645f1697d46e0ac23f70e14498fab",
76
            "8dc1453856d549c4a1a688818447dd59",
77
            "d267c0cf26a8466d9938861ff5272a1e",
78
            "561f61d1cec94f5abbff3f8746c3fd96",
79
            "a5c93fac02884914ae8e140e0c0d2a17",
80
            "96c4ecd7376c43ee9a4ba270851d6fff",
81
            "5062d6f6feb34835afaf6d452900d514",
82
            "a05844fa4675494cb7bbe48f40f1aaac",
83
            "b241da7afea94fc0a6b407a0a78a8355",
84
            "74e056313e9e4a92bfaa22019ac1e58e",
85
            "938a5b44d90140e29ba33628a2215f2a",
86
            "1f27766bc2d941f6a1d03fc69a6026a3",
87
            "1c5e43a201f0460f88b53739bc1eaa43",
88
            "24e236a4360e416a8e5c20d887274bcc",
89
            "7011752f7e0a422883bf0f218f6941c3",
90
            "248fe45eee37449982520a890696e6d4",
91
            "5ec5d0d9191047608f61cb78563f7641",
92
            "d7c2b00fd90147528b00a29552f29b44",
93
            "ea307bb7a9ad46a484330b1daf708169",
94
            "27009ed667c242488773ce3fcc58360a",
95
            "faf0c550adc5402bbee71b027822ce9c",
96
            "9c57da41dfc04fe4a4437097285599bf",
97
            "d4453448f8b04f0ea76c71887bd33a8c",
98
            "ff5172169c794d40b6c433da642d54a9",
99
            "788a143aad46467789acf08762fbf39f",
100
            "32ba35144ab34b0ebb7cfb75b86ccdd4",
101
            "3ef39b223ab74d788223970ec0da21e6",
102
            "be40292e613949a0ba1bfd1846cdab92",
103
            "a6ab0e37d063407fa4adc11f2f0299da",
104
            "71c3a5a515a949bfb2290612bfb2d05f",
105
            "1232101b618d43f5889e4ad81fa24514",
106
            "2204ca891c3940879abde0f55fbadf03",
107
            "58f2da1b793b44b09cedb5e0a3a1ef02",
108
            "51ec9bdff1834e4f8390f0eaf7d4aeb8",
109
            "71b4a798dc374a72817f6c118f2f05b8",
110
            "a439e5ecb0a040ca8188c6d74ff643a9",
111
            "710f512e4a2b40cb85805b33a7dc42e4",
112
            "e5994b94b84143f4a06c49a45a078bd0",
113
            "e4f935e4e8e84320b2381aaf3493962c",
114
            "44eb5aeeb0004f799e79d3ed51cf37d4",
115
            "0c488289ee494a8d99d1f02a13729382",
116
            "49ccb14ddd874e798371494942725128",
117
            "015132b18da54a8f89a83cd9bf6fd17c",
118
            "39f26160766f48798761079527e14396",
119
            "5408dfdfc5624ff5b1c0b2e494dd4b35",
120
            "9c50277ed18a424a9da98707cf726d29",
121
            "11ba7f922c58474d9cb8b8c7a22caddc",
122
            "598fc42dfed04aadaeb38539dd259871",
123
            "fb05d1ece2ba4963bcbf99f89296c709",
124
            "e3fe73a6ffcf4d089911b4149b9b4512",
125
            "45e1b59770f946dba06511f9b5d1ad23",
126
            "2c512bc0a21a4f6684aa0593a969e6cb",
127
            "376f00f38b46434e922c3f6f7dc4a85c",
128
            "e815b0749289411eb680c56e4fd39dae",
129
            "33e9821903f84551a2e56c0586a5332b",
130
            "0b2e59615f80452cbe25dfd467099b84",
131
            "45128b02652b4c20bf448db8495d76d2",
132
            "d1997b08e5284008afce56a5ed6347be",
133
            "730111ee99b4470c81ab4ade07b30352",
134
            "562a55ffabef4d218c78c5dcc6665484",
135
            "59e1d01621f4404ca2102d00e2b01f87",
136
            "1896a8f160ea45e5ac2a88970feecdb9",
137
            "7d6d21774fec4eb0bab3bc2bfa2708d6",
138
            "9882a67915f8475c9f4b8a5b15d64e50",
139
            "47ffc35023144c4fa6b93e73b7a2ee60",
140
            "16f8d52980dc41e89ed3bfb9172420a6",
141
            "2bc5432ab9464f7b9192aa1f5a26a1b2",
142
            "80bcbdb92af34c9889b7d105affe34ba",
143
            "6786c3895b594301b2a7d4ed2767cb35",
144
            "bf35a5a5d9b840a18ef10938d23fce0c",
145
            "ad4872e198ee44f8b83323d891347ffa",
146
            "0f29f96aec7e44a1b97cda0fcbe17665",
147
            "dbb4032fab4d49a5b250be57a4d51fb0",
148
            "af185d9bedf64d54bc77f7f6e7c448f4",
149
            "4d9d717d2226444094e9753fdc843849",
150
            "3d323bc6e1fd4091a0ed2ffd521f2ec7",
151
            "2616b6102108476f8bf9e3d35b63494d",
152
            "844ea1050893482785c1b68150f4ab20",
153
            "92d023972a204222b59c12fc4b4d3bcf",
154
            "7900796766b946da886338653b495533",
155
            "84b50ae864e0463d98efa792e149e712",
156
            "802dc985a31e4febb8eafa4682e242ec",
157
            "f31d9d6e2d3140eeb821153a7b69b90a",
158
            "3f2d9eba845341da97fa1b957e72de5e",
159
            "d3638a2985fc4fdfbf239914dbc32fe8",
160
            "a9d237f2f62e4a839abdec541715a5de",
161
            "b451310e94b74abda4e795a59cdda9ab",
162
            "537c7d2f4260498a82132cb9fae5daa5",
163
            "6f9efa5f778d4f029dca7b4d6817b4c4",
164
            "d29a5f422214434c9be3886ce0d1e918",
165
            "e0e903b3ae8044f4a58ecd70825f36ec",
166
            "99e8679e71f4443c92f13971e8885d38",
167
            "55a0ca0754c94f0bba6ede50b7fb7ea8",
168
            "fae83f7a625448e788ffdb1a13d2d530",
169
            "3086db94647a41569b6f091e4f11f3cb",
170
            "24062742dc6749a2aab19cbfd1e11684",
171
            "1b6c8de76fd948b5b0eba8346f6e0bec",
172
            "276fc5825a624a3a9026301620682c6c",
173
            "5c10a16929ce40e48361efa44e96a7f8",
174
            "53f9d507f4024b2080591215d3c4bab4",
175
            "c77cdd4479294ce7bf3f3ef271e95b1d",
176
            "e66a0c2552ff46b5a41cf8d803114b8f",
177
            "897708ca40da48f3ae846710b4e7f7f0",
178
            "1aa34d9a0b16444baadf2ed7e43b72e5",
179
            "01f39b548eff49aea6ba0efabb4486de",
180
            "46fc201246804f28946fd0c59e09c4ac",
181
            "e6c085b451a346b6a3b82c67d7b9e9e2",
182
            "29a8cce77d2745038f2c742d17254139",
183
            "326b48d7d2e94defa52858171177e7d7",
184
            "9a3dcc1c2fe542b7b912419935d9dd9a",
185
            "b82b0c29bd53432baa5596b4f1aaf076",
186
            "a8ccd811bba848d2ad2f84d2cdf9ef03",
187
            "9ae4e6a6543e4da6bba06175aeef3ea1",
188
            "fa9675039cc443f791dcfbc0bdca065c",
189
            "5b0a0578afad40868bb71707c05e0335",
190
            "d1a82e42e866449cbb70c1f68ac1bc03",
191
            "bd12886eee644913ba83fd4ebb6b62ee",
192
            "fc11a9d0c0b7409cb2f61fcabac2bfa6",
193
            "9cf73d46c2f04bf398a4564a56f03bd6",
194
            "f46d3699775b4d7193adeebb4f18a34f",
195
            "5997f14e0a3044249b9cabc2b307e3a4",
196
            "5ba9f4bd64bd4e1e905887760f90ae3e",
197
            "1a8e75c718d14f4c8f99de1c8efa84b5",
198
            "786b2430a42942f1aeae253861820dcb",
199
            "e2741973e91745ea930d3cc23070cf52",
200
            "b9f18367c54b4203bee70c680ae9cdde",
201
            "7db82bb6fa2949b3a6bc9eb152fc3af1",
202
            "136a32dbeef646df944a8b59cb00c0c4",
203
            "c2fa0ef9f45b447e9dfe5c576428c714",
204
            "241dd21eeb5843ef8433e47b415c5b62",
205
            "c9837f88650844ea94442ad1c5682972",
206
            "963da028a1594c1bbd223e93832f44bd",
207
            "d981db72ab2745a598ed45a8762d5fcd",
208
            "73379eb4954d4be6ab90008addd7d3bd",
209
            "007f2f512694405c9245edd5e1f58551",
210
            "9aaeeb1213854768a6af51f8db54f6b6",
211
            "e6e2192c0a904bb6850c6bc68b579995",
212
            "608a68c6f651419d8fd210044b4561cf",
213
            "ac9d6255521f428fa7fda5735d71dbec",
214
            "a39ea243b7964c298eae71e9eaf32e17",
215
            "bf7f7cb363df4384ade192666b77c715",
216
            "841f3571fcec42ad8e1e43997567788c",
217
            "a246e6c60c054b4383c510c31b255a87",
218
            "da3e335ddc9846ea832c75d69684575f",
219
            "daa8ce62f0204a11bde7cd9e31cc2fa1",
220
            "6b937f0053b64c67af74d44bcb6e51b7",
221
            "72f55658a145483cb90668bf7b6f6c8a",
222
            "357c082907e140b58c807a394446d811",
223
            "f127594b694f4d2fafb3872e8190b1d6",
224
            "f9c8bd12201a4c8a86b2bb3c1a14d74e",
225
            "dc55ec8e57984efcb0f269ef0ef41c02",
226
            "cd07261ef21a4b859de53f244df33f2a",
227
            "c47de12dd692434ab9497e8a0d2a19ba",
228
            "963b22b2ef1e45f5ba8320f72ea6a83b",
229
            "3e2ca33b7473499d8314238ec245cd90",
230
            "e3313a7fb356432bada289ad346f1bdb",
231
            "75ee099566ca46eb8a75475246aaab01",
232
            "e94dd1ea928f43b880af21ced7f11d14",
233
            "ad84cdcfa07f4f608dccd10395d35e79",
234
            "8bd3a235ae654b1cbaae36aeb1a62e70",
235
            "ebe2f83a5783401ab501cdaf9c4e2ad5",
236
            "fe20644617844cf7a471e22a99ca7b5e",
237
            "d5502b7dcf784d289fc748881924334c",
238
            "6bf5b27d3c3c407eb10f8d9d6e8e8d22",
239
            "47480982ce83440997297e605cdf8a31",
240
            "32764784cc9644198c622f6706db6836",
241
            "83bae5949ec448c6ad6f68a7b8d3d436",
242
            "a018f7c156584eb3833b6aba3710b3c0",
243
            "c2a078c69d3f45ca9895e0e7f95aaf2b",
244
            "8c55316c54d44bd4b75a8457e2d8c595",
245
            "1824b7b748ee4763b5098cd915107f63",
246
            "87b93c14cdae477ab49522354631e82b",
247
            "a8b5d642ed654c0f85f3a9610c68b754",
248
            "8750ab964b5444d49db4fe8542964d8c",
249
            "c994a28df165445bbf0d80c165bc5a0b",
250
            "1a2897c84d454c1a9c115aef178f4fcf",
251
            "b668d56ab549478984ad14c22e040e47",
252
            "bac855f4c7044fe88bcd74170e13f103",
253
            "f871eeaa54cf451b8a2de64eed90d5b6",
254
            "39492d8b91f64e97bc8caead77957508",
255
            "1487d054f1824f739c93c00621591bd0",
256
            "cca43d628ff94369bc9713cbad616adb",
257
            "6aa4308f0cb348419f1217e48ef2dbd7",
258
            "d9db044ff31f4856a4d25e57fe9882bc",
259
            "f76b651681d74b2eab0ab07f43983a2a",
260
            "1e3adfe9c9e34d4abe74b65e298c0e7b",
261
            "f91ed6a931c247b5903304a28998633d",
262
            "34e576af7aab4ef795239b1d9a281b15",
263
            "9d8e3a4fe5864a4ca229ba6e092181e4",
264
            "e41888b1dea140d18be25efc6d99d0c3",
265
            "d63577f0ae724938952f9b681a89512a",
266
            "83623082d4e9457a9173db3129154f94",
267
            "4c1798c3d0cb43949a1ed7519b57d3fc",
268
            "6513f2b58d654a488b132abd8c83c9b6",
269
            "c4aa7cee6e5d4a89a2c33b9ce2e9c489",
270
            "b42e835e0ba24a08b5815234a22b4da6",
271
            "e8a53956f6ad46d58ec3a9a039f2303e",
272
            "91f07c6089354ceeb4e628ef1791d2d6",
273
            "c137c84ae40049ffba7d1f4d77b21de2",
274
            "81f8db0dcdbc4e5593fa3fbb6c2b9361"
275
          ]
276
        },
277
        "id": "c2697d07",
278
        "outputId": "c8318b3d-b6a0-4f0d-9903-54beb2baac75"
279
      },
280
      "outputs": [
281
        {
282
          "output_type": "display_data",
283
          "data": {
284
            "text/plain": [
285
              "Downloading (…)lve/main/config.json:   0%|          | 0.00/482 [00:00<?, ?B/s]"
286
            ],
287
            "application/vnd.jupyter.widget-view+json": {
288
              "version_major": 2,
289
              "version_minor": 0,
290
              "model_id": "6ea6ff70fa164264aef9efce9f921f10"
291
            }
292
          },
293
          "metadata": {}
294
        },
295
        {
296
          "output_type": "display_data",
297
          "data": {
298
            "text/plain": [
299
              "Downloading (…)olve/main/vocab.json:   0%|          | 0.00/899k [00:00<?, ?B/s]"
300
            ],
301
            "application/vnd.jupyter.widget-view+json": {
302
              "version_major": 2,
303
              "version_minor": 0,
304
              "model_id": "d267c0cf26a8466d9938861ff5272a1e"
305
            }
306
          },
307
          "metadata": {}
308
        },
309
        {
310
          "output_type": "display_data",
311
          "data": {
312
            "text/plain": [
313
              "Downloading (…)olve/main/merges.txt:   0%|          | 0.00/456k [00:00<?, ?B/s]"
314
            ],
315
            "application/vnd.jupyter.widget-view+json": {
316
              "version_major": 2,
317
              "version_minor": 0,
318
              "model_id": "24e236a4360e416a8e5c20d887274bcc"
319
            }
320
          },
321
          "metadata": {}
322
        },
323
        {
324
          "output_type": "display_data",
325
          "data": {
326
            "text/plain": [
327
              "Downloading (…)/main/tokenizer.json:   0%|          | 0.00/1.36M [00:00<?, ?B/s]"
328
            ],
329
            "application/vnd.jupyter.widget-view+json": {
330
              "version_major": 2,
331
              "version_minor": 0,
332
              "model_id": "788a143aad46467789acf08762fbf39f"
333
            }
334
          },
335
          "metadata": {}
336
        },
337
        {
338
          "output_type": "display_data",
339
          "data": {
340
            "text/plain": [
341
              "Downloading builder script:   0%|          | 0.00/28.8k [00:00<?, ?B/s]"
342
            ],
343
            "application/vnd.jupyter.widget-view+json": {
344
              "version_major": 2,
345
              "version_minor": 0,
346
              "model_id": "a439e5ecb0a040ca8188c6d74ff643a9"
347
            }
348
          },
349
          "metadata": {}
350
        },
351
        {
352
          "output_type": "display_data",
353
          "data": {
354
            "text/plain": [
355
              "Downloading metadata:   0%|          | 0.00/28.7k [00:00<?, ?B/s]"
356
            ],
357
            "application/vnd.jupyter.widget-view+json": {
358
              "version_major": 2,
359
              "version_minor": 0,
360
              "model_id": "11ba7f922c58474d9cb8b8c7a22caddc"
361
            }
362
          },
363
          "metadata": {}
364
        },
365
        {
366
          "output_type": "display_data",
367
          "data": {
368
            "text/plain": [
369
              "Downloading readme:   0%|          | 0.00/27.9k [00:00<?, ?B/s]"
370
            ],
371
            "application/vnd.jupyter.widget-view+json": {
372
              "version_major": 2,
373
              "version_minor": 0,
374
              "model_id": "d1997b08e5284008afce56a5ed6347be"
375
            }
376
          },
377
          "metadata": {}
378
        },
379
        {
380
          "output_type": "stream",
381
          "name": "stdout",
382
          "text": [
383
            "Downloading and preparing dataset glue/mrpc to /root/.cache/huggingface/datasets/glue/mrpc/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad...\n"
384
          ]
385
        },
386
        {
387
          "output_type": "display_data",
388
          "data": {
389
            "text/plain": [
390
              "Downloading data files:   0%|          | 0/3 [00:00<?, ?it/s]"
391
            ],
392
            "application/vnd.jupyter.widget-view+json": {
393
              "version_major": 2,
394
              "version_minor": 0,
395
              "model_id": "6786c3895b594301b2a7d4ed2767cb35"
396
            }
397
          },
398
          "metadata": {}
399
        },
400
        {
401
          "output_type": "display_data",
402
          "data": {
403
            "text/plain": [
404
              "Downloading data: 0.00B [00:00, ?B/s]"
405
            ],
406
            "application/vnd.jupyter.widget-view+json": {
407
              "version_major": 2,
408
              "version_minor": 0,
409
              "model_id": "7900796766b946da886338653b495533"
410
            }
411
          },
412
          "metadata": {}
413
        },
414
        {
415
          "output_type": "display_data",
416
          "data": {
417
            "text/plain": [
418
              "Downloading data: 0.00B [00:00, ?B/s]"
419
            ],
420
            "application/vnd.jupyter.widget-view+json": {
421
              "version_major": 2,
422
              "version_minor": 0,
423
              "model_id": "e0e903b3ae8044f4a58ecd70825f36ec"
424
            }
425
          },
426
          "metadata": {}
427
        },
428
        {
429
          "output_type": "display_data",
430
          "data": {
431
            "text/plain": [
432
              "Downloading data: 0.00B [00:00, ?B/s]"
433
            ],
434
            "application/vnd.jupyter.widget-view+json": {
435
              "version_major": 2,
436
              "version_minor": 0,
437
              "model_id": "e66a0c2552ff46b5a41cf8d803114b8f"
438
            }
439
          },
440
          "metadata": {}
441
        },
442
        {
443
          "output_type": "display_data",
444
          "data": {
445
            "text/plain": [
446
              "Generating train split:   0%|          | 0/3668 [00:00<?, ? examples/s]"
447
            ],
448
            "application/vnd.jupyter.widget-view+json": {
449
              "version_major": 2,
450
              "version_minor": 0,
451
              "model_id": "9ae4e6a6543e4da6bba06175aeef3ea1"
452
            }
453
          },
454
          "metadata": {}
455
        },
456
        {
457
          "output_type": "display_data",
458
          "data": {
459
            "text/plain": [
460
              "Generating validation split:   0%|          | 0/408 [00:00<?, ? examples/s]"
461
            ],
462
            "application/vnd.jupyter.widget-view+json": {
463
              "version_major": 2,
464
              "version_minor": 0,
465
              "model_id": "786b2430a42942f1aeae253861820dcb"
466
            }
467
          },
468
          "metadata": {}
469
        },
470
        {
471
          "output_type": "display_data",
472
          "data": {
473
            "text/plain": [
474
              "Generating test split:   0%|          | 0/1725 [00:00<?, ? examples/s]"
475
            ],
476
            "application/vnd.jupyter.widget-view+json": {
477
              "version_major": 2,
478
              "version_minor": 0,
479
              "model_id": "007f2f512694405c9245edd5e1f58551"
480
            }
481
          },
482
          "metadata": {}
483
        },
484
        {
485
          "output_type": "stream",
486
          "name": "stdout",
487
          "text": [
488
            "Dataset glue downloaded and prepared to /root/.cache/huggingface/datasets/glue/mrpc/1.0.0/dacbe3125aa31d7f70367a07a8a9e72a5a0bfeb5fc42e75c9db75b96da6053ad. Subsequent calls will reuse this data.\n"
489
          ]
490
        },
491
        {
492
          "output_type": "display_data",
493
          "data": {
494
            "text/plain": [
495
              "  0%|          | 0/3 [00:00<?, ?it/s]"
496
            ],
497
            "application/vnd.jupyter.widget-view+json": {
498
              "version_major": 2,
499
              "version_minor": 0,
500
              "model_id": "6b937f0053b64c67af74d44bcb6e51b7"
501
            }
502
          },
503
          "metadata": {}
504
        },
505
        {
506
          "output_type": "display_data",
507
          "data": {
508
            "text/plain": [
509
              "Downloading builder script:   0%|          | 0.00/5.75k [00:00<?, ?B/s]"
510
            ],
511
            "application/vnd.jupyter.widget-view+json": {
512
              "version_major": 2,
513
              "version_minor": 0,
514
              "model_id": "75ee099566ca46eb8a75475246aaab01"
515
            }
516
          },
517
          "metadata": {}
518
        },
519
        {
520
          "output_type": "display_data",
521
          "data": {
522
            "text/plain": [
523
              "Map:   0%|          | 0/3668 [00:00<?, ? examples/s]"
524
            ],
525
            "application/vnd.jupyter.widget-view+json": {
526
              "version_major": 2,
527
              "version_minor": 0,
528
              "model_id": "a018f7c156584eb3833b6aba3710b3c0"
529
            }
530
          },
531
          "metadata": {}
532
        },
533
        {
534
          "output_type": "display_data",
535
          "data": {
536
            "text/plain": [
537
              "Map:   0%|          | 0/408 [00:00<?, ? examples/s]"
538
            ],
539
            "application/vnd.jupyter.widget-view+json": {
540
              "version_major": 2,
541
              "version_minor": 0,
542
              "model_id": "f871eeaa54cf451b8a2de64eed90d5b6"
543
            }
544
          },
545
          "metadata": {}
546
        },
547
        {
548
          "output_type": "display_data",
549
          "data": {
550
            "text/plain": [
551
              "Map:   0%|          | 0/1725 [00:00<?, ? examples/s]"
552
            ],
553
            "application/vnd.jupyter.widget-view+json": {
554
              "version_major": 2,
555
              "version_minor": 0,
556
              "model_id": "e41888b1dea140d18be25efc6d99d0c3"
557
            }
558
          },
559
          "metadata": {}
560
        }
561
      ],
562
      "source": [
563
        "if any(k in model_name_or_path for k in (\"gpt\", \"opt\", \"bloom\")):\n",
564
        "    padding_side = \"left\"\n",
565
        "else:\n",
566
        "    padding_side = \"right\"\n",
567
        "\n",
568
        "tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, padding_side=padding_side)\n",
569
        "if getattr(tokenizer, \"pad_token_id\") is None:\n",
570
        "    tokenizer.pad_token_id = tokenizer.eos_token_id\n",
571
        "\n",
572
        "datasets = load_dataset(\"glue\", task)\n",
573
        "metric = evaluate.load(\"glue\", task)\n",
574
        "\n",
575
        "\n",
576
        "def tokenize_function(examples):\n",
577
        "    # max_length=None => use the model max length (it's actually the default)\n",
578
        "    outputs = tokenizer(examples[\"sentence1\"], examples[\"sentence2\"], truncation=True, max_length=None)\n",
579
        "    return outputs\n",
580
        "\n",
581
        "\n",
582
        "tokenized_datasets = datasets.map(\n",
583
        "    tokenize_function,\n",
584
        "    batched=True,\n",
585
        "    remove_columns=[\"idx\", \"sentence1\", \"sentence2\"],\n",
586
        ")\n",
587
        "\n",
588
        "# We also rename the 'label' column to 'labels' which is the expected name for labels by the models of the\n",
589
        "# transformers library\n",
590
        "tokenized_datasets = tokenized_datasets.rename_column(\"label\", \"labels\")\n",
591
        "\n",
592
        "\n",
593
        "def collate_fn(examples):\n",
594
        "    return tokenizer.pad(examples, padding=\"longest\", return_tensors=\"pt\")\n",
595
        "\n",
596
        "\n",
597
        "# Instantiate dataloaders.\n",
598
        "train_dataloader = DataLoader(tokenized_datasets[\"train\"], shuffle=True, collate_fn=collate_fn, batch_size=batch_size)\n",
599
        "eval_dataloader = DataLoader(\n",
600
        "    tokenized_datasets[\"validation\"], shuffle=False, collate_fn=collate_fn, batch_size=batch_size\n",
601
        ")\n",
602
        "test_dataloader = DataLoader(tokenized_datasets[\"test\"], shuffle=False, collate_fn=collate_fn, batch_size=batch_size)"
603
      ]
604
    },
605
    {
606
      "cell_type": "code",
607
      "execution_count": 6,
608
      "id": "2ed5ac74",
609
      "metadata": {
610
        "colab": {
611
          "base_uri": "https://localhost:8080/",
612
          "height": 1000,
613
          "referenced_widgets": [
614
            "0cecb897c86c4892b94a1990ab08a926",
615
            "b8af0294819e4280ad41fa1c11006adf",
616
            "c7530d63b2f745e799713284abacbd2c",
617
            "12a1e302a69543c5bc0e0a66be008ca0",
618
            "9c372e9e9b20433faed8530ca0f4424c",
619
            "b07f26a21325493cac19113f1aa1ee96",
620
            "fbdf6c544fb54294903524a69384e773",
621
            "6c6f2223243b4a7485aef7fbbfe07668",
622
            "a93509d61ac94628a74bc0f98c0eec06",
623
            "3a8de0eb7db44647a734590b6b351b44",
624
            "64d8affd2e854a1c9043fec7ca8a2796"
625
          ]
626
        },
627
        "id": "2ed5ac74",
628
        "outputId": "18ea15ac-ed8d-4d80-b166-706681ee49ab"
629
      },
630
      "outputs": [
631
        {
632
          "output_type": "display_data",
633
          "data": {
634
            "text/plain": [
635
              "Downloading model.safetensors:   0%|          | 0.00/1.42G [00:00<?, ?B/s]"
636
            ],
637
            "application/vnd.jupyter.widget-view+json": {
638
              "version_major": 2,
639
              "version_minor": 0,
640
              "model_id": "0cecb897c86c4892b94a1990ab08a926"
641
            }
642
          },
643
          "metadata": {}
644
        },
645
        {
646
          "output_type": "stream",
647
          "name": "stderr",
648
          "text": [
649
            "Some weights of the model checkpoint at roberta-large were not used when initializing RobertaForSequenceClassification: ['lm_head.layer_norm.weight', 'lm_head.bias', 'lm_head.dense.bias', 'lm_head.dense.weight', 'lm_head.layer_norm.bias']\n",
650
            "- This IS expected if you are initializing RobertaForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\n",
651
            "- This IS NOT expected if you are initializing RobertaForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\n",
652
            "Some weights of RobertaForSequenceClassification were not initialized from the model checkpoint at roberta-large and are newly initialized: ['classifier.dense.weight', 'classifier.out_proj.weight', 'classifier.out_proj.bias', 'classifier.dense.bias']\n",
653
            "You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\n"
654
          ]
655
        },
656
        {
657
          "output_type": "stream",
658
          "name": "stdout",
659
          "text": [
660
            "trainable params: 2,275,332 || all params: 356,585,476 || trainable%: 0.6380888042675075\n"
661
          ]
662
        },
663
        {
664
          "output_type": "execute_result",
665
          "data": {
666
            "text/plain": [
667
              "PeftModelForSequenceClassification(\n",
668
              "  (base_model): IA3Model(\n",
669
              "    (model): RobertaForSequenceClassification(\n",
670
              "      (roberta): RobertaModel(\n",
671
              "        (embeddings): RobertaEmbeddings(\n",
672
              "          (word_embeddings): Embedding(50265, 1024, padding_idx=1)\n",
673
              "          (position_embeddings): Embedding(514, 1024, padding_idx=1)\n",
674
              "          (token_type_embeddings): Embedding(1, 1024)\n",
675
              "          (LayerNorm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True)\n",
676
              "          (dropout): Dropout(p=0.1, inplace=False)\n",
677
              "        )\n",
678
              "        (encoder): RobertaEncoder(\n",
679
              "          (layer): ModuleList(\n",
680
              "            (0-23): 24 x RobertaLayer(\n",
681
              "              (attention): RobertaAttention(\n",
682
              "                (self): RobertaSelfAttention(\n",
683
              "                  (query): Linear(in_features=1024, out_features=1024, bias=True)\n",
684
              "                  (key): Linear(\n",
685
              "                    in_features=1024, out_features=1024, bias=True\n",
686
              "                    (ia3_l): ParameterDict(  (default): Parameter containing: [torch.FloatTensor of size 1024x1])\n",
687
              "                  )\n",
688
              "                  (value): Linear(\n",
689
              "                    in_features=1024, out_features=1024, bias=True\n",
690
              "                    (ia3_l): ParameterDict(  (default): Parameter containing: [torch.FloatTensor of size 1024x1])\n",
691
              "                  )\n",
692
              "                  (dropout): Dropout(p=0.1, inplace=False)\n",
693
              "                )\n",
694
              "                (output): RobertaSelfOutput(\n",
695
              "                  (dense): Linear(\n",
696
              "                    in_features=1024, out_features=1024, bias=True\n",
697
              "                    (ia3_l): ParameterDict(  (default): Parameter containing: [torch.FloatTensor of size 1x1024])\n",
698
              "                  )\n",
699
              "                  (LayerNorm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True)\n",
700
              "                  (dropout): Dropout(p=0.1, inplace=False)\n",
701
              "                )\n",
702
              "              )\n",
703
              "              (intermediate): RobertaIntermediate(\n",
704
              "                (dense): Linear(in_features=1024, out_features=4096, bias=True)\n",
705
              "                (intermediate_act_fn): GELUActivation()\n",
706
              "              )\n",
707
              "              (output): RobertaOutput(\n",
708
              "                (dense): Linear(\n",
709
              "                  in_features=4096, out_features=1024, bias=True\n",
710
              "                  (ia3_l): ParameterDict(  (default): Parameter containing: [torch.FloatTensor of size 1x4096])\n",
711
              "                )\n",
712
              "                (LayerNorm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True)\n",
713
              "                (dropout): Dropout(p=0.1, inplace=False)\n",
714
              "              )\n",
715
              "            )\n",
716
              "          )\n",
717
              "        )\n",
718
              "      )\n",
719
              "      (classifier): ModulesToSaveWrapper(\n",
720
              "        (original_module): RobertaClassificationHead(\n",
721
              "          (dense): Linear(in_features=1024, out_features=1024, bias=True)\n",
722
              "          (dropout): Dropout(p=0.1, inplace=False)\n",
723
              "          (out_proj): Linear(in_features=1024, out_features=2, bias=True)\n",
724
              "        )\n",
725
              "        (modules_to_save): ModuleDict(\n",
726
              "          (default): RobertaClassificationHead(\n",
727
              "            (dense): Linear(in_features=1024, out_features=1024, bias=True)\n",
728
              "            (dropout): Dropout(p=0.1, inplace=False)\n",
729
              "            (out_proj): Linear(in_features=1024, out_features=2, bias=True)\n",
730
              "          )\n",
731
              "        )\n",
732
              "      )\n",
733
              "    )\n",
734
              "  )\n",
735
              ")"
736
            ]
737
          },
738
          "metadata": {},
739
          "execution_count": 6
740
        }
741
      ],
742
      "source": [
743
        "model = AutoModelForSequenceClassification.from_pretrained(model_name_or_path, return_dict=True)\n",
744
        "model = peft.get_peft_model(model, peft_config)\n",
745
        "model.print_trainable_parameters()\n",
746
        "model"
747
      ]
748
    },
749
    {
750
      "cell_type": "code",
751
      "execution_count": 7,
752
      "id": "0d2d0381",
753
      "metadata": {
754
        "id": "0d2d0381"
755
      },
756
      "outputs": [],
757
      "source": [
758
        "optimizer = AdamW(params=model.parameters(), lr=lr)\n",
759
        "\n",
760
        "# Instantiate scheduler\n",
761
        "lr_scheduler = get_linear_schedule_with_warmup(\n",
762
        "    optimizer=optimizer,\n",
763
        "    num_warmup_steps=0.06 * (len(train_dataloader) * num_epochs),\n",
764
        "    num_training_steps=(len(train_dataloader) * num_epochs),\n",
765
        ")"
766
      ]
767
    },
768
    {
769
      "cell_type": "code",
770
      "execution_count": 8,
771
      "id": "fa0e73be",
772
      "metadata": {
773
        "colab": {
774
          "base_uri": "https://localhost:8080/"
775
        },
776
        "id": "fa0e73be",
777
        "outputId": "bb17c146-8acc-477d-8f9f-65b8be794abb"
778
      },
779
      "outputs": [
780
        {
781
          "output_type": "stream",
782
          "name": "stderr",
783
          "text": [
784
            "  0%|          | 0/459 [00:00<?, ?it/s]You're using a RobertaTokenizerFast tokenizer. Please note that with a fast tokenizer, using the `__call__` method is faster than using a method to encode the text followed by a call to the `pad` method to get a padded encoding.\n",
785
            "100%|██████████| 459/459 [01:41<00:00,  4.52it/s]\n",
786
            "100%|██████████| 51/51 [00:05<00:00,  8.89it/s]\n"
787
          ]
788
        },
789
        {
790
          "output_type": "stream",
791
          "name": "stdout",
792
          "text": [
793
            "epoch 0: {'accuracy': 0.7034313725490197, 'f1': 0.8212703101920238}\n"
794
          ]
795
        },
796
        {
797
          "output_type": "stream",
798
          "name": "stderr",
799
          "text": [
800
            "100%|██████████| 459/459 [01:45<00:00,  4.35it/s]\n",
801
            "100%|██████████| 51/51 [00:05<00:00,  8.66it/s]\n"
802
          ]
803
        },
804
        {
805
          "output_type": "stream",
806
          "name": "stdout",
807
          "text": [
808
            "epoch 1: {'accuracy': 0.7794117647058824, 'f1': 0.8432055749128919}\n"
809
          ]
810
        },
811
        {
812
          "output_type": "stream",
813
          "name": "stderr",
814
          "text": [
815
            "100%|██████████| 459/459 [01:47<00:00,  4.26it/s]\n",
816
            "100%|██████████| 51/51 [00:05<00:00,  8.50it/s]\n"
817
          ]
818
        },
819
        {
820
          "output_type": "stream",
821
          "name": "stdout",
822
          "text": [
823
            "epoch 2: {'accuracy': 0.8406862745098039, 'f1': 0.8794063079777366}\n"
824
          ]
825
        },
826
        {
827
          "output_type": "stream",
828
          "name": "stderr",
829
          "text": [
830
            "100%|██████████| 459/459 [01:49<00:00,  4.20it/s]\n",
831
            "100%|██████████| 51/51 [00:06<00:00,  8.45it/s]\n"
832
          ]
833
        },
834
        {
835
          "output_type": "stream",
836
          "name": "stdout",
837
          "text": [
838
            "epoch 3: {'accuracy': 0.8480392156862745, 'f1': 0.8923611111111109}\n"
839
          ]
840
        },
841
        {
842
          "output_type": "stream",
843
          "name": "stderr",
844
          "text": [
845
            "100%|██████████| 459/459 [01:49<00:00,  4.18it/s]\n",
846
            "100%|██████████| 51/51 [00:06<00:00,  7.52it/s]\n"
847
          ]
848
        },
849
        {
850
          "output_type": "stream",
851
          "name": "stdout",
852
          "text": [
853
            "epoch 4: {'accuracy': 0.8529411764705882, 'f1': 0.894736842105263}\n"
854
          ]
855
        },
856
        {
857
          "output_type": "stream",
858
          "name": "stderr",
859
          "text": [
860
            "100%|██████████| 459/459 [01:49<00:00,  4.19it/s]\n",
861
            "100%|██████████| 51/51 [00:06<00:00,  8.47it/s]\n"
862
          ]
863
        },
864
        {
865
          "output_type": "stream",
866
          "name": "stdout",
867
          "text": [
868
            "epoch 5: {'accuracy': 0.8700980392156863, 'f1': 0.9090909090909091}\n"
869
          ]
870
        },
871
        {
872
          "output_type": "stream",
873
          "name": "stderr",
874
          "text": [
875
            "100%|██████████| 459/459 [01:49<00:00,  4.20it/s]\n",
876
            "100%|██████████| 51/51 [00:06<00:00,  8.41it/s]\n"
877
          ]
878
        },
879
        {
880
          "output_type": "stream",
881
          "name": "stdout",
882
          "text": [
883
            "epoch 6: {'accuracy': 0.875, 'f1': 0.9090909090909091}\n"
884
          ]
885
        },
886
        {
887
          "output_type": "stream",
888
          "name": "stderr",
889
          "text": [
890
            "100%|██████████| 459/459 [01:49<00:00,  4.21it/s]\n",
891
            "100%|██████████| 51/51 [00:06<00:00,  8.41it/s]\n"
892
          ]
893
        },
894
        {
895
          "output_type": "stream",
896
          "name": "stdout",
897
          "text": [
898
            "epoch 7: {'accuracy': 0.8676470588235294, 'f1': 0.9042553191489361}\n"
899
          ]
900
        },
901
        {
902
          "output_type": "stream",
903
          "name": "stderr",
904
          "text": [
905
            "100%|██████████| 459/459 [01:50<00:00,  4.17it/s]\n",
906
            "100%|██████████| 51/51 [00:06<00:00,  8.45it/s]\n"
907
          ]
908
        },
909
        {
910
          "output_type": "stream",
911
          "name": "stdout",
912
          "text": [
913
            "epoch 8: {'accuracy': 0.8700980392156863, 'f1': 0.9068541300527241}\n"
914
          ]
915
        },
916
        {
917
          "output_type": "stream",
918
          "name": "stderr",
919
          "text": [
920
            "100%|██████████| 459/459 [01:49<00:00,  4.20it/s]\n",
921
            "100%|██████████| 51/51 [00:06<00:00,  8.39it/s]\n"
922
          ]
923
        },
924
        {
925
          "output_type": "stream",
926
          "name": "stdout",
927
          "text": [
928
            "epoch 9: {'accuracy': 0.8676470588235294, 'f1': 0.9028776978417268}\n"
929
          ]
930
        },
931
        {
932
          "output_type": "stream",
933
          "name": "stderr",
934
          "text": [
935
            "100%|██████████| 459/459 [01:49<00:00,  4.20it/s]\n",
936
            "100%|██████████| 51/51 [00:06<00:00,  8.39it/s]\n"
937
          ]
938
        },
939
        {
940
          "output_type": "stream",
941
          "name": "stdout",
942
          "text": [
943
            "epoch 10: {'accuracy': 0.875, 'f1': 0.9100529100529101}\n"
944
          ]
945
        },
946
        {
947
          "output_type": "stream",
948
          "name": "stderr",
949
          "text": [
950
            "100%|██████████| 459/459 [01:49<00:00,  4.18it/s]\n",
951
            "100%|██████████| 51/51 [00:06<00:00,  8.41it/s]"
952
          ]
953
        },
954
        {
955
          "output_type": "stream",
956
          "name": "stdout",
957
          "text": [
958
            "epoch 11: {'accuracy': 0.8651960784313726, 'f1': 0.9012567324955117}\n"
959
          ]
960
        },
961
        {
962
          "output_type": "stream",
963
          "name": "stderr",
964
          "text": [
965
            "\n"
966
          ]
967
        }
968
      ],
969
      "source": [
970
        "model.to(device)\n",
971
        "for epoch in range(num_epochs):\n",
972
        "    model.train()\n",
973
        "    for step, batch in enumerate(tqdm(train_dataloader)):\n",
974
        "        batch.to(device)\n",
975
        "        outputs = model(**batch)\n",
976
        "        loss = outputs.loss\n",
977
        "        loss.backward()\n",
978
        "        optimizer.step()\n",
979
        "        lr_scheduler.step()\n",
980
        "        optimizer.zero_grad()\n",
981
        "\n",
982
        "    model.eval()\n",
983
        "    for step, batch in enumerate(tqdm(eval_dataloader)):\n",
984
        "        batch.to(device)\n",
985
        "        with torch.no_grad():\n",
986
        "            outputs = model(**batch)\n",
987
        "        predictions = outputs.logits.argmax(dim=-1)\n",
988
        "        predictions, references = predictions, batch[\"labels\"]\n",
989
        "        metric.add_batch(\n",
990
        "            predictions=predictions,\n",
991
        "            references=references,\n",
992
        "        )\n",
993
        "\n",
994
        "    eval_metric = metric.compute()\n",
995
        "    print(f\"epoch {epoch}:\", eval_metric)"
996
      ]
997
    },
998
    {
999
      "cell_type": "markdown",
1000
      "id": "f2b2caca",
1001
      "metadata": {
1002
        "id": "f2b2caca"
1003
      },
1004
      "source": [
1005
        "## Share adapters on the 🤗 Hub"
1006
      ]
1007
    },
1008
    {
1009
      "cell_type": "code",
1010
      "execution_count": null,
1011
      "id": "990b3c93",
1012
      "metadata": {
1013
        "colab": {
1014
          "referenced_widgets": [
1015
            "ad8979af959541b2a5a67f389884f057",
1016
            "1c020005cfe04de6bdd404ef41e0dfef"
1017
          ]
1018
        },
1019
        "id": "990b3c93",
1020
        "outputId": "0e2f13c2-0285-4f47-ab9a-d3aefea7ee05"
1021
      },
1022
      "outputs": [
1023
        {
1024
          "data": {
1025
            "application/vnd.jupyter.widget-view+json": {
1026
              "model_id": "ad8979af959541b2a5a67f389884f057",
1027
              "version_major": 2,
1028
              "version_minor": 0
1029
            },
1030
            "text/plain": [
1031
              "Upload 1 LFS files:   0%|          | 0/1 [00:00<?, ?it/s]"
1032
            ]
1033
          },
1034
          "metadata": {},
1035
          "output_type": "display_data"
1036
        },
1037
        {
1038
          "data": {
1039
            "application/vnd.jupyter.widget-view+json": {
1040
              "model_id": "1c020005cfe04de6bdd404ef41e0dfef",
1041
              "version_major": 2,
1042
              "version_minor": 0
1043
            },
1044
            "text/plain": [
1045
              "adapter_model.bin:   0%|          | 0.00/4.93M [00:00<?, ?B/s]"
1046
            ]
1047
          },
1048
          "metadata": {},
1049
          "output_type": "display_data"
1050
        },
1051
        {
1052
          "data": {
1053
            "text/plain": [
1054
              "CommitInfo(commit_url='https://huggingface.co/SumanthRH/roberta-large-peft-ia3/commit/9968de770e53ecd24e8e689a10144b7f55059a75', commit_message='Upload model', commit_description='', oid='9968de770e53ecd24e8e689a10144b7f55059a75', pr_url='https://huggingface.co/SumanthRH/roberta-large-peft-ia3/discussions/3', pr_revision='refs/pr/3', pr_num=3)"
1055
            ]
1056
          },
1057
          "execution_count": 25,
1058
          "metadata": {},
1059
          "output_type": "execute_result"
1060
        }
1061
      ],
1062
      "source": [
1063
        "model.push_to_hub(\"SumanthRH/roberta-large-peft-ia3\", use_auth_token=True)"
1064
      ]
1065
    },
1066
    {
1067
      "cell_type": "markdown",
1068
      "id": "9d140b26",
1069
      "metadata": {
1070
        "id": "9d140b26"
1071
      },
1072
      "source": [
1073
        "## Load adapters from the Hub\n",
1074
        "\n",
1075
        "You can also directly load adapters from the Hub using the commands below:"
1076
      ]
1077
    },
1078
    {
1079
      "cell_type": "code",
1080
      "execution_count": null,
1081
      "id": "4d55c87d",
1082
      "metadata": {
1083
        "colab": {
1084
          "referenced_widgets": [
1085
            "fd320d7b5d9a43df8abf044897e25cc7",
1086
            "0022338db24d43bba27d0e72773855e0"
1087
          ]
1088
        },
1089
        "id": "4d55c87d",
1090
        "outputId": "e6e232d7-22a3-4c85-c72e-90d8275c9762"
1091
      },
1092
      "outputs": [
1093
        {
1094
          "data": {
1095
            "application/vnd.jupyter.widget-view+json": {
1096
              "model_id": "fd320d7b5d9a43df8abf044897e25cc7",
1097
              "version_major": 2,
1098
              "version_minor": 0
1099
            },
1100
            "text/plain": [
1101
              "Downloading (…)/adapter_config.json:   0%|          | 0.00/345 [00:00<?, ?B/s]"
1102
            ]
1103
          },
1104
          "metadata": {},
1105
          "output_type": "display_data"
1106
        },
1107
        {
1108
          "name": "stderr",
1109
          "output_type": "stream",
1110
          "text": [
1111
            "Some weights of the model checkpoint at roberta-large were not used when initializing RobertaForSequenceClassification: ['lm_head.decoder.weight', 'roberta.pooler.dense.bias', 'roberta.pooler.dense.weight', 'lm_head.dense.weight', 'lm_head.layer_norm.bias', 'lm_head.layer_norm.weight', 'lm_head.dense.bias', 'lm_head.bias']\n",
1112
            "- This IS expected if you are initializing RobertaForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\n",
1113
            "- This IS NOT expected if you are initializing RobertaForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\n",
1114
            "Some weights of RobertaForSequenceClassification were not initialized from the model checkpoint at roberta-large and are newly initialized: ['classifier.dense.bias', 'classifier.dense.weight', 'classifier.out_proj.bias', 'classifier.out_proj.weight']\n",
1115
            "You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.\n"
1116
          ]
1117
        },
1118
        {
1119
          "data": {
1120
            "application/vnd.jupyter.widget-view+json": {
1121
              "model_id": "0022338db24d43bba27d0e72773855e0",
1122
              "version_major": 2,
1123
              "version_minor": 0
1124
            },
1125
            "text/plain": [
1126
              "Downloading adapter_model.bin:   0%|          | 0.00/4.93M [00:00<?, ?B/s]"
1127
            ]
1128
          },
1129
          "metadata": {},
1130
          "output_type": "display_data"
1131
        },
1132
        {
1133
          "name": "stderr",
1134
          "output_type": "stream",
1135
          "text": [
1136
            "  0%|                                                                                                                                                                  | 0/51 [00:00<?, ?it/s]You're using a RobertaTokenizerFast tokenizer. Please note that with a fast tokenizer, using the `__call__` method is faster than using a method to encode the text followed by a call to the `pad` method to get a padded encoding.\n",
1137
            "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 51/51 [00:04<00:00, 10.57it/s]"
1138
          ]
1139
        },
1140
        {
1141
          "name": "stdout",
1142
          "output_type": "stream",
1143
          "text": [
1144
            "{'accuracy': 0.8774509803921569, 'f1': 0.9116607773851589}\n"
1145
          ]
1146
        },
1147
        {
1148
          "name": "stderr",
1149
          "output_type": "stream",
1150
          "text": [
1151
            "\n"
1152
          ]
1153
        }
1154
      ],
1155
      "source": [
1156
        "import torch\n",
1157
        "from peft import PeftModel, PeftConfig\n",
1158
        "from transformers import AutoModelForCausalLM, AutoTokenizer\n",
1159
        "\n",
1160
        "peft_model_id = \"SumanthRH/roberta-large-peft-ia3\"\n",
1161
        "config = PeftConfig.from_pretrained(peft_model_id)\n",
1162
        "inference_model = AutoModelForSequenceClassification.from_pretrained(config.base_model_name_or_path)\n",
1163
        "tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)\n",
1164
        "\n",
1165
        "# Load the Lora model\n",
1166
        "inference_model = PeftModel.from_pretrained(inference_model, peft_model_id)\n",
1167
        "\n",
1168
        "inference_model.to(device)\n",
1169
        "inference_model.eval()\n",
1170
        "for step, batch in enumerate(tqdm(eval_dataloader)):\n",
1171
        "    batch.to(device)\n",
1172
        "    with torch.no_grad():\n",
1173
        "        outputs = inference_model(**batch)\n",
1174
        "    predictions = outputs.logits.argmax(dim=-1)\n",
1175
        "    predictions, references = predictions, batch[\"labels\"]\n",
1176
        "    metric.add_batch(\n",
1177
        "        predictions=predictions,\n",
1178
        "        references=references,\n",
1179
        "    )\n",
1180
        "\n",
1181
        "eval_metric = metric.compute()\n",
1182
        "print(eval_metric)"
1183
      ]
1184
    },
1185
    {
1186
      "cell_type": "code",
1187
      "execution_count": null,
1188
      "id": "27c43da1",
1189
      "metadata": {
1190
        "id": "27c43da1"
1191
      },
1192
      "outputs": [],
1193
      "source": []
1194
    }
1195
  ],
1196
  "metadata": {
1197
    "kernelspec": {
1198
      "display_name": "Python 3",
1199
      "name": "python3"
1200
    },
1201
    "language_info": {
1202
      "codemirror_mode": {
1203
        "name": "ipython",
1204
        "version": 3
1205
      },
1206
      "file_extension": ".py",
1207
      "mimetype": "text/x-python",
1208
      "name": "python",
1209
      "nbconvert_exporter": "python",
1210
      "pygments_lexer": "ipython3",
1211
      "version": "3.10.9"
1212
    },
1213
    "vscode": {
1214
      "interpreter": {
1215
        "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49"
1216
      }
1217
    },
1218
    "colab": {
1219
      "provenance": [],
1220
      "gpuType": "T4"
1221
    },
1222
    "accelerator": "GPU",
1223
    "widgets": {
1224
      "application/vnd.jupyter.widget-state+json": {
1225
        "6ea6ff70fa164264aef9efce9f921f10": {
1226
          "model_module": "@jupyter-widgets/controls",
1227
          "model_name": "HBoxModel",
1228
          "model_module_version": "1.5.0",
1229
          "state": {
1230
            "_dom_classes": [],
1231
            "_model_module": "@jupyter-widgets/controls",
1232
            "_model_module_version": "1.5.0",
1233
            "_model_name": "HBoxModel",
1234
            "_view_count": null,
1235
            "_view_module": "@jupyter-widgets/controls",
1236
            "_view_module_version": "1.5.0",
1237
            "_view_name": "HBoxView",
1238
            "box_style": "",
1239
            "children": [
1240
              "IPY_MODEL_ecc2102ede2d4c8b94ce66b247054c96",
1241
              "IPY_MODEL_e64ca48867434ca2944dcb2b1c70c02c",
1242
              "IPY_MODEL_7ac75048225f4a4bbedac97965cf9837"
1243
            ],
1244
            "layout": "IPY_MODEL_332971de5e894c8ca866c311cc6e180c"
1245
          }
1246
        },
1247
        "ecc2102ede2d4c8b94ce66b247054c96": {
1248
          "model_module": "@jupyter-widgets/controls",
1249
          "model_name": "HTMLModel",
1250
          "model_module_version": "1.5.0",
1251
          "state": {
1252
            "_dom_classes": [],
1253
            "_model_module": "@jupyter-widgets/controls",
1254
            "_model_module_version": "1.5.0",
1255
            "_model_name": "HTMLModel",
1256
            "_view_count": null,
1257
            "_view_module": "@jupyter-widgets/controls",
1258
            "_view_module_version": "1.5.0",
1259
            "_view_name": "HTMLView",
1260
            "description": "",
1261
            "description_tooltip": null,
1262
            "layout": "IPY_MODEL_bdf0999dfddc43ca8e04ceaac628064c",
1263
            "placeholder": "​",
1264
            "style": "IPY_MODEL_c289713b179641bd915b3c334208197a",
1265
            "value": "Downloading (…)lve/main/config.json: 100%"
1266
          }
1267
        },
1268
        "e64ca48867434ca2944dcb2b1c70c02c": {
1269
          "model_module": "@jupyter-widgets/controls",
1270
          "model_name": "FloatProgressModel",
1271
          "model_module_version": "1.5.0",
1272
          "state": {
1273
            "_dom_classes": [],
1274
            "_model_module": "@jupyter-widgets/controls",
1275
            "_model_module_version": "1.5.0",
1276
            "_model_name": "FloatProgressModel",
1277
            "_view_count": null,
1278
            "_view_module": "@jupyter-widgets/controls",
1279
            "_view_module_version": "1.5.0",
1280
            "_view_name": "ProgressView",
1281
            "bar_style": "success",
1282
            "description": "",
1283
            "description_tooltip": null,
1284
            "layout": "IPY_MODEL_e3d36dd4ddcb4287b8d8c942a26dc478",
1285
            "max": 482,
1286
            "min": 0,
1287
            "orientation": "horizontal",
1288
            "style": "IPY_MODEL_0b20fa2eb59749e1b564df70f2378984",
1289
            "value": 482
1290
          }
1291
        },
1292
        "7ac75048225f4a4bbedac97965cf9837": {
1293
          "model_module": "@jupyter-widgets/controls",
1294
          "model_name": "HTMLModel",
1295
          "model_module_version": "1.5.0",
1296
          "state": {
1297
            "_dom_classes": [],
1298
            "_model_module": "@jupyter-widgets/controls",
1299
            "_model_module_version": "1.5.0",
1300
            "_model_name": "HTMLModel",
1301
            "_view_count": null,
1302
            "_view_module": "@jupyter-widgets/controls",
1303
            "_view_module_version": "1.5.0",
1304
            "_view_name": "HTMLView",
1305
            "description": "",
1306
            "description_tooltip": null,
1307
            "layout": "IPY_MODEL_d8e645f1697d46e0ac23f70e14498fab",
1308
            "placeholder": "​",
1309
            "style": "IPY_MODEL_8dc1453856d549c4a1a688818447dd59",
1310
            "value": " 482/482 [00:00&lt;00:00, 11.9kB/s]"
1311
          }
1312
        },
1313
        "332971de5e894c8ca866c311cc6e180c": {
1314
          "model_module": "@jupyter-widgets/base",
1315
          "model_name": "LayoutModel",
1316
          "model_module_version": "1.2.0",
1317
          "state": {
1318
            "_model_module": "@jupyter-widgets/base",
1319
            "_model_module_version": "1.2.0",
1320
            "_model_name": "LayoutModel",
1321
            "_view_count": null,
1322
            "_view_module": "@jupyter-widgets/base",
1323
            "_view_module_version": "1.2.0",
1324
            "_view_name": "LayoutView",
1325
            "align_content": null,
1326
            "align_items": null,
1327
            "align_self": null,
1328
            "border": null,
1329
            "bottom": null,
1330
            "display": null,
1331
            "flex": null,
1332
            "flex_flow": null,
1333
            "grid_area": null,
1334
            "grid_auto_columns": null,
1335
            "grid_auto_flow": null,
1336
            "grid_auto_rows": null,
1337
            "grid_column": null,
1338
            "grid_gap": null,
1339
            "grid_row": null,
1340
            "grid_template_areas": null,
1341
            "grid_template_columns": null,
1342
            "grid_template_rows": null,
1343
            "height": null,
1344
            "justify_content": null,
1345
            "justify_items": null,
1346
            "left": null,
1347
            "margin": null,
1348
            "max_height": null,
1349
            "max_width": null,
1350
            "min_height": null,
1351
            "min_width": null,
1352
            "object_fit": null,
1353
            "object_position": null,
1354
            "order": null,
1355
            "overflow": null,
1356
            "overflow_x": null,
1357
            "overflow_y": null,
1358
            "padding": null,
1359
            "right": null,
1360
            "top": null,
1361
            "visibility": null,
1362
            "width": null
1363
          }
1364
        },
1365
        "bdf0999dfddc43ca8e04ceaac628064c": {
1366
          "model_module": "@jupyter-widgets/base",
1367
          "model_name": "LayoutModel",
1368
          "model_module_version": "1.2.0",
1369
          "state": {
1370
            "_model_module": "@jupyter-widgets/base",
1371
            "_model_module_version": "1.2.0",
1372
            "_model_name": "LayoutModel",
1373
            "_view_count": null,
1374
            "_view_module": "@jupyter-widgets/base",
1375
            "_view_module_version": "1.2.0",
1376
            "_view_name": "LayoutView",
1377
            "align_content": null,
1378
            "align_items": null,
1379
            "align_self": null,
1380
            "border": null,
1381
            "bottom": null,
1382
            "display": null,
1383
            "flex": null,
1384
            "flex_flow": null,
1385
            "grid_area": null,
1386
            "grid_auto_columns": null,
1387
            "grid_auto_flow": null,
1388
            "grid_auto_rows": null,
1389
            "grid_column": null,
1390
            "grid_gap": null,
1391
            "grid_row": null,
1392
            "grid_template_areas": null,
1393
            "grid_template_columns": null,
1394
            "grid_template_rows": null,
1395
            "height": null,
1396
            "justify_content": null,
1397
            "justify_items": null,
1398
            "left": null,
1399
            "margin": null,
1400
            "max_height": null,
1401
            "max_width": null,
1402
            "min_height": null,
1403
            "min_width": null,
1404
            "object_fit": null,
1405
            "object_position": null,
1406
            "order": null,
1407
            "overflow": null,
1408
            "overflow_x": null,
1409
            "overflow_y": null,
1410
            "padding": null,
1411
            "right": null,
1412
            "top": null,
1413
            "visibility": null,
1414
            "width": null
1415
          }
1416
        },
1417
        "c289713b179641bd915b3c334208197a": {
1418
          "model_module": "@jupyter-widgets/controls",
1419
          "model_name": "DescriptionStyleModel",
1420
          "model_module_version": "1.5.0",
1421
          "state": {
1422
            "_model_module": "@jupyter-widgets/controls",
1423
            "_model_module_version": "1.5.0",
1424
            "_model_name": "DescriptionStyleModel",
1425
            "_view_count": null,
1426
            "_view_module": "@jupyter-widgets/base",
1427
            "_view_module_version": "1.2.0",
1428
            "_view_name": "StyleView",
1429
            "description_width": ""
1430
          }
1431
        },
1432
        "e3d36dd4ddcb4287b8d8c942a26dc478": {
1433
          "model_module": "@jupyter-widgets/base",
1434
          "model_name": "LayoutModel",
1435
          "model_module_version": "1.2.0",
1436
          "state": {
1437
            "_model_module": "@jupyter-widgets/base",
1438
            "_model_module_version": "1.2.0",
1439
            "_model_name": "LayoutModel",
1440
            "_view_count": null,
1441
            "_view_module": "@jupyter-widgets/base",
1442
            "_view_module_version": "1.2.0",
1443
            "_view_name": "LayoutView",
1444
            "align_content": null,
1445
            "align_items": null,
1446
            "align_self": null,
1447
            "border": null,
1448
            "bottom": null,
1449
            "display": null,
1450
            "flex": null,
1451
            "flex_flow": null,
1452
            "grid_area": null,
1453
            "grid_auto_columns": null,
1454
            "grid_auto_flow": null,
1455
            "grid_auto_rows": null,
1456
            "grid_column": null,
1457
            "grid_gap": null,
1458
            "grid_row": null,
1459
            "grid_template_areas": null,
1460
            "grid_template_columns": null,
1461
            "grid_template_rows": null,
1462
            "height": null,
1463
            "justify_content": null,
1464
            "justify_items": null,
1465
            "left": null,
1466
            "margin": null,
1467
            "max_height": null,
1468
            "max_width": null,
1469
            "min_height": null,
1470
            "min_width": null,
1471
            "object_fit": null,
1472
            "object_position": null,
1473
            "order": null,
1474
            "overflow": null,
1475
            "overflow_x": null,
1476
            "overflow_y": null,
1477
            "padding": null,
1478
            "right": null,
1479
            "top": null,
1480
            "visibility": null,
1481
            "width": null
1482
          }
1483
        },
1484
        "0b20fa2eb59749e1b564df70f2378984": {
1485
          "model_module": "@jupyter-widgets/controls",
1486
          "model_name": "ProgressStyleModel",
1487
          "model_module_version": "1.5.0",
1488
          "state": {
1489
            "_model_module": "@jupyter-widgets/controls",
1490
            "_model_module_version": "1.5.0",
1491
            "_model_name": "ProgressStyleModel",
1492
            "_view_count": null,
1493
            "_view_module": "@jupyter-widgets/base",
1494
            "_view_module_version": "1.2.0",
1495
            "_view_name": "StyleView",
1496
            "bar_color": null,
1497
            "description_width": ""
1498
          }
1499
        },
1500
        "d8e645f1697d46e0ac23f70e14498fab": {
1501
          "model_module": "@jupyter-widgets/base",
1502
          "model_name": "LayoutModel",
1503
          "model_module_version": "1.2.0",
1504
          "state": {
1505
            "_model_module": "@jupyter-widgets/base",
1506
            "_model_module_version": "1.2.0",
1507
            "_model_name": "LayoutModel",
1508
            "_view_count": null,
1509
            "_view_module": "@jupyter-widgets/base",
1510
            "_view_module_version": "1.2.0",
1511
            "_view_name": "LayoutView",
1512
            "align_content": null,
1513
            "align_items": null,
1514
            "align_self": null,
1515
            "border": null,
1516
            "bottom": null,
1517
            "display": null,
1518
            "flex": null,
1519
            "flex_flow": null,
1520
            "grid_area": null,
1521
            "grid_auto_columns": null,
1522
            "grid_auto_flow": null,
1523
            "grid_auto_rows": null,
1524
            "grid_column": null,
1525
            "grid_gap": null,
1526
            "grid_row": null,
1527
            "grid_template_areas": null,
1528
            "grid_template_columns": null,
1529
            "grid_template_rows": null,
1530
            "height": null,
1531
            "justify_content": null,
1532
            "justify_items": null,
1533
            "left": null,
1534
            "margin": null,
1535
            "max_height": null,
1536
            "max_width": null,
1537
            "min_height": null,
1538
            "min_width": null,
1539
            "object_fit": null,
1540
            "object_position": null,
1541
            "order": null,
1542
            "overflow": null,
1543
            "overflow_x": null,
1544
            "overflow_y": null,
1545
            "padding": null,
1546
            "right": null,
1547
            "top": null,
1548
            "visibility": null,
1549
            "width": null
1550
          }
1551
        },
1552
        "8dc1453856d549c4a1a688818447dd59": {
1553
          "model_module": "@jupyter-widgets/controls",
1554
          "model_name": "DescriptionStyleModel",
1555
          "model_module_version": "1.5.0",
1556
          "state": {
1557
            "_model_module": "@jupyter-widgets/controls",
1558
            "_model_module_version": "1.5.0",
1559
            "_model_name": "DescriptionStyleModel",
1560
            "_view_count": null,
1561
            "_view_module": "@jupyter-widgets/base",
1562
            "_view_module_version": "1.2.0",
1563
            "_view_name": "StyleView",
1564
            "description_width": ""
1565
          }
1566
        },
1567
        "d267c0cf26a8466d9938861ff5272a1e": {
1568
          "model_module": "@jupyter-widgets/controls",
1569
          "model_name": "HBoxModel",
1570
          "model_module_version": "1.5.0",
1571
          "state": {
1572
            "_dom_classes": [],
1573
            "_model_module": "@jupyter-widgets/controls",
1574
            "_model_module_version": "1.5.0",
1575
            "_model_name": "HBoxModel",
1576
            "_view_count": null,
1577
            "_view_module": "@jupyter-widgets/controls",
1578
            "_view_module_version": "1.5.0",
1579
            "_view_name": "HBoxView",
1580
            "box_style": "",
1581
            "children": [
1582
              "IPY_MODEL_561f61d1cec94f5abbff3f8746c3fd96",
1583
              "IPY_MODEL_a5c93fac02884914ae8e140e0c0d2a17",
1584
              "IPY_MODEL_96c4ecd7376c43ee9a4ba270851d6fff"
1585
            ],
1586
            "layout": "IPY_MODEL_5062d6f6feb34835afaf6d452900d514"
1587
          }
1588
        },
1589
        "561f61d1cec94f5abbff3f8746c3fd96": {
1590
          "model_module": "@jupyter-widgets/controls",
1591
          "model_name": "HTMLModel",
1592
          "model_module_version": "1.5.0",
1593
          "state": {
1594
            "_dom_classes": [],
1595
            "_model_module": "@jupyter-widgets/controls",
1596
            "_model_module_version": "1.5.0",
1597
            "_model_name": "HTMLModel",
1598
            "_view_count": null,
1599
            "_view_module": "@jupyter-widgets/controls",
1600
            "_view_module_version": "1.5.0",
1601
            "_view_name": "HTMLView",
1602
            "description": "",
1603
            "description_tooltip": null,
1604
            "layout": "IPY_MODEL_a05844fa4675494cb7bbe48f40f1aaac",
1605
            "placeholder": "​",
1606
            "style": "IPY_MODEL_b241da7afea94fc0a6b407a0a78a8355",
1607
            "value": "Downloading (…)olve/main/vocab.json: 100%"
1608
          }
1609
        },
1610
        "a5c93fac02884914ae8e140e0c0d2a17": {
1611
          "model_module": "@jupyter-widgets/controls",
1612
          "model_name": "FloatProgressModel",
1613
          "model_module_version": "1.5.0",
1614
          "state": {
1615
            "_dom_classes": [],
1616
            "_model_module": "@jupyter-widgets/controls",
1617
            "_model_module_version": "1.5.0",
1618
            "_model_name": "FloatProgressModel",
1619
            "_view_count": null,
1620
            "_view_module": "@jupyter-widgets/controls",
1621
            "_view_module_version": "1.5.0",
1622
            "_view_name": "ProgressView",
1623
            "bar_style": "success",
1624
            "description": "",
1625
            "description_tooltip": null,
1626
            "layout": "IPY_MODEL_74e056313e9e4a92bfaa22019ac1e58e",
1627
            "max": 898823,
1628
            "min": 0,
1629
            "orientation": "horizontal",
1630
            "style": "IPY_MODEL_938a5b44d90140e29ba33628a2215f2a",
1631
            "value": 898823
1632
          }
1633
        },
1634
        "96c4ecd7376c43ee9a4ba270851d6fff": {
1635
          "model_module": "@jupyter-widgets/controls",
1636
          "model_name": "HTMLModel",
1637
          "model_module_version": "1.5.0",
1638
          "state": {
1639
            "_dom_classes": [],
1640
            "_model_module": "@jupyter-widgets/controls",
1641
            "_model_module_version": "1.5.0",
1642
            "_model_name": "HTMLModel",
1643
            "_view_count": null,
1644
            "_view_module": "@jupyter-widgets/controls",
1645
            "_view_module_version": "1.5.0",
1646
            "_view_name": "HTMLView",
1647
            "description": "",
1648
            "description_tooltip": null,
1649
            "layout": "IPY_MODEL_1f27766bc2d941f6a1d03fc69a6026a3",
1650
            "placeholder": "​",
1651
            "style": "IPY_MODEL_1c5e43a201f0460f88b53739bc1eaa43",
1652
            "value": " 899k/899k [00:00&lt;00:00, 11.0MB/s]"
1653
          }
1654
        },
1655
        "5062d6f6feb34835afaf6d452900d514": {
1656
          "model_module": "@jupyter-widgets/base",
1657
          "model_name": "LayoutModel",
1658
          "model_module_version": "1.2.0",
1659
          "state": {
1660
            "_model_module": "@jupyter-widgets/base",
1661
            "_model_module_version": "1.2.0",
1662
            "_model_name": "LayoutModel",
1663
            "_view_count": null,
1664
            "_view_module": "@jupyter-widgets/base",
1665
            "_view_module_version": "1.2.0",
1666
            "_view_name": "LayoutView",
1667
            "align_content": null,
1668
            "align_items": null,
1669
            "align_self": null,
1670
            "border": null,
1671
            "bottom": null,
1672
            "display": null,
1673
            "flex": null,
1674
            "flex_flow": null,
1675
            "grid_area": null,
1676
            "grid_auto_columns": null,
1677
            "grid_auto_flow": null,
1678
            "grid_auto_rows": null,
1679
            "grid_column": null,
1680
            "grid_gap": null,
1681
            "grid_row": null,
1682
            "grid_template_areas": null,
1683
            "grid_template_columns": null,
1684
            "grid_template_rows": null,
1685
            "height": null,
1686
            "justify_content": null,
1687
            "justify_items": null,
1688
            "left": null,
1689
            "margin": null,
1690
            "max_height": null,
1691
            "max_width": null,
1692
            "min_height": null,
1693
            "min_width": null,
1694
            "object_fit": null,
1695
            "object_position": null,
1696
            "order": null,
1697
            "overflow": null,
1698
            "overflow_x": null,
1699
            "overflow_y": null,
1700
            "padding": null,
1701
            "right": null,
1702
            "top": null,
1703
            "visibility": null,
1704
            "width": null
1705
          }
1706
        },
1707
        "a05844fa4675494cb7bbe48f40f1aaac": {
1708
          "model_module": "@jupyter-widgets/base",
1709
          "model_name": "LayoutModel",
1710
          "model_module_version": "1.2.0",
1711
          "state": {
1712
            "_model_module": "@jupyter-widgets/base",
1713
            "_model_module_version": "1.2.0",
1714
            "_model_name": "LayoutModel",
1715
            "_view_count": null,
1716
            "_view_module": "@jupyter-widgets/base",
1717
            "_view_module_version": "1.2.0",
1718
            "_view_name": "LayoutView",
1719
            "align_content": null,
1720
            "align_items": null,
1721
            "align_self": null,
1722
            "border": null,
1723
            "bottom": null,
1724
            "display": null,
1725
            "flex": null,
1726
            "flex_flow": null,
1727
            "grid_area": null,
1728
            "grid_auto_columns": null,
1729
            "grid_auto_flow": null,
1730
            "grid_auto_rows": null,
1731
            "grid_column": null,
1732
            "grid_gap": null,
1733
            "grid_row": null,
1734
            "grid_template_areas": null,
1735
            "grid_template_columns": null,
1736
            "grid_template_rows": null,
1737
            "height": null,
1738
            "justify_content": null,
1739
            "justify_items": null,
1740
            "left": null,
1741
            "margin": null,
1742
            "max_height": null,
1743
            "max_width": null,
1744
            "min_height": null,
1745
            "min_width": null,
1746
            "object_fit": null,
1747
            "object_position": null,
1748
            "order": null,
1749
            "overflow": null,
1750
            "overflow_x": null,
1751
            "overflow_y": null,
1752
            "padding": null,
1753
            "right": null,
1754
            "top": null,
1755
            "visibility": null,
1756
            "width": null
1757
          }
1758
        },
1759
        "b241da7afea94fc0a6b407a0a78a8355": {
1760
          "model_module": "@jupyter-widgets/controls",
1761
          "model_name": "DescriptionStyleModel",
1762
          "model_module_version": "1.5.0",
1763
          "state": {
1764
            "_model_module": "@jupyter-widgets/controls",
1765
            "_model_module_version": "1.5.0",
1766
            "_model_name": "DescriptionStyleModel",
1767
            "_view_count": null,
1768
            "_view_module": "@jupyter-widgets/base",
1769
            "_view_module_version": "1.2.0",
1770
            "_view_name": "StyleView",
1771
            "description_width": ""
1772
          }
1773
        },
1774
        "74e056313e9e4a92bfaa22019ac1e58e": {
1775
          "model_module": "@jupyter-widgets/base",
1776
          "model_name": "LayoutModel",
1777
          "model_module_version": "1.2.0",
1778
          "state": {
1779
            "_model_module": "@jupyter-widgets/base",
1780
            "_model_module_version": "1.2.0",
1781
            "_model_name": "LayoutModel",
1782
            "_view_count": null,
1783
            "_view_module": "@jupyter-widgets/base",
1784
            "_view_module_version": "1.2.0",
1785
            "_view_name": "LayoutView",
1786
            "align_content": null,
1787
            "align_items": null,
1788
            "align_self": null,
1789
            "border": null,
1790
            "bottom": null,
1791
            "display": null,
1792
            "flex": null,
1793
            "flex_flow": null,
1794
            "grid_area": null,
1795
            "grid_auto_columns": null,
1796
            "grid_auto_flow": null,
1797
            "grid_auto_rows": null,
1798
            "grid_column": null,
1799
            "grid_gap": null,
1800
            "grid_row": null,
1801
            "grid_template_areas": null,
1802
            "grid_template_columns": null,
1803
            "grid_template_rows": null,
1804
            "height": null,
1805
            "justify_content": null,
1806
            "justify_items": null,
1807
            "left": null,
1808
            "margin": null,
1809
            "max_height": null,
1810
            "max_width": null,
1811
            "min_height": null,
1812
            "min_width": null,
1813
            "object_fit": null,
1814
            "object_position": null,
1815
            "order": null,
1816
            "overflow": null,
1817
            "overflow_x": null,
1818
            "overflow_y": null,
1819
            "padding": null,
1820
            "right": null,
1821
            "top": null,
1822
            "visibility": null,
1823
            "width": null
1824
          }
1825
        },
1826
        "938a5b44d90140e29ba33628a2215f2a": {
1827
          "model_module": "@jupyter-widgets/controls",
1828
          "model_name": "ProgressStyleModel",
1829
          "model_module_version": "1.5.0",
1830
          "state": {
1831
            "_model_module": "@jupyter-widgets/controls",
1832
            "_model_module_version": "1.5.0",
1833
            "_model_name": "ProgressStyleModel",
1834
            "_view_count": null,
1835
            "_view_module": "@jupyter-widgets/base",
1836
            "_view_module_version": "1.2.0",
1837
            "_view_name": "StyleView",
1838
            "bar_color": null,
1839
            "description_width": ""
1840
          }
1841
        },
1842
        "1f27766bc2d941f6a1d03fc69a6026a3": {
1843
          "model_module": "@jupyter-widgets/base",
1844
          "model_name": "LayoutModel",
1845
          "model_module_version": "1.2.0",
1846
          "state": {
1847
            "_model_module": "@jupyter-widgets/base",
1848
            "_model_module_version": "1.2.0",
1849
            "_model_name": "LayoutModel",
1850
            "_view_count": null,
1851
            "_view_module": "@jupyter-widgets/base",
1852
            "_view_module_version": "1.2.0",
1853
            "_view_name": "LayoutView",
1854
            "align_content": null,
1855
            "align_items": null,
1856
            "align_self": null,
1857
            "border": null,
1858
            "bottom": null,
1859
            "display": null,
1860
            "flex": null,
1861
            "flex_flow": null,
1862
            "grid_area": null,
1863
            "grid_auto_columns": null,
1864
            "grid_auto_flow": null,
1865
            "grid_auto_rows": null,
1866
            "grid_column": null,
1867
            "grid_gap": null,
1868
            "grid_row": null,
1869
            "grid_template_areas": null,
1870
            "grid_template_columns": null,
1871
            "grid_template_rows": null,
1872
            "height": null,
1873
            "justify_content": null,
1874
            "justify_items": null,
1875
            "left": null,
1876
            "margin": null,
1877
            "max_height": null,
1878
            "max_width": null,
1879
            "min_height": null,
1880
            "min_width": null,
1881
            "object_fit": null,
1882
            "object_position": null,
1883
            "order": null,
1884
            "overflow": null,
1885
            "overflow_x": null,
1886
            "overflow_y": null,
1887
            "padding": null,
1888
            "right": null,
1889
            "top": null,
1890
            "visibility": null,
1891
            "width": null
1892
          }
1893
        },
1894
        "1c5e43a201f0460f88b53739bc1eaa43": {
1895
          "model_module": "@jupyter-widgets/controls",
1896
          "model_name": "DescriptionStyleModel",
1897
          "model_module_version": "1.5.0",
1898
          "state": {
1899
            "_model_module": "@jupyter-widgets/controls",
1900
            "_model_module_version": "1.5.0",
1901
            "_model_name": "DescriptionStyleModel",
1902
            "_view_count": null,
1903
            "_view_module": "@jupyter-widgets/base",
1904
            "_view_module_version": "1.2.0",
1905
            "_view_name": "StyleView",
1906
            "description_width": ""
1907
          }
1908
        },
1909
        "24e236a4360e416a8e5c20d887274bcc": {
1910
          "model_module": "@jupyter-widgets/controls",
1911
          "model_name": "HBoxModel",
1912
          "model_module_version": "1.5.0",
1913
          "state": {
1914
            "_dom_classes": [],
1915
            "_model_module": "@jupyter-widgets/controls",
1916
            "_model_module_version": "1.5.0",
1917
            "_model_name": "HBoxModel",
1918
            "_view_count": null,
1919
            "_view_module": "@jupyter-widgets/controls",
1920
            "_view_module_version": "1.5.0",
1921
            "_view_name": "HBoxView",
1922
            "box_style": "",
1923
            "children": [
1924
              "IPY_MODEL_7011752f7e0a422883bf0f218f6941c3",
1925
              "IPY_MODEL_248fe45eee37449982520a890696e6d4",
1926
              "IPY_MODEL_5ec5d0d9191047608f61cb78563f7641"
1927
            ],
1928
            "layout": "IPY_MODEL_d7c2b00fd90147528b00a29552f29b44"
1929
          }
1930
        },
1931
        "7011752f7e0a422883bf0f218f6941c3": {
1932
          "model_module": "@jupyter-widgets/controls",
1933
          "model_name": "HTMLModel",
1934
          "model_module_version": "1.5.0",
1935
          "state": {
1936
            "_dom_classes": [],
1937
            "_model_module": "@jupyter-widgets/controls",
1938
            "_model_module_version": "1.5.0",
1939
            "_model_name": "HTMLModel",
1940
            "_view_count": null,
1941
            "_view_module": "@jupyter-widgets/controls",
1942
            "_view_module_version": "1.5.0",
1943
            "_view_name": "HTMLView",
1944
            "description": "",
1945
            "description_tooltip": null,
1946
            "layout": "IPY_MODEL_ea307bb7a9ad46a484330b1daf708169",
1947
            "placeholder": "​",
1948
            "style": "IPY_MODEL_27009ed667c242488773ce3fcc58360a",
1949
            "value": "Downloading (…)olve/main/merges.txt: 100%"
1950
          }
1951
        },
1952
        "248fe45eee37449982520a890696e6d4": {
1953
          "model_module": "@jupyter-widgets/controls",
1954
          "model_name": "FloatProgressModel",
1955
          "model_module_version": "1.5.0",
1956
          "state": {
1957
            "_dom_classes": [],
1958
            "_model_module": "@jupyter-widgets/controls",
1959
            "_model_module_version": "1.5.0",
1960
            "_model_name": "FloatProgressModel",
1961
            "_view_count": null,
1962
            "_view_module": "@jupyter-widgets/controls",
1963
            "_view_module_version": "1.5.0",
1964
            "_view_name": "ProgressView",
1965
            "bar_style": "success",
1966
            "description": "",
1967
            "description_tooltip": null,
1968
            "layout": "IPY_MODEL_faf0c550adc5402bbee71b027822ce9c",
1969
            "max": 456318,
1970
            "min": 0,
1971
            "orientation": "horizontal",
1972
            "style": "IPY_MODEL_9c57da41dfc04fe4a4437097285599bf",
1973
            "value": 456318
1974
          }
1975
        },
1976
        "5ec5d0d9191047608f61cb78563f7641": {
1977
          "model_module": "@jupyter-widgets/controls",
1978
          "model_name": "HTMLModel",
1979
          "model_module_version": "1.5.0",
1980
          "state": {
1981
            "_dom_classes": [],
1982
            "_model_module": "@jupyter-widgets/controls",
1983
            "_model_module_version": "1.5.0",
1984
            "_model_name": "HTMLModel",
1985
            "_view_count": null,
1986
            "_view_module": "@jupyter-widgets/controls",
1987
            "_view_module_version": "1.5.0",
1988
            "_view_name": "HTMLView",
1989
            "description": "",
1990
            "description_tooltip": null,
1991
            "layout": "IPY_MODEL_d4453448f8b04f0ea76c71887bd33a8c",
1992
            "placeholder": "​",
1993
            "style": "IPY_MODEL_ff5172169c794d40b6c433da642d54a9",
1994
            "value": " 456k/456k [00:00&lt;00:00, 6.31MB/s]"
1995
          }
1996
        },
1997
        "d7c2b00fd90147528b00a29552f29b44": {
1998
          "model_module": "@jupyter-widgets/base",
1999
          "model_name": "LayoutModel",
2000
          "model_module_version": "1.2.0",
2001
          "state": {
2002
            "_model_module": "@jupyter-widgets/base",
2003
            "_model_module_version": "1.2.0",
2004
            "_model_name": "LayoutModel",
2005
            "_view_count": null,
2006
            "_view_module": "@jupyter-widgets/base",
2007
            "_view_module_version": "1.2.0",
2008
            "_view_name": "LayoutView",
2009
            "align_content": null,
2010
            "align_items": null,
2011
            "align_self": null,
2012
            "border": null,
2013
            "bottom": null,
2014
            "display": null,
2015
            "flex": null,
2016
            "flex_flow": null,
2017
            "grid_area": null,
2018
            "grid_auto_columns": null,
2019
            "grid_auto_flow": null,
2020
            "grid_auto_rows": null,
2021
            "grid_column": null,
2022
            "grid_gap": null,
2023
            "grid_row": null,
2024
            "grid_template_areas": null,
2025
            "grid_template_columns": null,
2026
            "grid_template_rows": null,
2027
            "height": null,
2028
            "justify_content": null,
2029
            "justify_items": null,
2030
            "left": null,
2031
            "margin": null,
2032
            "max_height": null,
2033
            "max_width": null,
2034
            "min_height": null,
2035
            "min_width": null,
2036
            "object_fit": null,
2037
            "object_position": null,
2038
            "order": null,
2039
            "overflow": null,
2040
            "overflow_x": null,
2041
            "overflow_y": null,
2042
            "padding": null,
2043
            "right": null,
2044
            "top": null,
2045
            "visibility": null,
2046
            "width": null
2047
          }
2048
        },
2049
        "ea307bb7a9ad46a484330b1daf708169": {
2050
          "model_module": "@jupyter-widgets/base",
2051
          "model_name": "LayoutModel",
2052
          "model_module_version": "1.2.0",
2053
          "state": {
2054
            "_model_module": "@jupyter-widgets/base",
2055
            "_model_module_version": "1.2.0",
2056
            "_model_name": "LayoutModel",
2057
            "_view_count": null,
2058
            "_view_module": "@jupyter-widgets/base",
2059
            "_view_module_version": "1.2.0",
2060
            "_view_name": "LayoutView",
2061
            "align_content": null,
2062
            "align_items": null,
2063
            "align_self": null,
2064
            "border": null,
2065
            "bottom": null,
2066
            "display": null,
2067
            "flex": null,
2068
            "flex_flow": null,
2069
            "grid_area": null,
2070
            "grid_auto_columns": null,
2071
            "grid_auto_flow": null,
2072
            "grid_auto_rows": null,
2073
            "grid_column": null,
2074
            "grid_gap": null,
2075
            "grid_row": null,
2076
            "grid_template_areas": null,
2077
            "grid_template_columns": null,
2078
            "grid_template_rows": null,
2079
            "height": null,
2080
            "justify_content": null,
2081
            "justify_items": null,
2082
            "left": null,
2083
            "margin": null,
2084
            "max_height": null,
2085
            "max_width": null,
2086
            "min_height": null,
2087
            "min_width": null,
2088
            "object_fit": null,
2089
            "object_position": null,
2090
            "order": null,
2091
            "overflow": null,
2092
            "overflow_x": null,
2093
            "overflow_y": null,
2094
            "padding": null,
2095
            "right": null,
2096
            "top": null,
2097
            "visibility": null,
2098
            "width": null
2099
          }
2100
        },
2101
        "27009ed667c242488773ce3fcc58360a": {
2102
          "model_module": "@jupyter-widgets/controls",
2103
          "model_name": "DescriptionStyleModel",
2104
          "model_module_version": "1.5.0",
2105
          "state": {
2106
            "_model_module": "@jupyter-widgets/controls",
2107
            "_model_module_version": "1.5.0",
2108
            "_model_name": "DescriptionStyleModel",
2109
            "_view_count": null,
2110
            "_view_module": "@jupyter-widgets/base",
2111
            "_view_module_version": "1.2.0",
2112
            "_view_name": "StyleView",
2113
            "description_width": ""
2114
          }
2115
        },
2116
        "faf0c550adc5402bbee71b027822ce9c": {
2117
          "model_module": "@jupyter-widgets/base",
2118
          "model_name": "LayoutModel",
2119
          "model_module_version": "1.2.0",
2120
          "state": {
2121
            "_model_module": "@jupyter-widgets/base",
2122
            "_model_module_version": "1.2.0",
2123
            "_model_name": "LayoutModel",
2124
            "_view_count": null,
2125
            "_view_module": "@jupyter-widgets/base",
2126
            "_view_module_version": "1.2.0",
2127
            "_view_name": "LayoutView",
2128
            "align_content": null,
2129
            "align_items": null,
2130
            "align_self": null,
2131
            "border": null,
2132
            "bottom": null,
2133
            "display": null,
2134
            "flex": null,
2135
            "flex_flow": null,
2136
            "grid_area": null,
2137
            "grid_auto_columns": null,
2138
            "grid_auto_flow": null,
2139
            "grid_auto_rows": null,
2140
            "grid_column": null,
2141
            "grid_gap": null,
2142
            "grid_row": null,
2143
            "grid_template_areas": null,
2144
            "grid_template_columns": null,
2145
            "grid_template_rows": null,
2146
            "height": null,
2147
            "justify_content": null,
2148
            "justify_items": null,
2149
            "left": null,
2150
            "margin": null,
2151
            "max_height": null,
2152
            "max_width": null,
2153
            "min_height": null,
2154
            "min_width": null,
2155
            "object_fit": null,
2156
            "object_position": null,
2157
            "order": null,
2158
            "overflow": null,
2159
            "overflow_x": null,
2160
            "overflow_y": null,
2161
            "padding": null,
2162
            "right": null,
2163
            "top": null,
2164
            "visibility": null,
2165
            "width": null
2166
          }
2167
        },
2168
        "9c57da41dfc04fe4a4437097285599bf": {
2169
          "model_module": "@jupyter-widgets/controls",
2170
          "model_name": "ProgressStyleModel",
2171
          "model_module_version": "1.5.0",
2172
          "state": {
2173
            "_model_module": "@jupyter-widgets/controls",
2174
            "_model_module_version": "1.5.0",
2175
            "_model_name": "ProgressStyleModel",
2176
            "_view_count": null,
2177
            "_view_module": "@jupyter-widgets/base",
2178
            "_view_module_version": "1.2.0",
2179
            "_view_name": "StyleView",
2180
            "bar_color": null,
2181
            "description_width": ""
2182
          }
2183
        },
2184
        "d4453448f8b04f0ea76c71887bd33a8c": {
2185
          "model_module": "@jupyter-widgets/base",
2186
          "model_name": "LayoutModel",
2187
          "model_module_version": "1.2.0",
2188
          "state": {
2189
            "_model_module": "@jupyter-widgets/base",
2190
            "_model_module_version": "1.2.0",
2191
            "_model_name": "LayoutModel",
2192
            "_view_count": null,
2193
            "_view_module": "@jupyter-widgets/base",
2194
            "_view_module_version": "1.2.0",
2195
            "_view_name": "LayoutView",
2196
            "align_content": null,
2197
            "align_items": null,
2198
            "align_self": null,
2199
            "border": null,
2200
            "bottom": null,
2201
            "display": null,
2202
            "flex": null,
2203
            "flex_flow": null,
2204
            "grid_area": null,
2205
            "grid_auto_columns": null,
2206
            "grid_auto_flow": null,
2207
            "grid_auto_rows": null,
2208
            "grid_column": null,
2209
            "grid_gap": null,
2210
            "grid_row": null,
2211
            "grid_template_areas": null,
2212
            "grid_template_columns": null,
2213
            "grid_template_rows": null,
2214
            "height": null,
2215
            "justify_content": null,
2216
            "justify_items": null,
2217
            "left": null,
2218
            "margin": null,
2219
            "max_height": null,
2220
            "max_width": null,
2221
            "min_height": null,
2222
            "min_width": null,
2223
            "object_fit": null,
2224
            "object_position": null,
2225
            "order": null,
2226
            "overflow": null,
2227
            "overflow_x": null,
2228
            "overflow_y": null,
2229
            "padding": null,
2230
            "right": null,
2231
            "top": null,
2232
            "visibility": null,
2233
            "width": null
2234
          }
2235
        },
2236
        "ff5172169c794d40b6c433da642d54a9": {
2237
          "model_module": "@jupyter-widgets/controls",
2238
          "model_name": "DescriptionStyleModel",
2239
          "model_module_version": "1.5.0",
2240
          "state": {
2241
            "_model_module": "@jupyter-widgets/controls",
2242
            "_model_module_version": "1.5.0",
2243
            "_model_name": "DescriptionStyleModel",
2244
            "_view_count": null,
2245
            "_view_module": "@jupyter-widgets/base",
2246
            "_view_module_version": "1.2.0",
2247
            "_view_name": "StyleView",
2248
            "description_width": ""
2249
          }
2250
        },
2251
        "788a143aad46467789acf08762fbf39f": {
2252
          "model_module": "@jupyter-widgets/controls",
2253
          "model_name": "HBoxModel",
2254
          "model_module_version": "1.5.0",
2255
          "state": {
2256
            "_dom_classes": [],
2257
            "_model_module": "@jupyter-widgets/controls",
2258
            "_model_module_version": "1.5.0",
2259
            "_model_name": "HBoxModel",
2260
            "_view_count": null,
2261
            "_view_module": "@jupyter-widgets/controls",
2262
            "_view_module_version": "1.5.0",
2263
            "_view_name": "HBoxView",
2264
            "box_style": "",
2265
            "children": [
2266
              "IPY_MODEL_32ba35144ab34b0ebb7cfb75b86ccdd4",
2267
              "IPY_MODEL_3ef39b223ab74d788223970ec0da21e6",
2268
              "IPY_MODEL_be40292e613949a0ba1bfd1846cdab92"
2269
            ],
2270
            "layout": "IPY_MODEL_a6ab0e37d063407fa4adc11f2f0299da"
2271
          }
2272
        },
2273
        "32ba35144ab34b0ebb7cfb75b86ccdd4": {
2274
          "model_module": "@jupyter-widgets/controls",
2275
          "model_name": "HTMLModel",
2276
          "model_module_version": "1.5.0",
2277
          "state": {
2278
            "_dom_classes": [],
2279
            "_model_module": "@jupyter-widgets/controls",
2280
            "_model_module_version": "1.5.0",
2281
            "_model_name": "HTMLModel",
2282
            "_view_count": null,
2283
            "_view_module": "@jupyter-widgets/controls",
2284
            "_view_module_version": "1.5.0",
2285
            "_view_name": "HTMLView",
2286
            "description": "",
2287
            "description_tooltip": null,
2288
            "layout": "IPY_MODEL_71c3a5a515a949bfb2290612bfb2d05f",
2289
            "placeholder": "​",
2290
            "style": "IPY_MODEL_1232101b618d43f5889e4ad81fa24514",
2291
            "value": "Downloading (…)/main/tokenizer.json: 100%"
2292
          }
2293
        },
2294
        "3ef39b223ab74d788223970ec0da21e6": {
2295
          "model_module": "@jupyter-widgets/controls",
2296
          "model_name": "FloatProgressModel",
2297
          "model_module_version": "1.5.0",
2298
          "state": {
2299
            "_dom_classes": [],
2300
            "_model_module": "@jupyter-widgets/controls",
2301
            "_model_module_version": "1.5.0",
2302
            "_model_name": "FloatProgressModel",
2303
            "_view_count": null,
2304
            "_view_module": "@jupyter-widgets/controls",
2305
            "_view_module_version": "1.5.0",
2306
            "_view_name": "ProgressView",
2307
            "bar_style": "success",
2308
            "description": "",
2309
            "description_tooltip": null,
2310
            "layout": "IPY_MODEL_2204ca891c3940879abde0f55fbadf03",
2311
            "max": 1355863,
2312
            "min": 0,
2313
            "orientation": "horizontal",
2314
            "style": "IPY_MODEL_58f2da1b793b44b09cedb5e0a3a1ef02",
2315
            "value": 1355863
2316
          }
2317
        },
2318
        "be40292e613949a0ba1bfd1846cdab92": {
2319
          "model_module": "@jupyter-widgets/controls",
2320
          "model_name": "HTMLModel",
2321
          "model_module_version": "1.5.0",
2322
          "state": {
2323
            "_dom_classes": [],
2324
            "_model_module": "@jupyter-widgets/controls",
2325
            "_model_module_version": "1.5.0",
2326
            "_model_name": "HTMLModel",
2327
            "_view_count": null,
2328
            "_view_module": "@jupyter-widgets/controls",
2329
            "_view_module_version": "1.5.0",
2330
            "_view_name": "HTMLView",
2331
            "description": "",
2332
            "description_tooltip": null,
2333
            "layout": "IPY_MODEL_51ec9bdff1834e4f8390f0eaf7d4aeb8",
2334
            "placeholder": "​",
2335
            "style": "IPY_MODEL_71b4a798dc374a72817f6c118f2f05b8",
2336
            "value": " 1.36M/1.36M [00:00&lt;00:00, 17.8MB/s]"
2337
          }
2338
        },
2339
        "a6ab0e37d063407fa4adc11f2f0299da": {
2340
          "model_module": "@jupyter-widgets/base",
2341
          "model_name": "LayoutModel",
2342
          "model_module_version": "1.2.0",
2343
          "state": {
2344
            "_model_module": "@jupyter-widgets/base",
2345
            "_model_module_version": "1.2.0",
2346
            "_model_name": "LayoutModel",
2347
            "_view_count": null,
2348
            "_view_module": "@jupyter-widgets/base",
2349
            "_view_module_version": "1.2.0",
2350
            "_view_name": "LayoutView",
2351
            "align_content": null,
2352
            "align_items": null,
2353
            "align_self": null,
2354
            "border": null,
2355
            "bottom": null,
2356
            "display": null,
2357
            "flex": null,
2358
            "flex_flow": null,
2359
            "grid_area": null,
2360
            "grid_auto_columns": null,
2361
            "grid_auto_flow": null,
2362
            "grid_auto_rows": null,
2363
            "grid_column": null,
2364
            "grid_gap": null,
2365
            "grid_row": null,
2366
            "grid_template_areas": null,
2367
            "grid_template_columns": null,
2368
            "grid_template_rows": null,
2369
            "height": null,
2370
            "justify_content": null,
2371
            "justify_items": null,
2372
            "left": null,
2373
            "margin": null,
2374
            "max_height": null,
2375
            "max_width": null,
2376
            "min_height": null,
2377
            "min_width": null,
2378
            "object_fit": null,
2379
            "object_position": null,
2380
            "order": null,
2381
            "overflow": null,
2382
            "overflow_x": null,
2383
            "overflow_y": null,
2384
            "padding": null,
2385
            "right": null,
2386
            "top": null,
2387
            "visibility": null,
2388
            "width": null
2389
          }
2390
        },
2391
        "71c3a5a515a949bfb2290612bfb2d05f": {
2392
          "model_module": "@jupyter-widgets/base",
2393
          "model_name": "LayoutModel",
2394
          "model_module_version": "1.2.0",
2395
          "state": {
2396
            "_model_module": "@jupyter-widgets/base",
2397
            "_model_module_version": "1.2.0",
2398
            "_model_name": "LayoutModel",
2399
            "_view_count": null,
2400
            "_view_module": "@jupyter-widgets/base",
2401
            "_view_module_version": "1.2.0",
2402
            "_view_name": "LayoutView",
2403
            "align_content": null,
2404
            "align_items": null,
2405
            "align_self": null,
2406
            "border": null,
2407
            "bottom": null,
2408
            "display": null,
2409
            "flex": null,
2410
            "flex_flow": null,
2411
            "grid_area": null,
2412
            "grid_auto_columns": null,
2413
            "grid_auto_flow": null,
2414
            "grid_auto_rows": null,
2415
            "grid_column": null,
2416
            "grid_gap": null,
2417
            "grid_row": null,
2418
            "grid_template_areas": null,
2419
            "grid_template_columns": null,
2420
            "grid_template_rows": null,
2421
            "height": null,
2422
            "justify_content": null,
2423
            "justify_items": null,
2424
            "left": null,
2425
            "margin": null,
2426
            "max_height": null,
2427
            "max_width": null,
2428
            "min_height": null,
2429
            "min_width": null,
2430
            "object_fit": null,
2431
            "object_position": null,
2432
            "order": null,
2433
            "overflow": null,
2434
            "overflow_x": null,
2435
            "overflow_y": null,
2436
            "padding": null,
2437
            "right": null,
2438
            "top": null,
2439
            "visibility": null,
2440
            "width": null
2441
          }
2442
        },
2443
        "1232101b618d43f5889e4ad81fa24514": {
2444
          "model_module": "@jupyter-widgets/controls",
2445
          "model_name": "DescriptionStyleModel",
2446
          "model_module_version": "1.5.0",
2447
          "state": {
2448
            "_model_module": "@jupyter-widgets/controls",
2449
            "_model_module_version": "1.5.0",
2450
            "_model_name": "DescriptionStyleModel",
2451
            "_view_count": null,
2452
            "_view_module": "@jupyter-widgets/base",
2453
            "_view_module_version": "1.2.0",
2454
            "_view_name": "StyleView",
2455
            "description_width": ""
2456
          }
2457
        },
2458
        "2204ca891c3940879abde0f55fbadf03": {
2459
          "model_module": "@jupyter-widgets/base",
2460
          "model_name": "LayoutModel",
2461
          "model_module_version": "1.2.0",
2462
          "state": {
2463
            "_model_module": "@jupyter-widgets/base",
2464
            "_model_module_version": "1.2.0",
2465
            "_model_name": "LayoutModel",
2466
            "_view_count": null,
2467
            "_view_module": "@jupyter-widgets/base",
2468
            "_view_module_version": "1.2.0",
2469
            "_view_name": "LayoutView",
2470
            "align_content": null,
2471
            "align_items": null,
2472
            "align_self": null,
2473
            "border": null,
2474
            "bottom": null,
2475
            "display": null,
2476
            "flex": null,
2477
            "flex_flow": null,
2478
            "grid_area": null,
2479
            "grid_auto_columns": null,
2480
            "grid_auto_flow": null,
2481
            "grid_auto_rows": null,
2482
            "grid_column": null,
2483
            "grid_gap": null,
2484
            "grid_row": null,
2485
            "grid_template_areas": null,
2486
            "grid_template_columns": null,
2487
            "grid_template_rows": null,
2488
            "height": null,
2489
            "justify_content": null,
2490
            "justify_items": null,
2491
            "left": null,
2492
            "margin": null,
2493
            "max_height": null,
2494
            "max_width": null,
2495
            "min_height": null,
2496
            "min_width": null,
2497
            "object_fit": null,
2498
            "object_position": null,
2499
            "order": null,
2500
            "overflow": null,
2501
            "overflow_x": null,
2502
            "overflow_y": null,
2503
            "padding": null,
2504
            "right": null,
2505
            "top": null,
2506
            "visibility": null,
2507
            "width": null
2508
          }
2509
        },
2510
        "58f2da1b793b44b09cedb5e0a3a1ef02": {
2511
          "model_module": "@jupyter-widgets/controls",
2512
          "model_name": "ProgressStyleModel",
2513
          "model_module_version": "1.5.0",
2514
          "state": {
2515
            "_model_module": "@jupyter-widgets/controls",
2516
            "_model_module_version": "1.5.0",
2517
            "_model_name": "ProgressStyleModel",
2518
            "_view_count": null,
2519
            "_view_module": "@jupyter-widgets/base",
2520
            "_view_module_version": "1.2.0",
2521
            "_view_name": "StyleView",
2522
            "bar_color": null,
2523
            "description_width": ""
2524
          }
2525
        },
2526
        "51ec9bdff1834e4f8390f0eaf7d4aeb8": {
2527
          "model_module": "@jupyter-widgets/base",
2528
          "model_name": "LayoutModel",
2529
          "model_module_version": "1.2.0",
2530
          "state": {
2531
            "_model_module": "@jupyter-widgets/base",
2532
            "_model_module_version": "1.2.0",
2533
            "_model_name": "LayoutModel",
2534
            "_view_count": null,
2535
            "_view_module": "@jupyter-widgets/base",
2536
            "_view_module_version": "1.2.0",
2537
            "_view_name": "LayoutView",
2538
            "align_content": null,
2539
            "align_items": null,
2540
            "align_self": null,
2541
            "border": null,
2542
            "bottom": null,
2543
            "display": null,
2544
            "flex": null,
2545
            "flex_flow": null,
2546
            "grid_area": null,
2547
            "grid_auto_columns": null,
2548
            "grid_auto_flow": null,
2549
            "grid_auto_rows": null,
2550
            "grid_column": null,
2551
            "grid_gap": null,
2552
            "grid_row": null,
2553
            "grid_template_areas": null,
2554
            "grid_template_columns": null,
2555
            "grid_template_rows": null,
2556
            "height": null,
2557
            "justify_content": null,
2558
            "justify_items": null,
2559
            "left": null,
2560
            "margin": null,
2561
            "max_height": null,
2562
            "max_width": null,
2563
            "min_height": null,
2564
            "min_width": null,
2565
            "object_fit": null,
2566
            "object_position": null,
2567
            "order": null,
2568
            "overflow": null,
2569
            "overflow_x": null,
2570
            "overflow_y": null,
2571
            "padding": null,
2572
            "right": null,
2573
            "top": null,
2574
            "visibility": null,
2575
            "width": null
2576
          }
2577
        },
2578
        "71b4a798dc374a72817f6c118f2f05b8": {
2579
          "model_module": "@jupyter-widgets/controls",
2580
          "model_name": "DescriptionStyleModel",
2581
          "model_module_version": "1.5.0",
2582
          "state": {
2583
            "_model_module": "@jupyter-widgets/controls",
2584
            "_model_module_version": "1.5.0",
2585
            "_model_name": "DescriptionStyleModel",
2586
            "_view_count": null,
2587
            "_view_module": "@jupyter-widgets/base",
2588
            "_view_module_version": "1.2.0",
2589
            "_view_name": "StyleView",
2590
            "description_width": ""
2591
          }
2592
        },
2593
        "a439e5ecb0a040ca8188c6d74ff643a9": {
2594
          "model_module": "@jupyter-widgets/controls",
2595
          "model_name": "HBoxModel",
2596
          "model_module_version": "1.5.0",
2597
          "state": {
2598
            "_dom_classes": [],
2599
            "_model_module": "@jupyter-widgets/controls",
2600
            "_model_module_version": "1.5.0",
2601
            "_model_name": "HBoxModel",
2602
            "_view_count": null,
2603
            "_view_module": "@jupyter-widgets/controls",
2604
            "_view_module_version": "1.5.0",
2605
            "_view_name": "HBoxView",
2606
            "box_style": "",
2607
            "children": [
2608
              "IPY_MODEL_710f512e4a2b40cb85805b33a7dc42e4",
2609
              "IPY_MODEL_e5994b94b84143f4a06c49a45a078bd0",
2610
              "IPY_MODEL_e4f935e4e8e84320b2381aaf3493962c"
2611
            ],
2612
            "layout": "IPY_MODEL_44eb5aeeb0004f799e79d3ed51cf37d4"
2613
          }
2614
        },
2615
        "710f512e4a2b40cb85805b33a7dc42e4": {
2616
          "model_module": "@jupyter-widgets/controls",
2617
          "model_name": "HTMLModel",
2618
          "model_module_version": "1.5.0",
2619
          "state": {
2620
            "_dom_classes": [],
2621
            "_model_module": "@jupyter-widgets/controls",
2622
            "_model_module_version": "1.5.0",
2623
            "_model_name": "HTMLModel",
2624
            "_view_count": null,
2625
            "_view_module": "@jupyter-widgets/controls",
2626
            "_view_module_version": "1.5.0",
2627
            "_view_name": "HTMLView",
2628
            "description": "",
2629
            "description_tooltip": null,
2630
            "layout": "IPY_MODEL_0c488289ee494a8d99d1f02a13729382",
2631
            "placeholder": "​",
2632
            "style": "IPY_MODEL_49ccb14ddd874e798371494942725128",
2633
            "value": "Downloading builder script: 100%"
2634
          }
2635
        },
2636
        "e5994b94b84143f4a06c49a45a078bd0": {
2637
          "model_module": "@jupyter-widgets/controls",
2638
          "model_name": "FloatProgressModel",
2639
          "model_module_version": "1.5.0",
2640
          "state": {
2641
            "_dom_classes": [],
2642
            "_model_module": "@jupyter-widgets/controls",
2643
            "_model_module_version": "1.5.0",
2644
            "_model_name": "FloatProgressModel",
2645
            "_view_count": null,
2646
            "_view_module": "@jupyter-widgets/controls",
2647
            "_view_module_version": "1.5.0",
2648
            "_view_name": "ProgressView",
2649
            "bar_style": "success",
2650
            "description": "",
2651
            "description_tooltip": null,
2652
            "layout": "IPY_MODEL_015132b18da54a8f89a83cd9bf6fd17c",
2653
            "max": 28751,
2654
            "min": 0,
2655
            "orientation": "horizontal",
2656
            "style": "IPY_MODEL_39f26160766f48798761079527e14396",
2657
            "value": 28751
2658
          }
2659
        },
2660
        "e4f935e4e8e84320b2381aaf3493962c": {
2661
          "model_module": "@jupyter-widgets/controls",
2662
          "model_name": "HTMLModel",
2663
          "model_module_version": "1.5.0",
2664
          "state": {
2665
            "_dom_classes": [],
2666
            "_model_module": "@jupyter-widgets/controls",
2667
            "_model_module_version": "1.5.0",
2668
            "_model_name": "HTMLModel",
2669
            "_view_count": null,
2670
            "_view_module": "@jupyter-widgets/controls",
2671
            "_view_module_version": "1.5.0",
2672
            "_view_name": "HTMLView",
2673
            "description": "",
2674
            "description_tooltip": null,
2675
            "layout": "IPY_MODEL_5408dfdfc5624ff5b1c0b2e494dd4b35",
2676
            "placeholder": "​",
2677
            "style": "IPY_MODEL_9c50277ed18a424a9da98707cf726d29",
2678
            "value": " 28.8k/28.8k [00:00&lt;00:00, 1.29MB/s]"
2679
          }
2680
        },
2681
        "44eb5aeeb0004f799e79d3ed51cf37d4": {
2682
          "model_module": "@jupyter-widgets/base",
2683
          "model_name": "LayoutModel",
2684
          "model_module_version": "1.2.0",
2685
          "state": {
2686
            "_model_module": "@jupyter-widgets/base",
2687
            "_model_module_version": "1.2.0",
2688
            "_model_name": "LayoutModel",
2689
            "_view_count": null,
2690
            "_view_module": "@jupyter-widgets/base",
2691
            "_view_module_version": "1.2.0",
2692
            "_view_name": "LayoutView",
2693
            "align_content": null,
2694
            "align_items": null,
2695
            "align_self": null,
2696
            "border": null,
2697
            "bottom": null,
2698
            "display": null,
2699
            "flex": null,
2700
            "flex_flow": null,
2701
            "grid_area": null,
2702
            "grid_auto_columns": null,
2703
            "grid_auto_flow": null,
2704
            "grid_auto_rows": null,
2705
            "grid_column": null,
2706
            "grid_gap": null,
2707
            "grid_row": null,
2708
            "grid_template_areas": null,
2709
            "grid_template_columns": null,
2710
            "grid_template_rows": null,
2711
            "height": null,
2712
            "justify_content": null,
2713
            "justify_items": null,
2714
            "left": null,
2715
            "margin": null,
2716
            "max_height": null,
2717
            "max_width": null,
2718
            "min_height": null,
2719
            "min_width": null,
2720
            "object_fit": null,
2721
            "object_position": null,
2722
            "order": null,
2723
            "overflow": null,
2724
            "overflow_x": null,
2725
            "overflow_y": null,
2726
            "padding": null,
2727
            "right": null,
2728
            "top": null,
2729
            "visibility": null,
2730
            "width": null
2731
          }
2732
        },
2733
        "0c488289ee494a8d99d1f02a13729382": {
2734
          "model_module": "@jupyter-widgets/base",
2735
          "model_name": "LayoutModel",
2736
          "model_module_version": "1.2.0",
2737
          "state": {
2738
            "_model_module": "@jupyter-widgets/base",
2739
            "_model_module_version": "1.2.0",
2740
            "_model_name": "LayoutModel",
2741
            "_view_count": null,
2742
            "_view_module": "@jupyter-widgets/base",
2743
            "_view_module_version": "1.2.0",
2744
            "_view_name": "LayoutView",
2745
            "align_content": null,
2746
            "align_items": null,
2747
            "align_self": null,
2748
            "border": null,
2749
            "bottom": null,
2750
            "display": null,
2751
            "flex": null,
2752
            "flex_flow": null,
2753
            "grid_area": null,
2754
            "grid_auto_columns": null,
2755
            "grid_auto_flow": null,
2756
            "grid_auto_rows": null,
2757
            "grid_column": null,
2758
            "grid_gap": null,
2759
            "grid_row": null,
2760
            "grid_template_areas": null,
2761
            "grid_template_columns": null,
2762
            "grid_template_rows": null,
2763
            "height": null,
2764
            "justify_content": null,
2765
            "justify_items": null,
2766
            "left": null,
2767
            "margin": null,
2768
            "max_height": null,
2769
            "max_width": null,
2770
            "min_height": null,
2771
            "min_width": null,
2772
            "object_fit": null,
2773
            "object_position": null,
2774
            "order": null,
2775
            "overflow": null,
2776
            "overflow_x": null,
2777
            "overflow_y": null,
2778
            "padding": null,
2779
            "right": null,
2780
            "top": null,
2781
            "visibility": null,
2782
            "width": null
2783
          }
2784
        },
2785
        "49ccb14ddd874e798371494942725128": {
2786
          "model_module": "@jupyter-widgets/controls",
2787
          "model_name": "DescriptionStyleModel",
2788
          "model_module_version": "1.5.0",
2789
          "state": {
2790
            "_model_module": "@jupyter-widgets/controls",
2791
            "_model_module_version": "1.5.0",
2792
            "_model_name": "DescriptionStyleModel",
2793
            "_view_count": null,
2794
            "_view_module": "@jupyter-widgets/base",
2795
            "_view_module_version": "1.2.0",
2796
            "_view_name": "StyleView",
2797
            "description_width": ""
2798
          }
2799
        },
2800
        "015132b18da54a8f89a83cd9bf6fd17c": {
2801
          "model_module": "@jupyter-widgets/base",
2802
          "model_name": "LayoutModel",
2803
          "model_module_version": "1.2.0",
2804
          "state": {
2805
            "_model_module": "@jupyter-widgets/base",
2806
            "_model_module_version": "1.2.0",
2807
            "_model_name": "LayoutModel",
2808
            "_view_count": null,
2809
            "_view_module": "@jupyter-widgets/base",
2810
            "_view_module_version": "1.2.0",
2811
            "_view_name": "LayoutView",
2812
            "align_content": null,
2813
            "align_items": null,
2814
            "align_self": null,
2815
            "border": null,
2816
            "bottom": null,
2817
            "display": null,
2818
            "flex": null,
2819
            "flex_flow": null,
2820
            "grid_area": null,
2821
            "grid_auto_columns": null,
2822
            "grid_auto_flow": null,
2823
            "grid_auto_rows": null,
2824
            "grid_column": null,
2825
            "grid_gap": null,
2826
            "grid_row": null,
2827
            "grid_template_areas": null,
2828
            "grid_template_columns": null,
2829
            "grid_template_rows": null,
2830
            "height": null,
2831
            "justify_content": null,
2832
            "justify_items": null,
2833
            "left": null,
2834
            "margin": null,
2835
            "max_height": null,
2836
            "max_width": null,
2837
            "min_height": null,
2838
            "min_width": null,
2839
            "object_fit": null,
2840
            "object_position": null,
2841
            "order": null,
2842
            "overflow": null,
2843
            "overflow_x": null,
2844
            "overflow_y": null,
2845
            "padding": null,
2846
            "right": null,
2847
            "top": null,
2848
            "visibility": null,
2849
            "width": null
2850
          }
2851
        },
2852
        "39f26160766f48798761079527e14396": {
2853
          "model_module": "@jupyter-widgets/controls",
2854
          "model_name": "ProgressStyleModel",
2855
          "model_module_version": "1.5.0",
2856
          "state": {
2857
            "_model_module": "@jupyter-widgets/controls",
2858
            "_model_module_version": "1.5.0",
2859
            "_model_name": "ProgressStyleModel",
2860
            "_view_count": null,
2861
            "_view_module": "@jupyter-widgets/base",
2862
            "_view_module_version": "1.2.0",
2863
            "_view_name": "StyleView",
2864
            "bar_color": null,
2865
            "description_width": ""
2866
          }
2867
        },
2868
        "5408dfdfc5624ff5b1c0b2e494dd4b35": {
2869
          "model_module": "@jupyter-widgets/base",
2870
          "model_name": "LayoutModel",
2871
          "model_module_version": "1.2.0",
2872
          "state": {
2873
            "_model_module": "@jupyter-widgets/base",
2874
            "_model_module_version": "1.2.0",
2875
            "_model_name": "LayoutModel",
2876
            "_view_count": null,
2877
            "_view_module": "@jupyter-widgets/base",
2878
            "_view_module_version": "1.2.0",
2879
            "_view_name": "LayoutView",
2880
            "align_content": null,
2881
            "align_items": null,
2882
            "align_self": null,
2883
            "border": null,
2884
            "bottom": null,
2885
            "display": null,
2886
            "flex": null,
2887
            "flex_flow": null,
2888
            "grid_area": null,
2889
            "grid_auto_columns": null,
2890
            "grid_auto_flow": null,
2891
            "grid_auto_rows": null,
2892
            "grid_column": null,
2893
            "grid_gap": null,
2894
            "grid_row": null,
2895
            "grid_template_areas": null,
2896
            "grid_template_columns": null,
2897
            "grid_template_rows": null,
2898
            "height": null,
2899
            "justify_content": null,
2900
            "justify_items": null,
2901
            "left": null,
2902
            "margin": null,
2903
            "max_height": null,
2904
            "max_width": null,
2905
            "min_height": null,
2906
            "min_width": null,
2907
            "object_fit": null,
2908
            "object_position": null,
2909
            "order": null,
2910
            "overflow": null,
2911
            "overflow_x": null,
2912
            "overflow_y": null,
2913
            "padding": null,
2914
            "right": null,
2915
            "top": null,
2916
            "visibility": null,
2917
            "width": null
2918
          }
2919
        },
2920
        "9c50277ed18a424a9da98707cf726d29": {
2921
          "model_module": "@jupyter-widgets/controls",
2922
          "model_name": "DescriptionStyleModel",
2923
          "model_module_version": "1.5.0",
2924
          "state": {
2925
            "_model_module": "@jupyter-widgets/controls",
2926
            "_model_module_version": "1.5.0",
2927
            "_model_name": "DescriptionStyleModel",
2928
            "_view_count": null,
2929
            "_view_module": "@jupyter-widgets/base",
2930
            "_view_module_version": "1.2.0",
2931
            "_view_name": "StyleView",
2932
            "description_width": ""
2933
          }
2934
        },
2935
        "11ba7f922c58474d9cb8b8c7a22caddc": {
2936
          "model_module": "@jupyter-widgets/controls",
2937
          "model_name": "HBoxModel",
2938
          "model_module_version": "1.5.0",
2939
          "state": {
2940
            "_dom_classes": [],
2941
            "_model_module": "@jupyter-widgets/controls",
2942
            "_model_module_version": "1.5.0",
2943
            "_model_name": "HBoxModel",
2944
            "_view_count": null,
2945
            "_view_module": "@jupyter-widgets/controls",
2946
            "_view_module_version": "1.5.0",
2947
            "_view_name": "HBoxView",
2948
            "box_style": "",
2949
            "children": [
2950
              "IPY_MODEL_598fc42dfed04aadaeb38539dd259871",
2951
              "IPY_MODEL_fb05d1ece2ba4963bcbf99f89296c709",
2952
              "IPY_MODEL_e3fe73a6ffcf4d089911b4149b9b4512"
2953
            ],
2954
            "layout": "IPY_MODEL_45e1b59770f946dba06511f9b5d1ad23"
2955
          }
2956
        },
2957
        "598fc42dfed04aadaeb38539dd259871": {
2958
          "model_module": "@jupyter-widgets/controls",
2959
          "model_name": "HTMLModel",
2960
          "model_module_version": "1.5.0",
2961
          "state": {
2962
            "_dom_classes": [],
2963
            "_model_module": "@jupyter-widgets/controls",
2964
            "_model_module_version": "1.5.0",
2965
            "_model_name": "HTMLModel",
2966
            "_view_count": null,
2967
            "_view_module": "@jupyter-widgets/controls",
2968
            "_view_module_version": "1.5.0",
2969
            "_view_name": "HTMLView",
2970
            "description": "",
2971
            "description_tooltip": null,
2972
            "layout": "IPY_MODEL_2c512bc0a21a4f6684aa0593a969e6cb",
2973
            "placeholder": "​",
2974
            "style": "IPY_MODEL_376f00f38b46434e922c3f6f7dc4a85c",
2975
            "value": "Downloading metadata: 100%"
2976
          }
2977
        },
2978
        "fb05d1ece2ba4963bcbf99f89296c709": {
2979
          "model_module": "@jupyter-widgets/controls",
2980
          "model_name": "FloatProgressModel",
2981
          "model_module_version": "1.5.0",
2982
          "state": {
2983
            "_dom_classes": [],
2984
            "_model_module": "@jupyter-widgets/controls",
2985
            "_model_module_version": "1.5.0",
2986
            "_model_name": "FloatProgressModel",
2987
            "_view_count": null,
2988
            "_view_module": "@jupyter-widgets/controls",
2989
            "_view_module_version": "1.5.0",
2990
            "_view_name": "ProgressView",
2991
            "bar_style": "success",
2992
            "description": "",
2993
            "description_tooltip": null,
2994
            "layout": "IPY_MODEL_e815b0749289411eb680c56e4fd39dae",
2995
            "max": 28682,
2996
            "min": 0,
2997
            "orientation": "horizontal",
2998
            "style": "IPY_MODEL_33e9821903f84551a2e56c0586a5332b",
2999
            "value": 28682
3000
          }
3001
        },
3002
        "e3fe73a6ffcf4d089911b4149b9b4512": {
3003
          "model_module": "@jupyter-widgets/controls",
3004
          "model_name": "HTMLModel",
3005
          "model_module_version": "1.5.0",
3006
          "state": {
3007
            "_dom_classes": [],
3008
            "_model_module": "@jupyter-widgets/controls",
3009
            "_model_module_version": "1.5.0",
3010
            "_model_name": "HTMLModel",
3011
            "_view_count": null,
3012
            "_view_module": "@jupyter-widgets/controls",
3013
            "_view_module_version": "1.5.0",
3014
            "_view_name": "HTMLView",
3015
            "description": "",
3016
            "description_tooltip": null,
3017
            "layout": "IPY_MODEL_0b2e59615f80452cbe25dfd467099b84",
3018
            "placeholder": "​",
3019
            "style": "IPY_MODEL_45128b02652b4c20bf448db8495d76d2",
3020
            "value": " 28.7k/28.7k [00:00&lt;00:00, 1.12MB/s]"
3021
          }
3022
        },
3023
        "45e1b59770f946dba06511f9b5d1ad23": {
3024
          "model_module": "@jupyter-widgets/base",
3025
          "model_name": "LayoutModel",
3026
          "model_module_version": "1.2.0",
3027
          "state": {
3028
            "_model_module": "@jupyter-widgets/base",
3029
            "_model_module_version": "1.2.0",
3030
            "_model_name": "LayoutModel",
3031
            "_view_count": null,
3032
            "_view_module": "@jupyter-widgets/base",
3033
            "_view_module_version": "1.2.0",
3034
            "_view_name": "LayoutView",
3035
            "align_content": null,
3036
            "align_items": null,
3037
            "align_self": null,
3038
            "border": null,
3039
            "bottom": null,
3040
            "display": null,
3041
            "flex": null,
3042
            "flex_flow": null,
3043
            "grid_area": null,
3044
            "grid_auto_columns": null,
3045
            "grid_auto_flow": null,
3046
            "grid_auto_rows": null,
3047
            "grid_column": null,
3048
            "grid_gap": null,
3049
            "grid_row": null,
3050
            "grid_template_areas": null,
3051
            "grid_template_columns": null,
3052
            "grid_template_rows": null,
3053
            "height": null,
3054
            "justify_content": null,
3055
            "justify_items": null,
3056
            "left": null,
3057
            "margin": null,
3058
            "max_height": null,
3059
            "max_width": null,
3060
            "min_height": null,
3061
            "min_width": null,
3062
            "object_fit": null,
3063
            "object_position": null,
3064
            "order": null,
3065
            "overflow": null,
3066
            "overflow_x": null,
3067
            "overflow_y": null,
3068
            "padding": null,
3069
            "right": null,
3070
            "top": null,
3071
            "visibility": null,
3072
            "width": null
3073
          }
3074
        },
3075
        "2c512bc0a21a4f6684aa0593a969e6cb": {
3076
          "model_module": "@jupyter-widgets/base",
3077
          "model_name": "LayoutModel",
3078
          "model_module_version": "1.2.0",
3079
          "state": {
3080
            "_model_module": "@jupyter-widgets/base",
3081
            "_model_module_version": "1.2.0",
3082
            "_model_name": "LayoutModel",
3083
            "_view_count": null,
3084
            "_view_module": "@jupyter-widgets/base",
3085
            "_view_module_version": "1.2.0",
3086
            "_view_name": "LayoutView",
3087
            "align_content": null,
3088
            "align_items": null,
3089
            "align_self": null,
3090
            "border": null,
3091
            "bottom": null,
3092
            "display": null,
3093
            "flex": null,
3094
            "flex_flow": null,
3095
            "grid_area": null,
3096
            "grid_auto_columns": null,
3097
            "grid_auto_flow": null,
3098
            "grid_auto_rows": null,
3099
            "grid_column": null,
3100
            "grid_gap": null,
3101
            "grid_row": null,
3102
            "grid_template_areas": null,
3103
            "grid_template_columns": null,
3104
            "grid_template_rows": null,
3105
            "height": null,
3106
            "justify_content": null,
3107
            "justify_items": null,
3108
            "left": null,
3109
            "margin": null,
3110
            "max_height": null,
3111
            "max_width": null,
3112
            "min_height": null,
3113
            "min_width": null,
3114
            "object_fit": null,
3115
            "object_position": null,
3116
            "order": null,
3117
            "overflow": null,
3118
            "overflow_x": null,
3119
            "overflow_y": null,
3120
            "padding": null,
3121
            "right": null,
3122
            "top": null,
3123
            "visibility": null,
3124
            "width": null
3125
          }
3126
        },
3127
        "376f00f38b46434e922c3f6f7dc4a85c": {
3128
          "model_module": "@jupyter-widgets/controls",
3129
          "model_name": "DescriptionStyleModel",
3130
          "model_module_version": "1.5.0",
3131
          "state": {
3132
            "_model_module": "@jupyter-widgets/controls",
3133
            "_model_module_version": "1.5.0",
3134
            "_model_name": "DescriptionStyleModel",
3135
            "_view_count": null,
3136
            "_view_module": "@jupyter-widgets/base",
3137
            "_view_module_version": "1.2.0",
3138
            "_view_name": "StyleView",
3139
            "description_width": ""
3140
          }
3141
        },
3142
        "e815b0749289411eb680c56e4fd39dae": {
3143
          "model_module": "@jupyter-widgets/base",
3144
          "model_name": "LayoutModel",
3145
          "model_module_version": "1.2.0",
3146
          "state": {
3147
            "_model_module": "@jupyter-widgets/base",
3148
            "_model_module_version": "1.2.0",
3149
            "_model_name": "LayoutModel",
3150
            "_view_count": null,
3151
            "_view_module": "@jupyter-widgets/base",
3152
            "_view_module_version": "1.2.0",
3153
            "_view_name": "LayoutView",
3154
            "align_content": null,
3155
            "align_items": null,
3156
            "align_self": null,
3157
            "border": null,
3158
            "bottom": null,
3159
            "display": null,
3160
            "flex": null,
3161
            "flex_flow": null,
3162
            "grid_area": null,
3163
            "grid_auto_columns": null,
3164
            "grid_auto_flow": null,
3165
            "grid_auto_rows": null,
3166
            "grid_column": null,
3167
            "grid_gap": null,
3168
            "grid_row": null,
3169
            "grid_template_areas": null,
3170
            "grid_template_columns": null,
3171
            "grid_template_rows": null,
3172
            "height": null,
3173
            "justify_content": null,
3174
            "justify_items": null,
3175
            "left": null,
3176
            "margin": null,
3177
            "max_height": null,
3178
            "max_width": null,
3179
            "min_height": null,
3180
            "min_width": null,
3181
            "object_fit": null,
3182
            "object_position": null,
3183
            "order": null,
3184
            "overflow": null,
3185
            "overflow_x": null,
3186
            "overflow_y": null,
3187
            "padding": null,
3188
            "right": null,
3189
            "top": null,
3190
            "visibility": null,
3191
            "width": null
3192
          }
3193
        },
3194
        "33e9821903f84551a2e56c0586a5332b": {
3195
          "model_module": "@jupyter-widgets/controls",
3196
          "model_name": "ProgressStyleModel",
3197
          "model_module_version": "1.5.0",
3198
          "state": {
3199
            "_model_module": "@jupyter-widgets/controls",
3200
            "_model_module_version": "1.5.0",
3201
            "_model_name": "ProgressStyleModel",
3202
            "_view_count": null,
3203
            "_view_module": "@jupyter-widgets/base",
3204
            "_view_module_version": "1.2.0",
3205
            "_view_name": "StyleView",
3206
            "bar_color": null,
3207
            "description_width": ""
3208
          }
3209
        },
3210
        "0b2e59615f80452cbe25dfd467099b84": {
3211
          "model_module": "@jupyter-widgets/base",
3212
          "model_name": "LayoutModel",
3213
          "model_module_version": "1.2.0",
3214
          "state": {
3215
            "_model_module": "@jupyter-widgets/base",
3216
            "_model_module_version": "1.2.0",
3217
            "_model_name": "LayoutModel",
3218
            "_view_count": null,
3219
            "_view_module": "@jupyter-widgets/base",
3220
            "_view_module_version": "1.2.0",
3221
            "_view_name": "LayoutView",
3222
            "align_content": null,
3223
            "align_items": null,
3224
            "align_self": null,
3225
            "border": null,
3226
            "bottom": null,
3227
            "display": null,
3228
            "flex": null,
3229
            "flex_flow": null,
3230
            "grid_area": null,
3231
            "grid_auto_columns": null,
3232
            "grid_auto_flow": null,
3233
            "grid_auto_rows": null,
3234
            "grid_column": null,
3235
            "grid_gap": null,
3236
            "grid_row": null,
3237
            "grid_template_areas": null,
3238
            "grid_template_columns": null,
3239
            "grid_template_rows": null,
3240
            "height": null,
3241
            "justify_content": null,
3242
            "justify_items": null,
3243
            "left": null,
3244
            "margin": null,
3245
            "max_height": null,
3246
            "max_width": null,
3247
            "min_height": null,
3248
            "min_width": null,
3249
            "object_fit": null,
3250
            "object_position": null,
3251
            "order": null,
3252
            "overflow": null,
3253
            "overflow_x": null,
3254
            "overflow_y": null,
3255
            "padding": null,
3256
            "right": null,
3257
            "top": null,
3258
            "visibility": null,
3259
            "width": null
3260
          }
3261
        },
3262
        "45128b02652b4c20bf448db8495d76d2": {
3263
          "model_module": "@jupyter-widgets/controls",
3264
          "model_name": "DescriptionStyleModel",
3265
          "model_module_version": "1.5.0",
3266
          "state": {
3267
            "_model_module": "@jupyter-widgets/controls",
3268
            "_model_module_version": "1.5.0",
3269
            "_model_name": "DescriptionStyleModel",
3270
            "_view_count": null,
3271
            "_view_module": "@jupyter-widgets/base",
3272
            "_view_module_version": "1.2.0",
3273
            "_view_name": "StyleView",
3274
            "description_width": ""
3275
          }
3276
        },
3277
        "d1997b08e5284008afce56a5ed6347be": {
3278
          "model_module": "@jupyter-widgets/controls",
3279
          "model_name": "HBoxModel",
3280
          "model_module_version": "1.5.0",
3281
          "state": {
3282
            "_dom_classes": [],
3283
            "_model_module": "@jupyter-widgets/controls",
3284
            "_model_module_version": "1.5.0",
3285
            "_model_name": "HBoxModel",
3286
            "_view_count": null,
3287
            "_view_module": "@jupyter-widgets/controls",
3288
            "_view_module_version": "1.5.0",
3289
            "_view_name": "HBoxView",
3290
            "box_style": "",
3291
            "children": [
3292
              "IPY_MODEL_730111ee99b4470c81ab4ade07b30352",
3293
              "IPY_MODEL_562a55ffabef4d218c78c5dcc6665484",
3294
              "IPY_MODEL_59e1d01621f4404ca2102d00e2b01f87"
3295
            ],
3296
            "layout": "IPY_MODEL_1896a8f160ea45e5ac2a88970feecdb9"
3297
          }
3298
        },
3299
        "730111ee99b4470c81ab4ade07b30352": {
3300
          "model_module": "@jupyter-widgets/controls",
3301
          "model_name": "HTMLModel",
3302
          "model_module_version": "1.5.0",
3303
          "state": {
3304
            "_dom_classes": [],
3305
            "_model_module": "@jupyter-widgets/controls",
3306
            "_model_module_version": "1.5.0",
3307
            "_model_name": "HTMLModel",
3308
            "_view_count": null,
3309
            "_view_module": "@jupyter-widgets/controls",
3310
            "_view_module_version": "1.5.0",
3311
            "_view_name": "HTMLView",
3312
            "description": "",
3313
            "description_tooltip": null,
3314
            "layout": "IPY_MODEL_7d6d21774fec4eb0bab3bc2bfa2708d6",
3315
            "placeholder": "​",
3316
            "style": "IPY_MODEL_9882a67915f8475c9f4b8a5b15d64e50",
3317
            "value": "Downloading readme: 100%"
3318
          }
3319
        },
3320
        "562a55ffabef4d218c78c5dcc6665484": {
3321
          "model_module": "@jupyter-widgets/controls",
3322
          "model_name": "FloatProgressModel",
3323
          "model_module_version": "1.5.0",
3324
          "state": {
3325
            "_dom_classes": [],
3326
            "_model_module": "@jupyter-widgets/controls",
3327
            "_model_module_version": "1.5.0",
3328
            "_model_name": "FloatProgressModel",
3329
            "_view_count": null,
3330
            "_view_module": "@jupyter-widgets/controls",
3331
            "_view_module_version": "1.5.0",
3332
            "_view_name": "ProgressView",
3333
            "bar_style": "success",
3334
            "description": "",
3335
            "description_tooltip": null,
3336
            "layout": "IPY_MODEL_47ffc35023144c4fa6b93e73b7a2ee60",
3337
            "max": 27887,
3338
            "min": 0,
3339
            "orientation": "horizontal",
3340
            "style": "IPY_MODEL_16f8d52980dc41e89ed3bfb9172420a6",
3341
            "value": 27887
3342
          }
3343
        },
3344
        "59e1d01621f4404ca2102d00e2b01f87": {
3345
          "model_module": "@jupyter-widgets/controls",
3346
          "model_name": "HTMLModel",
3347
          "model_module_version": "1.5.0",
3348
          "state": {
3349
            "_dom_classes": [],
3350
            "_model_module": "@jupyter-widgets/controls",
3351
            "_model_module_version": "1.5.0",
3352
            "_model_name": "HTMLModel",
3353
            "_view_count": null,
3354
            "_view_module": "@jupyter-widgets/controls",
3355
            "_view_module_version": "1.5.0",
3356
            "_view_name": "HTMLView",
3357
            "description": "",
3358
            "description_tooltip": null,
3359
            "layout": "IPY_MODEL_2bc5432ab9464f7b9192aa1f5a26a1b2",
3360
            "placeholder": "​",
3361
            "style": "IPY_MODEL_80bcbdb92af34c9889b7d105affe34ba",
3362
            "value": " 27.9k/27.9k [00:00&lt;00:00, 1.51MB/s]"
3363
          }
3364
        },
3365
        "1896a8f160ea45e5ac2a88970feecdb9": {
3366
          "model_module": "@jupyter-widgets/base",
3367
          "model_name": "LayoutModel",
3368
          "model_module_version": "1.2.0",
3369
          "state": {
3370
            "_model_module": "@jupyter-widgets/base",
3371
            "_model_module_version": "1.2.0",
3372
            "_model_name": "LayoutModel",
3373
            "_view_count": null,
3374
            "_view_module": "@jupyter-widgets/base",
3375
            "_view_module_version": "1.2.0",
3376
            "_view_name": "LayoutView",
3377
            "align_content": null,
3378
            "align_items": null,
3379
            "align_self": null,
3380
            "border": null,
3381
            "bottom": null,
3382
            "display": null,
3383
            "flex": null,
3384
            "flex_flow": null,
3385
            "grid_area": null,
3386
            "grid_auto_columns": null,
3387
            "grid_auto_flow": null,
3388
            "grid_auto_rows": null,
3389
            "grid_column": null,
3390
            "grid_gap": null,
3391
            "grid_row": null,
3392
            "grid_template_areas": null,
3393
            "grid_template_columns": null,
3394
            "grid_template_rows": null,
3395
            "height": null,
3396
            "justify_content": null,
3397
            "justify_items": null,
3398
            "left": null,
3399
            "margin": null,
3400
            "max_height": null,
3401
            "max_width": null,
3402
            "min_height": null,
3403
            "min_width": null,
3404
            "object_fit": null,
3405
            "object_position": null,
3406
            "order": null,
3407
            "overflow": null,
3408
            "overflow_x": null,
3409
            "overflow_y": null,
3410
            "padding": null,
3411
            "right": null,
3412
            "top": null,
3413
            "visibility": null,
3414
            "width": null
3415
          }
3416
        },
3417
        "7d6d21774fec4eb0bab3bc2bfa2708d6": {
3418
          "model_module": "@jupyter-widgets/base",
3419
          "model_name": "LayoutModel",
3420
          "model_module_version": "1.2.0",
3421
          "state": {
3422
            "_model_module": "@jupyter-widgets/base",
3423
            "_model_module_version": "1.2.0",
3424
            "_model_name": "LayoutModel",
3425
            "_view_count": null,
3426
            "_view_module": "@jupyter-widgets/base",
3427
            "_view_module_version": "1.2.0",
3428
            "_view_name": "LayoutView",
3429
            "align_content": null,
3430
            "align_items": null,
3431
            "align_self": null,
3432
            "border": null,
3433
            "bottom": null,
3434
            "display": null,
3435
            "flex": null,
3436
            "flex_flow": null,
3437
            "grid_area": null,
3438
            "grid_auto_columns": null,
3439
            "grid_auto_flow": null,
3440
            "grid_auto_rows": null,
3441
            "grid_column": null,
3442
            "grid_gap": null,
3443
            "grid_row": null,
3444
            "grid_template_areas": null,
3445
            "grid_template_columns": null,
3446
            "grid_template_rows": null,
3447
            "height": null,
3448
            "justify_content": null,
3449
            "justify_items": null,
3450
            "left": null,
3451
            "margin": null,
3452
            "max_height": null,
3453
            "max_width": null,
3454
            "min_height": null,
3455
            "min_width": null,
3456
            "object_fit": null,
3457
            "object_position": null,
3458
            "order": null,
3459
            "overflow": null,
3460
            "overflow_x": null,
3461
            "overflow_y": null,
3462
            "padding": null,
3463
            "right": null,
3464
            "top": null,
3465
            "visibility": null,
3466
            "width": null
3467
          }
3468
        },
3469
        "9882a67915f8475c9f4b8a5b15d64e50": {
3470
          "model_module": "@jupyter-widgets/controls",
3471
          "model_name": "DescriptionStyleModel",
3472
          "model_module_version": "1.5.0",
3473
          "state": {
3474
            "_model_module": "@jupyter-widgets/controls",
3475
            "_model_module_version": "1.5.0",
3476
            "_model_name": "DescriptionStyleModel",
3477
            "_view_count": null,
3478
            "_view_module": "@jupyter-widgets/base",
3479
            "_view_module_version": "1.2.0",
3480
            "_view_name": "StyleView",
3481
            "description_width": ""
3482
          }
3483
        },
3484
        "47ffc35023144c4fa6b93e73b7a2ee60": {
3485
          "model_module": "@jupyter-widgets/base",
3486
          "model_name": "LayoutModel",
3487
          "model_module_version": "1.2.0",
3488
          "state": {
3489
            "_model_module": "@jupyter-widgets/base",
3490
            "_model_module_version": "1.2.0",
3491
            "_model_name": "LayoutModel",
3492
            "_view_count": null,
3493
            "_view_module": "@jupyter-widgets/base",
3494
            "_view_module_version": "1.2.0",
3495
            "_view_name": "LayoutView",
3496
            "align_content": null,
3497
            "align_items": null,
3498
            "align_self": null,
3499
            "border": null,
3500
            "bottom": null,
3501
            "display": null,
3502
            "flex": null,
3503
            "flex_flow": null,
3504
            "grid_area": null,
3505
            "grid_auto_columns": null,
3506
            "grid_auto_flow": null,
3507
            "grid_auto_rows": null,
3508
            "grid_column": null,
3509
            "grid_gap": null,
3510
            "grid_row": null,
3511
            "grid_template_areas": null,
3512
            "grid_template_columns": null,
3513
            "grid_template_rows": null,
3514
            "height": null,
3515
            "justify_content": null,
3516
            "justify_items": null,
3517
            "left": null,
3518
            "margin": null,
3519
            "max_height": null,
3520
            "max_width": null,
3521
            "min_height": null,
3522
            "min_width": null,
3523
            "object_fit": null,
3524
            "object_position": null,
3525
            "order": null,
3526
            "overflow": null,
3527
            "overflow_x": null,
3528
            "overflow_y": null,
3529
            "padding": null,
3530
            "right": null,
3531
            "top": null,
3532
            "visibility": null,
3533
            "width": null
3534
          }
3535
        },
3536
        "16f8d52980dc41e89ed3bfb9172420a6": {
3537
          "model_module": "@jupyter-widgets/controls",
3538
          "model_name": "ProgressStyleModel",
3539
          "model_module_version": "1.5.0",
3540
          "state": {
3541
            "_model_module": "@jupyter-widgets/controls",
3542
            "_model_module_version": "1.5.0",
3543
            "_model_name": "ProgressStyleModel",
3544
            "_view_count": null,
3545
            "_view_module": "@jupyter-widgets/base",
3546
            "_view_module_version": "1.2.0",
3547
            "_view_name": "StyleView",
3548
            "bar_color": null,
3549
            "description_width": ""
3550
          }
3551
        },
3552
        "2bc5432ab9464f7b9192aa1f5a26a1b2": {
3553
          "model_module": "@jupyter-widgets/base",
3554
          "model_name": "LayoutModel",
3555
          "model_module_version": "1.2.0",
3556
          "state": {
3557
            "_model_module": "@jupyter-widgets/base",
3558
            "_model_module_version": "1.2.0",
3559
            "_model_name": "LayoutModel",
3560
            "_view_count": null,
3561
            "_view_module": "@jupyter-widgets/base",
3562
            "_view_module_version": "1.2.0",
3563
            "_view_name": "LayoutView",
3564
            "align_content": null,
3565
            "align_items": null,
3566
            "align_self": null,
3567
            "border": null,
3568
            "bottom": null,
3569
            "display": null,
3570
            "flex": null,
3571
            "flex_flow": null,
3572
            "grid_area": null,
3573
            "grid_auto_columns": null,
3574
            "grid_auto_flow": null,
3575
            "grid_auto_rows": null,
3576
            "grid_column": null,
3577
            "grid_gap": null,
3578
            "grid_row": null,
3579
            "grid_template_areas": null,
3580
            "grid_template_columns": null,
3581
            "grid_template_rows": null,
3582
            "height": null,
3583
            "justify_content": null,
3584
            "justify_items": null,
3585
            "left": null,
3586
            "margin": null,
3587
            "max_height": null,
3588
            "max_width": null,
3589
            "min_height": null,
3590
            "min_width": null,
3591
            "object_fit": null,
3592
            "object_position": null,
3593
            "order": null,
3594
            "overflow": null,
3595
            "overflow_x": null,
3596
            "overflow_y": null,
3597
            "padding": null,
3598
            "right": null,
3599
            "top": null,
3600
            "visibility": null,
3601
            "width": null
3602
          }
3603
        },
3604
        "80bcbdb92af34c9889b7d105affe34ba": {
3605
          "model_module": "@jupyter-widgets/controls",
3606
          "model_name": "DescriptionStyleModel",
3607
          "model_module_version": "1.5.0",
3608
          "state": {
3609
            "_model_module": "@jupyter-widgets/controls",
3610
            "_model_module_version": "1.5.0",
3611
            "_model_name": "DescriptionStyleModel",
3612
            "_view_count": null,
3613
            "_view_module": "@jupyter-widgets/base",
3614
            "_view_module_version": "1.2.0",
3615
            "_view_name": "StyleView",
3616
            "description_width": ""
3617
          }
3618
        },
3619
        "6786c3895b594301b2a7d4ed2767cb35": {
3620
          "model_module": "@jupyter-widgets/controls",
3621
          "model_name": "HBoxModel",
3622
          "model_module_version": "1.5.0",
3623
          "state": {
3624
            "_dom_classes": [],
3625
            "_model_module": "@jupyter-widgets/controls",
3626
            "_model_module_version": "1.5.0",
3627
            "_model_name": "HBoxModel",
3628
            "_view_count": null,
3629
            "_view_module": "@jupyter-widgets/controls",
3630
            "_view_module_version": "1.5.0",
3631
            "_view_name": "HBoxView",
3632
            "box_style": "",
3633
            "children": [
3634
              "IPY_MODEL_bf35a5a5d9b840a18ef10938d23fce0c",
3635
              "IPY_MODEL_ad4872e198ee44f8b83323d891347ffa",
3636
              "IPY_MODEL_0f29f96aec7e44a1b97cda0fcbe17665"
3637
            ],
3638
            "layout": "IPY_MODEL_dbb4032fab4d49a5b250be57a4d51fb0"
3639
          }
3640
        },
3641
        "bf35a5a5d9b840a18ef10938d23fce0c": {
3642
          "model_module": "@jupyter-widgets/controls",
3643
          "model_name": "HTMLModel",
3644
          "model_module_version": "1.5.0",
3645
          "state": {
3646
            "_dom_classes": [],
3647
            "_model_module": "@jupyter-widgets/controls",
3648
            "_model_module_version": "1.5.0",
3649
            "_model_name": "HTMLModel",
3650
            "_view_count": null,
3651
            "_view_module": "@jupyter-widgets/controls",
3652
            "_view_module_version": "1.5.0",
3653
            "_view_name": "HTMLView",
3654
            "description": "",
3655
            "description_tooltip": null,
3656
            "layout": "IPY_MODEL_af185d9bedf64d54bc77f7f6e7c448f4",
3657
            "placeholder": "​",
3658
            "style": "IPY_MODEL_4d9d717d2226444094e9753fdc843849",
3659
            "value": "Downloading data files: 100%"
3660
          }
3661
        },
3662
        "ad4872e198ee44f8b83323d891347ffa": {
3663
          "model_module": "@jupyter-widgets/controls",
3664
          "model_name": "FloatProgressModel",
3665
          "model_module_version": "1.5.0",
3666
          "state": {
3667
            "_dom_classes": [],
3668
            "_model_module": "@jupyter-widgets/controls",
3669
            "_model_module_version": "1.5.0",
3670
            "_model_name": "FloatProgressModel",
3671
            "_view_count": null,
3672
            "_view_module": "@jupyter-widgets/controls",
3673
            "_view_module_version": "1.5.0",
3674
            "_view_name": "ProgressView",
3675
            "bar_style": "success",
3676
            "description": "",
3677
            "description_tooltip": null,
3678
            "layout": "IPY_MODEL_3d323bc6e1fd4091a0ed2ffd521f2ec7",
3679
            "max": 3,
3680
            "min": 0,
3681
            "orientation": "horizontal",
3682
            "style": "IPY_MODEL_2616b6102108476f8bf9e3d35b63494d",
3683
            "value": 3
3684
          }
3685
        },
3686
        "0f29f96aec7e44a1b97cda0fcbe17665": {
3687
          "model_module": "@jupyter-widgets/controls",
3688
          "model_name": "HTMLModel",
3689
          "model_module_version": "1.5.0",
3690
          "state": {
3691
            "_dom_classes": [],
3692
            "_model_module": "@jupyter-widgets/controls",
3693
            "_model_module_version": "1.5.0",
3694
            "_model_name": "HTMLModel",
3695
            "_view_count": null,
3696
            "_view_module": "@jupyter-widgets/controls",
3697
            "_view_module_version": "1.5.0",
3698
            "_view_name": "HTMLView",
3699
            "description": "",
3700
            "description_tooltip": null,
3701
            "layout": "IPY_MODEL_844ea1050893482785c1b68150f4ab20",
3702
            "placeholder": "​",
3703
            "style": "IPY_MODEL_92d023972a204222b59c12fc4b4d3bcf",
3704
            "value": " 3/3 [00:00&lt;00:00,  3.53it/s]"
3705
          }
3706
        },
3707
        "dbb4032fab4d49a5b250be57a4d51fb0": {
3708
          "model_module": "@jupyter-widgets/base",
3709
          "model_name": "LayoutModel",
3710
          "model_module_version": "1.2.0",
3711
          "state": {
3712
            "_model_module": "@jupyter-widgets/base",
3713
            "_model_module_version": "1.2.0",
3714
            "_model_name": "LayoutModel",
3715
            "_view_count": null,
3716
            "_view_module": "@jupyter-widgets/base",
3717
            "_view_module_version": "1.2.0",
3718
            "_view_name": "LayoutView",
3719
            "align_content": null,
3720
            "align_items": null,
3721
            "align_self": null,
3722
            "border": null,
3723
            "bottom": null,
3724
            "display": null,
3725
            "flex": null,
3726
            "flex_flow": null,
3727
            "grid_area": null,
3728
            "grid_auto_columns": null,
3729
            "grid_auto_flow": null,
3730
            "grid_auto_rows": null,
3731
            "grid_column": null,
3732
            "grid_gap": null,
3733
            "grid_row": null,
3734
            "grid_template_areas": null,
3735
            "grid_template_columns": null,
3736
            "grid_template_rows": null,
3737
            "height": null,
3738
            "justify_content": null,
3739
            "justify_items": null,
3740
            "left": null,
3741
            "margin": null,
3742
            "max_height": null,
3743
            "max_width": null,
3744
            "min_height": null,
3745
            "min_width": null,
3746
            "object_fit": null,
3747
            "object_position": null,
3748
            "order": null,
3749
            "overflow": null,
3750
            "overflow_x": null,
3751
            "overflow_y": null,
3752
            "padding": null,
3753
            "right": null,
3754
            "top": null,
3755
            "visibility": null,
3756
            "width": null
3757
          }
3758
        },
3759
        "af185d9bedf64d54bc77f7f6e7c448f4": {
3760
          "model_module": "@jupyter-widgets/base",
3761
          "model_name": "LayoutModel",
3762
          "model_module_version": "1.2.0",
3763
          "state": {
3764
            "_model_module": "@jupyter-widgets/base",
3765
            "_model_module_version": "1.2.0",
3766
            "_model_name": "LayoutModel",
3767
            "_view_count": null,
3768
            "_view_module": "@jupyter-widgets/base",
3769
            "_view_module_version": "1.2.0",
3770
            "_view_name": "LayoutView",
3771
            "align_content": null,
3772
            "align_items": null,
3773
            "align_self": null,
3774
            "border": null,
3775
            "bottom": null,
3776
            "display": null,
3777
            "flex": null,
3778
            "flex_flow": null,
3779
            "grid_area": null,
3780
            "grid_auto_columns": null,
3781
            "grid_auto_flow": null,
3782
            "grid_auto_rows": null,
3783
            "grid_column": null,
3784
            "grid_gap": null,
3785
            "grid_row": null,
3786
            "grid_template_areas": null,
3787
            "grid_template_columns": null,
3788
            "grid_template_rows": null,
3789
            "height": null,
3790
            "justify_content": null,
3791
            "justify_items": null,
3792
            "left": null,
3793
            "margin": null,
3794
            "max_height": null,
3795
            "max_width": null,
3796
            "min_height": null,
3797
            "min_width": null,
3798
            "object_fit": null,
3799
            "object_position": null,
3800
            "order": null,
3801
            "overflow": null,
3802
            "overflow_x": null,
3803
            "overflow_y": null,
3804
            "padding": null,
3805
            "right": null,
3806
            "top": null,
3807
            "visibility": null,
3808
            "width": null
3809
          }
3810
        },
3811
        "4d9d717d2226444094e9753fdc843849": {
3812
          "model_module": "@jupyter-widgets/controls",
3813
          "model_name": "DescriptionStyleModel",
3814
          "model_module_version": "1.5.0",
3815
          "state": {
3816
            "_model_module": "@jupyter-widgets/controls",
3817
            "_model_module_version": "1.5.0",
3818
            "_model_name": "DescriptionStyleModel",
3819
            "_view_count": null,
3820
            "_view_module": "@jupyter-widgets/base",
3821
            "_view_module_version": "1.2.0",
3822
            "_view_name": "StyleView",
3823
            "description_width": ""
3824
          }
3825
        },
3826
        "3d323bc6e1fd4091a0ed2ffd521f2ec7": {
3827
          "model_module": "@jupyter-widgets/base",
3828
          "model_name": "LayoutModel",
3829
          "model_module_version": "1.2.0",
3830
          "state": {
3831
            "_model_module": "@jupyter-widgets/base",
3832
            "_model_module_version": "1.2.0",
3833
            "_model_name": "LayoutModel",
3834
            "_view_count": null,
3835
            "_view_module": "@jupyter-widgets/base",
3836
            "_view_module_version": "1.2.0",
3837
            "_view_name": "LayoutView",
3838
            "align_content": null,
3839
            "align_items": null,
3840
            "align_self": null,
3841
            "border": null,
3842
            "bottom": null,
3843
            "display": null,
3844
            "flex": null,
3845
            "flex_flow": null,
3846
            "grid_area": null,
3847
            "grid_auto_columns": null,
3848
            "grid_auto_flow": null,
3849
            "grid_auto_rows": null,
3850
            "grid_column": null,
3851
            "grid_gap": null,
3852
            "grid_row": null,
3853
            "grid_template_areas": null,
3854
            "grid_template_columns": null,
3855
            "grid_template_rows": null,
3856
            "height": null,
3857
            "justify_content": null,
3858
            "justify_items": null,
3859
            "left": null,
3860
            "margin": null,
3861
            "max_height": null,
3862
            "max_width": null,
3863
            "min_height": null,
3864
            "min_width": null,
3865
            "object_fit": null,
3866
            "object_position": null,
3867
            "order": null,
3868
            "overflow": null,
3869
            "overflow_x": null,
3870
            "overflow_y": null,
3871
            "padding": null,
3872
            "right": null,
3873
            "top": null,
3874
            "visibility": null,
3875
            "width": null
3876
          }
3877
        },
3878
        "2616b6102108476f8bf9e3d35b63494d": {
3879
          "model_module": "@jupyter-widgets/controls",
3880
          "model_name": "ProgressStyleModel",
3881
          "model_module_version": "1.5.0",
3882
          "state": {
3883
            "_model_module": "@jupyter-widgets/controls",
3884
            "_model_module_version": "1.5.0",
3885
            "_model_name": "ProgressStyleModel",
3886
            "_view_count": null,
3887
            "_view_module": "@jupyter-widgets/base",
3888
            "_view_module_version": "1.2.0",
3889
            "_view_name": "StyleView",
3890
            "bar_color": null,
3891
            "description_width": ""
3892
          }
3893
        },
3894
        "844ea1050893482785c1b68150f4ab20": {
3895
          "model_module": "@jupyter-widgets/base",
3896
          "model_name": "LayoutModel",
3897
          "model_module_version": "1.2.0",
3898
          "state": {
3899
            "_model_module": "@jupyter-widgets/base",
3900
            "_model_module_version": "1.2.0",
3901
            "_model_name": "LayoutModel",
3902
            "_view_count": null,
3903
            "_view_module": "@jupyter-widgets/base",
3904
            "_view_module_version": "1.2.0",
3905
            "_view_name": "LayoutView",
3906
            "align_content": null,
3907
            "align_items": null,
3908
            "align_self": null,
3909
            "border": null,
3910
            "bottom": null,
3911
            "display": null,
3912
            "flex": null,
3913
            "flex_flow": null,
3914
            "grid_area": null,
3915
            "grid_auto_columns": null,
3916
            "grid_auto_flow": null,
3917
            "grid_auto_rows": null,
3918
            "grid_column": null,
3919
            "grid_gap": null,
3920
            "grid_row": null,
3921
            "grid_template_areas": null,
3922
            "grid_template_columns": null,
3923
            "grid_template_rows": null,
3924
            "height": null,
3925
            "justify_content": null,
3926
            "justify_items": null,
3927
            "left": null,
3928
            "margin": null,
3929
            "max_height": null,
3930
            "max_width": null,
3931
            "min_height": null,
3932
            "min_width": null,
3933
            "object_fit": null,
3934
            "object_position": null,
3935
            "order": null,
3936
            "overflow": null,
3937
            "overflow_x": null,
3938
            "overflow_y": null,
3939
            "padding": null,
3940
            "right": null,
3941
            "top": null,
3942
            "visibility": null,
3943
            "width": null
3944
          }
3945
        },
3946
        "92d023972a204222b59c12fc4b4d3bcf": {
3947
          "model_module": "@jupyter-widgets/controls",
3948
          "model_name": "DescriptionStyleModel",
3949
          "model_module_version": "1.5.0",
3950
          "state": {
3951
            "_model_module": "@jupyter-widgets/controls",
3952
            "_model_module_version": "1.5.0",
3953
            "_model_name": "DescriptionStyleModel",
3954
            "_view_count": null,
3955
            "_view_module": "@jupyter-widgets/base",
3956
            "_view_module_version": "1.2.0",
3957
            "_view_name": "StyleView",
3958
            "description_width": ""
3959
          }
3960
        },
3961
        "7900796766b946da886338653b495533": {
3962
          "model_module": "@jupyter-widgets/controls",
3963
          "model_name": "HBoxModel",
3964
          "model_module_version": "1.5.0",
3965
          "state": {
3966
            "_dom_classes": [],
3967
            "_model_module": "@jupyter-widgets/controls",
3968
            "_model_module_version": "1.5.0",
3969
            "_model_name": "HBoxModel",
3970
            "_view_count": null,
3971
            "_view_module": "@jupyter-widgets/controls",
3972
            "_view_module_version": "1.5.0",
3973
            "_view_name": "HBoxView",
3974
            "box_style": "",
3975
            "children": [
3976
              "IPY_MODEL_84b50ae864e0463d98efa792e149e712",
3977
              "IPY_MODEL_802dc985a31e4febb8eafa4682e242ec",
3978
              "IPY_MODEL_f31d9d6e2d3140eeb821153a7b69b90a"
3979
            ],
3980
            "layout": "IPY_MODEL_3f2d9eba845341da97fa1b957e72de5e"
3981
          }
3982
        },
3983
        "84b50ae864e0463d98efa792e149e712": {
3984
          "model_module": "@jupyter-widgets/controls",
3985
          "model_name": "HTMLModel",
3986
          "model_module_version": "1.5.0",
3987
          "state": {
3988
            "_dom_classes": [],
3989
            "_model_module": "@jupyter-widgets/controls",
3990
            "_model_module_version": "1.5.0",
3991
            "_model_name": "HTMLModel",
3992
            "_view_count": null,
3993
            "_view_module": "@jupyter-widgets/controls",
3994
            "_view_module_version": "1.5.0",
3995
            "_view_name": "HTMLView",
3996
            "description": "",
3997
            "description_tooltip": null,
3998
            "layout": "IPY_MODEL_d3638a2985fc4fdfbf239914dbc32fe8",
3999
            "placeholder": "​",
4000
            "style": "IPY_MODEL_a9d237f2f62e4a839abdec541715a5de",
4001
            "value": "Downloading data: "
4002
          }
4003
        },
4004
        "802dc985a31e4febb8eafa4682e242ec": {
4005
          "model_module": "@jupyter-widgets/controls",
4006
          "model_name": "FloatProgressModel",
4007
          "model_module_version": "1.5.0",
4008
          "state": {
4009
            "_dom_classes": [],
4010
            "_model_module": "@jupyter-widgets/controls",
4011
            "_model_module_version": "1.5.0",
4012
            "_model_name": "FloatProgressModel",
4013
            "_view_count": null,
4014
            "_view_module": "@jupyter-widgets/controls",
4015
            "_view_module_version": "1.5.0",
4016
            "_view_name": "ProgressView",
4017
            "bar_style": "success",
4018
            "description": "",
4019
            "description_tooltip": null,
4020
            "layout": "IPY_MODEL_b451310e94b74abda4e795a59cdda9ab",
4021
            "max": 1,
4022
            "min": 0,
4023
            "orientation": "horizontal",
4024
            "style": "IPY_MODEL_537c7d2f4260498a82132cb9fae5daa5",
4025
            "value": 1
4026
          }
4027
        },
4028
        "f31d9d6e2d3140eeb821153a7b69b90a": {
4029
          "model_module": "@jupyter-widgets/controls",
4030
          "model_name": "HTMLModel",
4031
          "model_module_version": "1.5.0",
4032
          "state": {
4033
            "_dom_classes": [],
4034
            "_model_module": "@jupyter-widgets/controls",
4035
            "_model_module_version": "1.5.0",
4036
            "_model_name": "HTMLModel",
4037
            "_view_count": null,
4038
            "_view_module": "@jupyter-widgets/controls",
4039
            "_view_module_version": "1.5.0",
4040
            "_view_name": "HTMLView",
4041
            "description": "",
4042
            "description_tooltip": null,
4043
            "layout": "IPY_MODEL_6f9efa5f778d4f029dca7b4d6817b4c4",
4044
            "placeholder": "​",
4045
            "style": "IPY_MODEL_d29a5f422214434c9be3886ce0d1e918",
4046
            "value": " 6.22k/? [00:00&lt;00:00, 101kB/s]"
4047
          }
4048
        },
4049
        "3f2d9eba845341da97fa1b957e72de5e": {
4050
          "model_module": "@jupyter-widgets/base",
4051
          "model_name": "LayoutModel",
4052
          "model_module_version": "1.2.0",
4053
          "state": {
4054
            "_model_module": "@jupyter-widgets/base",
4055
            "_model_module_version": "1.2.0",
4056
            "_model_name": "LayoutModel",
4057
            "_view_count": null,
4058
            "_view_module": "@jupyter-widgets/base",
4059
            "_view_module_version": "1.2.0",
4060
            "_view_name": "LayoutView",
4061
            "align_content": null,
4062
            "align_items": null,
4063
            "align_self": null,
4064
            "border": null,
4065
            "bottom": null,
4066
            "display": null,
4067
            "flex": null,
4068
            "flex_flow": null,
4069
            "grid_area": null,
4070
            "grid_auto_columns": null,
4071
            "grid_auto_flow": null,
4072
            "grid_auto_rows": null,
4073
            "grid_column": null,
4074
            "grid_gap": null,
4075
            "grid_row": null,
4076
            "grid_template_areas": null,
4077
            "grid_template_columns": null,
4078
            "grid_template_rows": null,
4079
            "height": null,
4080
            "justify_content": null,
4081
            "justify_items": null,
4082
            "left": null,
4083
            "margin": null,
4084
            "max_height": null,
4085
            "max_width": null,
4086
            "min_height": null,
4087
            "min_width": null,
4088
            "object_fit": null,
4089
            "object_position": null,
4090
            "order": null,
4091
            "overflow": null,
4092
            "overflow_x": null,
4093
            "overflow_y": null,
4094
            "padding": null,
4095
            "right": null,
4096
            "top": null,
4097
            "visibility": null,
4098
            "width": null
4099
          }
4100
        },
4101
        "d3638a2985fc4fdfbf239914dbc32fe8": {
4102
          "model_module": "@jupyter-widgets/base",
4103
          "model_name": "LayoutModel",
4104
          "model_module_version": "1.2.0",
4105
          "state": {
4106
            "_model_module": "@jupyter-widgets/base",
4107
            "_model_module_version": "1.2.0",
4108
            "_model_name": "LayoutModel",
4109
            "_view_count": null,
4110
            "_view_module": "@jupyter-widgets/base",
4111
            "_view_module_version": "1.2.0",
4112
            "_view_name": "LayoutView",
4113
            "align_content": null,
4114
            "align_items": null,
4115
            "align_self": null,
4116
            "border": null,
4117
            "bottom": null,
4118
            "display": null,
4119
            "flex": null,
4120
            "flex_flow": null,
4121
            "grid_area": null,
4122
            "grid_auto_columns": null,
4123
            "grid_auto_flow": null,
4124
            "grid_auto_rows": null,
4125
            "grid_column": null,
4126
            "grid_gap": null,
4127
            "grid_row": null,
4128
            "grid_template_areas": null,
4129
            "grid_template_columns": null,
4130
            "grid_template_rows": null,
4131
            "height": null,
4132
            "justify_content": null,
4133
            "justify_items": null,
4134
            "left": null,
4135
            "margin": null,
4136
            "max_height": null,
4137
            "max_width": null,
4138
            "min_height": null,
4139
            "min_width": null,
4140
            "object_fit": null,
4141
            "object_position": null,
4142
            "order": null,
4143
            "overflow": null,
4144
            "overflow_x": null,
4145
            "overflow_y": null,
4146
            "padding": null,
4147
            "right": null,
4148
            "top": null,
4149
            "visibility": null,
4150
            "width": null
4151
          }
4152
        },
4153
        "a9d237f2f62e4a839abdec541715a5de": {
4154
          "model_module": "@jupyter-widgets/controls",
4155
          "model_name": "DescriptionStyleModel",
4156
          "model_module_version": "1.5.0",
4157
          "state": {
4158
            "_model_module": "@jupyter-widgets/controls",
4159
            "_model_module_version": "1.5.0",
4160
            "_model_name": "DescriptionStyleModel",
4161
            "_view_count": null,
4162
            "_view_module": "@jupyter-widgets/base",
4163
            "_view_module_version": "1.2.0",
4164
            "_view_name": "StyleView",
4165
            "description_width": ""
4166
          }
4167
        },
4168
        "b451310e94b74abda4e795a59cdda9ab": {
4169
          "model_module": "@jupyter-widgets/base",
4170
          "model_name": "LayoutModel",
4171
          "model_module_version": "1.2.0",
4172
          "state": {
4173
            "_model_module": "@jupyter-widgets/base",
4174
            "_model_module_version": "1.2.0",
4175
            "_model_name": "LayoutModel",
4176
            "_view_count": null,
4177
            "_view_module": "@jupyter-widgets/base",
4178
            "_view_module_version": "1.2.0",
4179
            "_view_name": "LayoutView",
4180
            "align_content": null,
4181
            "align_items": null,
4182
            "align_self": null,
4183
            "border": null,
4184
            "bottom": null,
4185
            "display": null,
4186
            "flex": null,
4187
            "flex_flow": null,
4188
            "grid_area": null,
4189
            "grid_auto_columns": null,
4190
            "grid_auto_flow": null,
4191
            "grid_auto_rows": null,
4192
            "grid_column": null,
4193
            "grid_gap": null,
4194
            "grid_row": null,
4195
            "grid_template_areas": null,
4196
            "grid_template_columns": null,
4197
            "grid_template_rows": null,
4198
            "height": null,
4199
            "justify_content": null,
4200
            "justify_items": null,
4201
            "left": null,
4202
            "margin": null,
4203
            "max_height": null,
4204
            "max_width": null,
4205
            "min_height": null,
4206
            "min_width": null,
4207
            "object_fit": null,
4208
            "object_position": null,
4209
            "order": null,
4210
            "overflow": null,
4211
            "overflow_x": null,
4212
            "overflow_y": null,
4213
            "padding": null,
4214
            "right": null,
4215
            "top": null,
4216
            "visibility": null,
4217
            "width": "20px"
4218
          }
4219
        },
4220
        "537c7d2f4260498a82132cb9fae5daa5": {
4221
          "model_module": "@jupyter-widgets/controls",
4222
          "model_name": "ProgressStyleModel",
4223
          "model_module_version": "1.5.0",
4224
          "state": {
4225
            "_model_module": "@jupyter-widgets/controls",
4226
            "_model_module_version": "1.5.0",
4227
            "_model_name": "ProgressStyleModel",
4228
            "_view_count": null,
4229
            "_view_module": "@jupyter-widgets/base",
4230
            "_view_module_version": "1.2.0",
4231
            "_view_name": "StyleView",
4232
            "bar_color": null,
4233
            "description_width": ""
4234
          }
4235
        },
4236
        "6f9efa5f778d4f029dca7b4d6817b4c4": {
4237
          "model_module": "@jupyter-widgets/base",
4238
          "model_name": "LayoutModel",
4239
          "model_module_version": "1.2.0",
4240
          "state": {
4241
            "_model_module": "@jupyter-widgets/base",
4242
            "_model_module_version": "1.2.0",
4243
            "_model_name": "LayoutModel",
4244
            "_view_count": null,
4245
            "_view_module": "@jupyter-widgets/base",
4246
            "_view_module_version": "1.2.0",
4247
            "_view_name": "LayoutView",
4248
            "align_content": null,
4249
            "align_items": null,
4250
            "align_self": null,
4251
            "border": null,
4252
            "bottom": null,
4253
            "display": null,
4254
            "flex": null,
4255
            "flex_flow": null,
4256
            "grid_area": null,
4257
            "grid_auto_columns": null,
4258
            "grid_auto_flow": null,
4259
            "grid_auto_rows": null,
4260
            "grid_column": null,
4261
            "grid_gap": null,
4262
            "grid_row": null,
4263
            "grid_template_areas": null,
4264
            "grid_template_columns": null,
4265
            "grid_template_rows": null,
4266
            "height": null,
4267
            "justify_content": null,
4268
            "justify_items": null,
4269
            "left": null,
4270
            "margin": null,
4271
            "max_height": null,
4272
            "max_width": null,
4273
            "min_height": null,
4274
            "min_width": null,
4275
            "object_fit": null,
4276
            "object_position": null,
4277
            "order": null,
4278
            "overflow": null,
4279
            "overflow_x": null,
4280
            "overflow_y": null,
4281
            "padding": null,
4282
            "right": null,
4283
            "top": null,
4284
            "visibility": null,
4285
            "width": null
4286
          }
4287
        },
4288
        "d29a5f422214434c9be3886ce0d1e918": {
4289
          "model_module": "@jupyter-widgets/controls",
4290
          "model_name": "DescriptionStyleModel",
4291
          "model_module_version": "1.5.0",
4292
          "state": {
4293
            "_model_module": "@jupyter-widgets/controls",
4294
            "_model_module_version": "1.5.0",
4295
            "_model_name": "DescriptionStyleModel",
4296
            "_view_count": null,
4297
            "_view_module": "@jupyter-widgets/base",
4298
            "_view_module_version": "1.2.0",
4299
            "_view_name": "StyleView",
4300
            "description_width": ""
4301
          }
4302
        },
4303
        "e0e903b3ae8044f4a58ecd70825f36ec": {
4304
          "model_module": "@jupyter-widgets/controls",
4305
          "model_name": "HBoxModel",
4306
          "model_module_version": "1.5.0",
4307
          "state": {
4308
            "_dom_classes": [],
4309
            "_model_module": "@jupyter-widgets/controls",
4310
            "_model_module_version": "1.5.0",
4311
            "_model_name": "HBoxModel",
4312
            "_view_count": null,
4313
            "_view_module": "@jupyter-widgets/controls",
4314
            "_view_module_version": "1.5.0",
4315
            "_view_name": "HBoxView",
4316
            "box_style": "",
4317
            "children": [
4318
              "IPY_MODEL_99e8679e71f4443c92f13971e8885d38",
4319
              "IPY_MODEL_55a0ca0754c94f0bba6ede50b7fb7ea8",
4320
              "IPY_MODEL_fae83f7a625448e788ffdb1a13d2d530"
4321
            ],
4322
            "layout": "IPY_MODEL_3086db94647a41569b6f091e4f11f3cb"
4323
          }
4324
        },
4325
        "99e8679e71f4443c92f13971e8885d38": {
4326
          "model_module": "@jupyter-widgets/controls",
4327
          "model_name": "HTMLModel",
4328
          "model_module_version": "1.5.0",
4329
          "state": {
4330
            "_dom_classes": [],
4331
            "_model_module": "@jupyter-widgets/controls",
4332
            "_model_module_version": "1.5.0",
4333
            "_model_name": "HTMLModel",
4334
            "_view_count": null,
4335
            "_view_module": "@jupyter-widgets/controls",
4336
            "_view_module_version": "1.5.0",
4337
            "_view_name": "HTMLView",
4338
            "description": "",
4339
            "description_tooltip": null,
4340
            "layout": "IPY_MODEL_24062742dc6749a2aab19cbfd1e11684",
4341
            "placeholder": "​",
4342
            "style": "IPY_MODEL_1b6c8de76fd948b5b0eba8346f6e0bec",
4343
            "value": "Downloading data: "
4344
          }
4345
        },
4346
        "55a0ca0754c94f0bba6ede50b7fb7ea8": {
4347
          "model_module": "@jupyter-widgets/controls",
4348
          "model_name": "FloatProgressModel",
4349
          "model_module_version": "1.5.0",
4350
          "state": {
4351
            "_dom_classes": [],
4352
            "_model_module": "@jupyter-widgets/controls",
4353
            "_model_module_version": "1.5.0",
4354
            "_model_name": "FloatProgressModel",
4355
            "_view_count": null,
4356
            "_view_module": "@jupyter-widgets/controls",
4357
            "_view_module_version": "1.5.0",
4358
            "_view_name": "ProgressView",
4359
            "bar_style": "success",
4360
            "description": "",
4361
            "description_tooltip": null,
4362
            "layout": "IPY_MODEL_276fc5825a624a3a9026301620682c6c",
4363
            "max": 1,
4364
            "min": 0,
4365
            "orientation": "horizontal",
4366
            "style": "IPY_MODEL_5c10a16929ce40e48361efa44e96a7f8",
4367
            "value": 1
4368
          }
4369
        },
4370
        "fae83f7a625448e788ffdb1a13d2d530": {
4371
          "model_module": "@jupyter-widgets/controls",
4372
          "model_name": "HTMLModel",
4373
          "model_module_version": "1.5.0",
4374
          "state": {
4375
            "_dom_classes": [],
4376
            "_model_module": "@jupyter-widgets/controls",
4377
            "_model_module_version": "1.5.0",
4378
            "_model_name": "HTMLModel",
4379
            "_view_count": null,
4380
            "_view_module": "@jupyter-widgets/controls",
4381
            "_view_module_version": "1.5.0",
4382
            "_view_name": "HTMLView",
4383
            "description": "",
4384
            "description_tooltip": null,
4385
            "layout": "IPY_MODEL_53f9d507f4024b2080591215d3c4bab4",
4386
            "placeholder": "​",
4387
            "style": "IPY_MODEL_c77cdd4479294ce7bf3f3ef271e95b1d",
4388
            "value": " 1.05M/? [00:00&lt;00:00, 12.7MB/s]"
4389
          }
4390
        },
4391
        "3086db94647a41569b6f091e4f11f3cb": {
4392
          "model_module": "@jupyter-widgets/base",
4393
          "model_name": "LayoutModel",
4394
          "model_module_version": "1.2.0",
4395
          "state": {
4396
            "_model_module": "@jupyter-widgets/base",
4397
            "_model_module_version": "1.2.0",
4398
            "_model_name": "LayoutModel",
4399
            "_view_count": null,
4400
            "_view_module": "@jupyter-widgets/base",
4401
            "_view_module_version": "1.2.0",
4402
            "_view_name": "LayoutView",
4403
            "align_content": null,
4404
            "align_items": null,
4405
            "align_self": null,
4406
            "border": null,
4407
            "bottom": null,
4408
            "display": null,
4409
            "flex": null,
4410
            "flex_flow": null,
4411
            "grid_area": null,
4412
            "grid_auto_columns": null,
4413
            "grid_auto_flow": null,
4414
            "grid_auto_rows": null,
4415
            "grid_column": null,
4416
            "grid_gap": null,
4417
            "grid_row": null,
4418
            "grid_template_areas": null,
4419
            "grid_template_columns": null,
4420
            "grid_template_rows": null,
4421
            "height": null,
4422
            "justify_content": null,
4423
            "justify_items": null,
4424
            "left": null,
4425
            "margin": null,
4426
            "max_height": null,
4427
            "max_width": null,
4428
            "min_height": null,
4429
            "min_width": null,
4430
            "object_fit": null,
4431
            "object_position": null,
4432
            "order": null,
4433
            "overflow": null,
4434
            "overflow_x": null,
4435
            "overflow_y": null,
4436
            "padding": null,
4437
            "right": null,
4438
            "top": null,
4439
            "visibility": null,
4440
            "width": null
4441
          }
4442
        },
4443
        "24062742dc6749a2aab19cbfd1e11684": {
4444
          "model_module": "@jupyter-widgets/base",
4445
          "model_name": "LayoutModel",
4446
          "model_module_version": "1.2.0",
4447
          "state": {
4448
            "_model_module": "@jupyter-widgets/base",
4449
            "_model_module_version": "1.2.0",
4450
            "_model_name": "LayoutModel",
4451
            "_view_count": null,
4452
            "_view_module": "@jupyter-widgets/base",
4453
            "_view_module_version": "1.2.0",
4454
            "_view_name": "LayoutView",
4455
            "align_content": null,
4456
            "align_items": null,
4457
            "align_self": null,
4458
            "border": null,
4459
            "bottom": null,
4460
            "display": null,
4461
            "flex": null,
4462
            "flex_flow": null,
4463
            "grid_area": null,
4464
            "grid_auto_columns": null,
4465
            "grid_auto_flow": null,
4466
            "grid_auto_rows": null,
4467
            "grid_column": null,
4468
            "grid_gap": null,
4469
            "grid_row": null,
4470
            "grid_template_areas": null,
4471
            "grid_template_columns": null,
4472
            "grid_template_rows": null,
4473
            "height": null,
4474
            "justify_content": null,
4475
            "justify_items": null,
4476
            "left": null,
4477
            "margin": null,
4478
            "max_height": null,
4479
            "max_width": null,
4480
            "min_height": null,
4481
            "min_width": null,
4482
            "object_fit": null,
4483
            "object_position": null,
4484
            "order": null,
4485
            "overflow": null,
4486
            "overflow_x": null,
4487
            "overflow_y": null,
4488
            "padding": null,
4489
            "right": null,
4490
            "top": null,
4491
            "visibility": null,
4492
            "width": null
4493
          }
4494
        },
4495
        "1b6c8de76fd948b5b0eba8346f6e0bec": {
4496
          "model_module": "@jupyter-widgets/controls",
4497
          "model_name": "DescriptionStyleModel",
4498
          "model_module_version": "1.5.0",
4499
          "state": {
4500
            "_model_module": "@jupyter-widgets/controls",
4501
            "_model_module_version": "1.5.0",
4502
            "_model_name": "DescriptionStyleModel",
4503
            "_view_count": null,
4504
            "_view_module": "@jupyter-widgets/base",
4505
            "_view_module_version": "1.2.0",
4506
            "_view_name": "StyleView",
4507
            "description_width": ""
4508
          }
4509
        },
4510
        "276fc5825a624a3a9026301620682c6c": {
4511
          "model_module": "@jupyter-widgets/base",
4512
          "model_name": "LayoutModel",
4513
          "model_module_version": "1.2.0",
4514
          "state": {
4515
            "_model_module": "@jupyter-widgets/base",
4516
            "_model_module_version": "1.2.0",
4517
            "_model_name": "LayoutModel",
4518
            "_view_count": null,
4519
            "_view_module": "@jupyter-widgets/base",
4520
            "_view_module_version": "1.2.0",
4521
            "_view_name": "LayoutView",
4522
            "align_content": null,
4523
            "align_items": null,
4524
            "align_self": null,
4525
            "border": null,
4526
            "bottom": null,
4527
            "display": null,
4528
            "flex": null,
4529
            "flex_flow": null,
4530
            "grid_area": null,
4531
            "grid_auto_columns": null,
4532
            "grid_auto_flow": null,
4533
            "grid_auto_rows": null,
4534
            "grid_column": null,
4535
            "grid_gap": null,
4536
            "grid_row": null,
4537
            "grid_template_areas": null,
4538
            "grid_template_columns": null,
4539
            "grid_template_rows": null,
4540
            "height": null,
4541
            "justify_content": null,
4542
            "justify_items": null,
4543
            "left": null,
4544
            "margin": null,
4545
            "max_height": null,
4546
            "max_width": null,
4547
            "min_height": null,
4548
            "min_width": null,
4549
            "object_fit": null,
4550
            "object_position": null,
4551
            "order": null,
4552
            "overflow": null,
4553
            "overflow_x": null,
4554
            "overflow_y": null,
4555
            "padding": null,
4556
            "right": null,
4557
            "top": null,
4558
            "visibility": null,
4559
            "width": "20px"
4560
          }
4561
        },
4562
        "5c10a16929ce40e48361efa44e96a7f8": {
4563
          "model_module": "@jupyter-widgets/controls",
4564
          "model_name": "ProgressStyleModel",
4565
          "model_module_version": "1.5.0",
4566
          "state": {
4567
            "_model_module": "@jupyter-widgets/controls",
4568
            "_model_module_version": "1.5.0",
4569
            "_model_name": "ProgressStyleModel",
4570
            "_view_count": null,
4571
            "_view_module": "@jupyter-widgets/base",
4572
            "_view_module_version": "1.2.0",
4573
            "_view_name": "StyleView",
4574
            "bar_color": null,
4575
            "description_width": ""
4576
          }
4577
        },
4578
        "53f9d507f4024b2080591215d3c4bab4": {
4579
          "model_module": "@jupyter-widgets/base",
4580
          "model_name": "LayoutModel",
4581
          "model_module_version": "1.2.0",
4582
          "state": {
4583
            "_model_module": "@jupyter-widgets/base",
4584
            "_model_module_version": "1.2.0",
4585
            "_model_name": "LayoutModel",
4586
            "_view_count": null,
4587
            "_view_module": "@jupyter-widgets/base",
4588
            "_view_module_version": "1.2.0",
4589
            "_view_name": "LayoutView",
4590
            "align_content": null,
4591
            "align_items": null,
4592
            "align_self": null,
4593
            "border": null,
4594
            "bottom": null,
4595
            "display": null,
4596
            "flex": null,
4597
            "flex_flow": null,
4598
            "grid_area": null,
4599
            "grid_auto_columns": null,
4600
            "grid_auto_flow": null,
4601
            "grid_auto_rows": null,
4602
            "grid_column": null,
4603
            "grid_gap": null,
4604
            "grid_row": null,
4605
            "grid_template_areas": null,
4606
            "grid_template_columns": null,
4607
            "grid_template_rows": null,
4608
            "height": null,
4609
            "justify_content": null,
4610
            "justify_items": null,
4611
            "left": null,
4612
            "margin": null,
4613
            "max_height": null,
4614
            "max_width": null,
4615
            "min_height": null,
4616
            "min_width": null,
4617
            "object_fit": null,
4618
            "object_position": null,
4619
            "order": null,
4620
            "overflow": null,
4621
            "overflow_x": null,
4622
            "overflow_y": null,
4623
            "padding": null,
4624
            "right": null,
4625
            "top": null,
4626
            "visibility": null,
4627
            "width": null
4628
          }
4629
        },
4630
        "c77cdd4479294ce7bf3f3ef271e95b1d": {
4631
          "model_module": "@jupyter-widgets/controls",
4632
          "model_name": "DescriptionStyleModel",
4633
          "model_module_version": "1.5.0",
4634
          "state": {
4635
            "_model_module": "@jupyter-widgets/controls",
4636
            "_model_module_version": "1.5.0",
4637
            "_model_name": "DescriptionStyleModel",
4638
            "_view_count": null,
4639
            "_view_module": "@jupyter-widgets/base",
4640
            "_view_module_version": "1.2.0",
4641
            "_view_name": "StyleView",
4642
            "description_width": ""
4643
          }
4644
        },
4645
        "e66a0c2552ff46b5a41cf8d803114b8f": {
4646
          "model_module": "@jupyter-widgets/controls",
4647
          "model_name": "HBoxModel",
4648
          "model_module_version": "1.5.0",
4649
          "state": {
4650
            "_dom_classes": [],
4651
            "_model_module": "@jupyter-widgets/controls",
4652
            "_model_module_version": "1.5.0",
4653
            "_model_name": "HBoxModel",
4654
            "_view_count": null,
4655
            "_view_module": "@jupyter-widgets/controls",
4656
            "_view_module_version": "1.5.0",
4657
            "_view_name": "HBoxView",
4658
            "box_style": "",
4659
            "children": [
4660
              "IPY_MODEL_897708ca40da48f3ae846710b4e7f7f0",
4661
              "IPY_MODEL_1aa34d9a0b16444baadf2ed7e43b72e5",
4662
              "IPY_MODEL_01f39b548eff49aea6ba0efabb4486de"
4663
            ],
4664
            "layout": "IPY_MODEL_46fc201246804f28946fd0c59e09c4ac"
4665
          }
4666
        },
4667
        "897708ca40da48f3ae846710b4e7f7f0": {
4668
          "model_module": "@jupyter-widgets/controls",
4669
          "model_name": "HTMLModel",
4670
          "model_module_version": "1.5.0",
4671
          "state": {
4672
            "_dom_classes": [],
4673
            "_model_module": "@jupyter-widgets/controls",
4674
            "_model_module_version": "1.5.0",
4675
            "_model_name": "HTMLModel",
4676
            "_view_count": null,
4677
            "_view_module": "@jupyter-widgets/controls",
4678
            "_view_module_version": "1.5.0",
4679
            "_view_name": "HTMLView",
4680
            "description": "",
4681
            "description_tooltip": null,
4682
            "layout": "IPY_MODEL_e6c085b451a346b6a3b82c67d7b9e9e2",
4683
            "placeholder": "​",
4684
            "style": "IPY_MODEL_29a8cce77d2745038f2c742d17254139",
4685
            "value": "Downloading data: "
4686
          }
4687
        },
4688
        "1aa34d9a0b16444baadf2ed7e43b72e5": {
4689
          "model_module": "@jupyter-widgets/controls",
4690
          "model_name": "FloatProgressModel",
4691
          "model_module_version": "1.5.0",
4692
          "state": {
4693
            "_dom_classes": [],
4694
            "_model_module": "@jupyter-widgets/controls",
4695
            "_model_module_version": "1.5.0",
4696
            "_model_name": "FloatProgressModel",
4697
            "_view_count": null,
4698
            "_view_module": "@jupyter-widgets/controls",
4699
            "_view_module_version": "1.5.0",
4700
            "_view_name": "ProgressView",
4701
            "bar_style": "success",
4702
            "description": "",
4703
            "description_tooltip": null,
4704
            "layout": "IPY_MODEL_326b48d7d2e94defa52858171177e7d7",
4705
            "max": 1,
4706
            "min": 0,
4707
            "orientation": "horizontal",
4708
            "style": "IPY_MODEL_9a3dcc1c2fe542b7b912419935d9dd9a",
4709
            "value": 1
4710
          }
4711
        },
4712
        "01f39b548eff49aea6ba0efabb4486de": {
4713
          "model_module": "@jupyter-widgets/controls",
4714
          "model_name": "HTMLModel",
4715
          "model_module_version": "1.5.0",
4716
          "state": {
4717
            "_dom_classes": [],
4718
            "_model_module": "@jupyter-widgets/controls",
4719
            "_model_module_version": "1.5.0",
4720
            "_model_name": "HTMLModel",
4721
            "_view_count": null,
4722
            "_view_module": "@jupyter-widgets/controls",
4723
            "_view_module_version": "1.5.0",
4724
            "_view_name": "HTMLView",
4725
            "description": "",
4726
            "description_tooltip": null,
4727
            "layout": "IPY_MODEL_b82b0c29bd53432baa5596b4f1aaf076",
4728
            "placeholder": "​",
4729
            "style": "IPY_MODEL_a8ccd811bba848d2ad2f84d2cdf9ef03",
4730
            "value": " 441k/? [00:00&lt;00:00, 7.70MB/s]"
4731
          }
4732
        },
4733
        "46fc201246804f28946fd0c59e09c4ac": {
4734
          "model_module": "@jupyter-widgets/base",
4735
          "model_name": "LayoutModel",
4736
          "model_module_version": "1.2.0",
4737
          "state": {
4738
            "_model_module": "@jupyter-widgets/base",
4739
            "_model_module_version": "1.2.0",
4740
            "_model_name": "LayoutModel",
4741
            "_view_count": null,
4742
            "_view_module": "@jupyter-widgets/base",
4743
            "_view_module_version": "1.2.0",
4744
            "_view_name": "LayoutView",
4745
            "align_content": null,
4746
            "align_items": null,
4747
            "align_self": null,
4748
            "border": null,
4749
            "bottom": null,
4750
            "display": null,
4751
            "flex": null,
4752
            "flex_flow": null,
4753
            "grid_area": null,
4754
            "grid_auto_columns": null,
4755
            "grid_auto_flow": null,
4756
            "grid_auto_rows": null,
4757
            "grid_column": null,
4758
            "grid_gap": null,
4759
            "grid_row": null,
4760
            "grid_template_areas": null,
4761
            "grid_template_columns": null,
4762
            "grid_template_rows": null,
4763
            "height": null,
4764
            "justify_content": null,
4765
            "justify_items": null,
4766
            "left": null,
4767
            "margin": null,
4768
            "max_height": null,
4769
            "max_width": null,
4770
            "min_height": null,
4771
            "min_width": null,
4772
            "object_fit": null,
4773
            "object_position": null,
4774
            "order": null,
4775
            "overflow": null,
4776
            "overflow_x": null,
4777
            "overflow_y": null,
4778
            "padding": null,
4779
            "right": null,
4780
            "top": null,
4781
            "visibility": null,
4782
            "width": null
4783
          }
4784
        },
4785
        "e6c085b451a346b6a3b82c67d7b9e9e2": {
4786
          "model_module": "@jupyter-widgets/base",
4787
          "model_name": "LayoutModel",
4788
          "model_module_version": "1.2.0",
4789
          "state": {
4790
            "_model_module": "@jupyter-widgets/base",
4791
            "_model_module_version": "1.2.0",
4792
            "_model_name": "LayoutModel",
4793
            "_view_count": null,
4794
            "_view_module": "@jupyter-widgets/base",
4795
            "_view_module_version": "1.2.0",
4796
            "_view_name": "LayoutView",
4797
            "align_content": null,
4798
            "align_items": null,
4799
            "align_self": null,
4800
            "border": null,
4801
            "bottom": null,
4802
            "display": null,
4803
            "flex": null,
4804
            "flex_flow": null,
4805
            "grid_area": null,
4806
            "grid_auto_columns": null,
4807
            "grid_auto_flow": null,
4808
            "grid_auto_rows": null,
4809
            "grid_column": null,
4810
            "grid_gap": null,
4811
            "grid_row": null,
4812
            "grid_template_areas": null,
4813
            "grid_template_columns": null,
4814
            "grid_template_rows": null,
4815
            "height": null,
4816
            "justify_content": null,
4817
            "justify_items": null,
4818
            "left": null,
4819
            "margin": null,
4820
            "max_height": null,
4821
            "max_width": null,
4822
            "min_height": null,
4823
            "min_width": null,
4824
            "object_fit": null,
4825
            "object_position": null,
4826
            "order": null,
4827
            "overflow": null,
4828
            "overflow_x": null,
4829
            "overflow_y": null,
4830
            "padding": null,
4831
            "right": null,
4832
            "top": null,
4833
            "visibility": null,
4834
            "width": null
4835
          }
4836
        },
4837
        "29a8cce77d2745038f2c742d17254139": {
4838
          "model_module": "@jupyter-widgets/controls",
4839
          "model_name": "DescriptionStyleModel",
4840
          "model_module_version": "1.5.0",
4841
          "state": {
4842
            "_model_module": "@jupyter-widgets/controls",
4843
            "_model_module_version": "1.5.0",
4844
            "_model_name": "DescriptionStyleModel",
4845
            "_view_count": null,
4846
            "_view_module": "@jupyter-widgets/base",
4847
            "_view_module_version": "1.2.0",
4848
            "_view_name": "StyleView",
4849
            "description_width": ""
4850
          }
4851
        },
4852
        "326b48d7d2e94defa52858171177e7d7": {
4853
          "model_module": "@jupyter-widgets/base",
4854
          "model_name": "LayoutModel",
4855
          "model_module_version": "1.2.0",
4856
          "state": {
4857
            "_model_module": "@jupyter-widgets/base",
4858
            "_model_module_version": "1.2.0",
4859
            "_model_name": "LayoutModel",
4860
            "_view_count": null,
4861
            "_view_module": "@jupyter-widgets/base",
4862
            "_view_module_version": "1.2.0",
4863
            "_view_name": "LayoutView",
4864
            "align_content": null,
4865
            "align_items": null,
4866
            "align_self": null,
4867
            "border": null,
4868
            "bottom": null,
4869
            "display": null,
4870
            "flex": null,
4871
            "flex_flow": null,
4872
            "grid_area": null,
4873
            "grid_auto_columns": null,
4874
            "grid_auto_flow": null,
4875
            "grid_auto_rows": null,
4876
            "grid_column": null,
4877
            "grid_gap": null,
4878
            "grid_row": null,
4879
            "grid_template_areas": null,
4880
            "grid_template_columns": null,
4881
            "grid_template_rows": null,
4882
            "height": null,
4883
            "justify_content": null,
4884
            "justify_items": null,
4885
            "left": null,
4886
            "margin": null,
4887
            "max_height": null,
4888
            "max_width": null,
4889
            "min_height": null,
4890
            "min_width": null,
4891
            "object_fit": null,
4892
            "object_position": null,
4893
            "order": null,
4894
            "overflow": null,
4895
            "overflow_x": null,
4896
            "overflow_y": null,
4897
            "padding": null,
4898
            "right": null,
4899
            "top": null,
4900
            "visibility": null,
4901
            "width": "20px"
4902
          }
4903
        },
4904
        "9a3dcc1c2fe542b7b912419935d9dd9a": {
4905
          "model_module": "@jupyter-widgets/controls",
4906
          "model_name": "ProgressStyleModel",
4907
          "model_module_version": "1.5.0",
4908
          "state": {
4909
            "_model_module": "@jupyter-widgets/controls",
4910
            "_model_module_version": "1.5.0",
4911
            "_model_name": "ProgressStyleModel",
4912
            "_view_count": null,
4913
            "_view_module": "@jupyter-widgets/base",
4914
            "_view_module_version": "1.2.0",
4915
            "_view_name": "StyleView",
4916
            "bar_color": null,
4917
            "description_width": ""
4918
          }
4919
        },
4920
        "b82b0c29bd53432baa5596b4f1aaf076": {
4921
          "model_module": "@jupyter-widgets/base",
4922
          "model_name": "LayoutModel",
4923
          "model_module_version": "1.2.0",
4924
          "state": {
4925
            "_model_module": "@jupyter-widgets/base",
4926
            "_model_module_version": "1.2.0",
4927
            "_model_name": "LayoutModel",
4928
            "_view_count": null,
4929
            "_view_module": "@jupyter-widgets/base",
4930
            "_view_module_version": "1.2.0",
4931
            "_view_name": "LayoutView",
4932
            "align_content": null,
4933
            "align_items": null,
4934
            "align_self": null,
4935
            "border": null,
4936
            "bottom": null,
4937
            "display": null,
4938
            "flex": null,
4939
            "flex_flow": null,
4940
            "grid_area": null,
4941
            "grid_auto_columns": null,
4942
            "grid_auto_flow": null,
4943
            "grid_auto_rows": null,
4944
            "grid_column": null,
4945
            "grid_gap": null,
4946
            "grid_row": null,
4947
            "grid_template_areas": null,
4948
            "grid_template_columns": null,
4949
            "grid_template_rows": null,
4950
            "height": null,
4951
            "justify_content": null,
4952
            "justify_items": null,
4953
            "left": null,
4954
            "margin": null,
4955
            "max_height": null,
4956
            "max_width": null,
4957
            "min_height": null,
4958
            "min_width": null,
4959
            "object_fit": null,
4960
            "object_position": null,
4961
            "order": null,
4962
            "overflow": null,
4963
            "overflow_x": null,
4964
            "overflow_y": null,
4965
            "padding": null,
4966
            "right": null,
4967
            "top": null,
4968
            "visibility": null,
4969
            "width": null
4970
          }
4971
        },
4972
        "a8ccd811bba848d2ad2f84d2cdf9ef03": {
4973
          "model_module": "@jupyter-widgets/controls",
4974
          "model_name": "DescriptionStyleModel",
4975
          "model_module_version": "1.5.0",
4976
          "state": {
4977
            "_model_module": "@jupyter-widgets/controls",
4978
            "_model_module_version": "1.5.0",
4979
            "_model_name": "DescriptionStyleModel",
4980
            "_view_count": null,
4981
            "_view_module": "@jupyter-widgets/base",
4982
            "_view_module_version": "1.2.0",
4983
            "_view_name": "StyleView",
4984
            "description_width": ""
4985
          }
4986
        },
4987
        "9ae4e6a6543e4da6bba06175aeef3ea1": {
4988
          "model_module": "@jupyter-widgets/controls",
4989
          "model_name": "HBoxModel",
4990
          "model_module_version": "1.5.0",
4991
          "state": {
4992
            "_dom_classes": [],
4993
            "_model_module": "@jupyter-widgets/controls",
4994
            "_model_module_version": "1.5.0",
4995
            "_model_name": "HBoxModel",
4996
            "_view_count": null,
4997
            "_view_module": "@jupyter-widgets/controls",
4998
            "_view_module_version": "1.5.0",
4999
            "_view_name": "HBoxView",
5000
            "box_style": "",
5001
            "children": [
5002
              "IPY_MODEL_fa9675039cc443f791dcfbc0bdca065c",
5003
              "IPY_MODEL_5b0a0578afad40868bb71707c05e0335",
5004
              "IPY_MODEL_d1a82e42e866449cbb70c1f68ac1bc03"
5005
            ],
5006
            "layout": "IPY_MODEL_bd12886eee644913ba83fd4ebb6b62ee"
5007
          }
5008
        },
5009
        "fa9675039cc443f791dcfbc0bdca065c": {
5010
          "model_module": "@jupyter-widgets/controls",
5011
          "model_name": "HTMLModel",
5012
          "model_module_version": "1.5.0",
5013
          "state": {
5014
            "_dom_classes": [],
5015
            "_model_module": "@jupyter-widgets/controls",
5016
            "_model_module_version": "1.5.0",
5017
            "_model_name": "HTMLModel",
5018
            "_view_count": null,
5019
            "_view_module": "@jupyter-widgets/controls",
5020
            "_view_module_version": "1.5.0",
5021
            "_view_name": "HTMLView",
5022
            "description": "",
5023
            "description_tooltip": null,
5024
            "layout": "IPY_MODEL_fc11a9d0c0b7409cb2f61fcabac2bfa6",
5025
            "placeholder": "​",
5026
            "style": "IPY_MODEL_9cf73d46c2f04bf398a4564a56f03bd6",
5027
            "value": "Generating train split:  98%"
5028
          }
5029
        },
5030
        "5b0a0578afad40868bb71707c05e0335": {
5031
          "model_module": "@jupyter-widgets/controls",
5032
          "model_name": "FloatProgressModel",
5033
          "model_module_version": "1.5.0",
5034
          "state": {
5035
            "_dom_classes": [],
5036
            "_model_module": "@jupyter-widgets/controls",
5037
            "_model_module_version": "1.5.0",
5038
            "_model_name": "FloatProgressModel",
5039
            "_view_count": null,
5040
            "_view_module": "@jupyter-widgets/controls",
5041
            "_view_module_version": "1.5.0",
5042
            "_view_name": "ProgressView",
5043
            "bar_style": "",
5044
            "description": "",
5045
            "description_tooltip": null,
5046
            "layout": "IPY_MODEL_f46d3699775b4d7193adeebb4f18a34f",
5047
            "max": 3668,
5048
            "min": 0,
5049
            "orientation": "horizontal",
5050
            "style": "IPY_MODEL_5997f14e0a3044249b9cabc2b307e3a4",
5051
            "value": 3668
5052
          }
5053
        },
5054
        "d1a82e42e866449cbb70c1f68ac1bc03": {
5055
          "model_module": "@jupyter-widgets/controls",
5056
          "model_name": "HTMLModel",
5057
          "model_module_version": "1.5.0",
5058
          "state": {
5059
            "_dom_classes": [],
5060
            "_model_module": "@jupyter-widgets/controls",
5061
            "_model_module_version": "1.5.0",
5062
            "_model_name": "HTMLModel",
5063
            "_view_count": null,
5064
            "_view_module": "@jupyter-widgets/controls",
5065
            "_view_module_version": "1.5.0",
5066
            "_view_name": "HTMLView",
5067
            "description": "",
5068
            "description_tooltip": null,
5069
            "layout": "IPY_MODEL_5ba9f4bd64bd4e1e905887760f90ae3e",
5070
            "placeholder": "​",
5071
            "style": "IPY_MODEL_1a8e75c718d14f4c8f99de1c8efa84b5",
5072
            "value": " 3610/3668 [00:00&lt;00:00, 4169.48 examples/s]"
5073
          }
5074
        },
5075
        "bd12886eee644913ba83fd4ebb6b62ee": {
5076
          "model_module": "@jupyter-widgets/base",
5077
          "model_name": "LayoutModel",
5078
          "model_module_version": "1.2.0",
5079
          "state": {
5080
            "_model_module": "@jupyter-widgets/base",
5081
            "_model_module_version": "1.2.0",
5082
            "_model_name": "LayoutModel",
5083
            "_view_count": null,
5084
            "_view_module": "@jupyter-widgets/base",
5085
            "_view_module_version": "1.2.0",
5086
            "_view_name": "LayoutView",
5087
            "align_content": null,
5088
            "align_items": null,
5089
            "align_self": null,
5090
            "border": null,
5091
            "bottom": null,
5092
            "display": null,
5093
            "flex": null,
5094
            "flex_flow": null,
5095
            "grid_area": null,
5096
            "grid_auto_columns": null,
5097
            "grid_auto_flow": null,
5098
            "grid_auto_rows": null,
5099
            "grid_column": null,
5100
            "grid_gap": null,
5101
            "grid_row": null,
5102
            "grid_template_areas": null,
5103
            "grid_template_columns": null,
5104
            "grid_template_rows": null,
5105
            "height": null,
5106
            "justify_content": null,
5107
            "justify_items": null,
5108
            "left": null,
5109
            "margin": null,
5110
            "max_height": null,
5111
            "max_width": null,
5112
            "min_height": null,
5113
            "min_width": null,
5114
            "object_fit": null,
5115
            "object_position": null,
5116
            "order": null,
5117
            "overflow": null,
5118
            "overflow_x": null,
5119
            "overflow_y": null,
5120
            "padding": null,
5121
            "right": null,
5122
            "top": null,
5123
            "visibility": "hidden",
5124
            "width": null
5125
          }
5126
        },
5127
        "fc11a9d0c0b7409cb2f61fcabac2bfa6": {
5128
          "model_module": "@jupyter-widgets/base",
5129
          "model_name": "LayoutModel",
5130
          "model_module_version": "1.2.0",
5131
          "state": {
5132
            "_model_module": "@jupyter-widgets/base",
5133
            "_model_module_version": "1.2.0",
5134
            "_model_name": "LayoutModel",
5135
            "_view_count": null,
5136
            "_view_module": "@jupyter-widgets/base",
5137
            "_view_module_version": "1.2.0",
5138
            "_view_name": "LayoutView",
5139
            "align_content": null,
5140
            "align_items": null,
5141
            "align_self": null,
5142
            "border": null,
5143
            "bottom": null,
5144
            "display": null,
5145
            "flex": null,
5146
            "flex_flow": null,
5147
            "grid_area": null,
5148
            "grid_auto_columns": null,
5149
            "grid_auto_flow": null,
5150
            "grid_auto_rows": null,
5151
            "grid_column": null,
5152
            "grid_gap": null,
5153
            "grid_row": null,
5154
            "grid_template_areas": null,
5155
            "grid_template_columns": null,
5156
            "grid_template_rows": null,
5157
            "height": null,
5158
            "justify_content": null,
5159
            "justify_items": null,
5160
            "left": null,
5161
            "margin": null,
5162
            "max_height": null,
5163
            "max_width": null,
5164
            "min_height": null,
5165
            "min_width": null,
5166
            "object_fit": null,
5167
            "object_position": null,
5168
            "order": null,
5169
            "overflow": null,
5170
            "overflow_x": null,
5171
            "overflow_y": null,
5172
            "padding": null,
5173
            "right": null,
5174
            "top": null,
5175
            "visibility": null,
5176
            "width": null
5177
          }
5178
        },
5179
        "9cf73d46c2f04bf398a4564a56f03bd6": {
5180
          "model_module": "@jupyter-widgets/controls",
5181
          "model_name": "DescriptionStyleModel",
5182
          "model_module_version": "1.5.0",
5183
          "state": {
5184
            "_model_module": "@jupyter-widgets/controls",
5185
            "_model_module_version": "1.5.0",
5186
            "_model_name": "DescriptionStyleModel",
5187
            "_view_count": null,
5188
            "_view_module": "@jupyter-widgets/base",
5189
            "_view_module_version": "1.2.0",
5190
            "_view_name": "StyleView",
5191
            "description_width": ""
5192
          }
5193
        },
5194
        "f46d3699775b4d7193adeebb4f18a34f": {
5195
          "model_module": "@jupyter-widgets/base",
5196
          "model_name": "LayoutModel",
5197
          "model_module_version": "1.2.0",
5198
          "state": {
5199
            "_model_module": "@jupyter-widgets/base",
5200
            "_model_module_version": "1.2.0",
5201
            "_model_name": "LayoutModel",
5202
            "_view_count": null,
5203
            "_view_module": "@jupyter-widgets/base",
5204
            "_view_module_version": "1.2.0",
5205
            "_view_name": "LayoutView",
5206
            "align_content": null,
5207
            "align_items": null,
5208
            "align_self": null,
5209
            "border": null,
5210
            "bottom": null,
5211
            "display": null,
5212
            "flex": null,
5213
            "flex_flow": null,
5214
            "grid_area": null,
5215
            "grid_auto_columns": null,
5216
            "grid_auto_flow": null,
5217
            "grid_auto_rows": null,
5218
            "grid_column": null,
5219
            "grid_gap": null,
5220
            "grid_row": null,
5221
            "grid_template_areas": null,
5222
            "grid_template_columns": null,
5223
            "grid_template_rows": null,
5224
            "height": null,
5225
            "justify_content": null,
5226
            "justify_items": null,
5227
            "left": null,
5228
            "margin": null,
5229
            "max_height": null,
5230
            "max_width": null,
5231
            "min_height": null,
5232
            "min_width": null,
5233
            "object_fit": null,
5234
            "object_position": null,
5235
            "order": null,
5236
            "overflow": null,
5237
            "overflow_x": null,
5238
            "overflow_y": null,
5239
            "padding": null,
5240
            "right": null,
5241
            "top": null,
5242
            "visibility": null,
5243
            "width": null
5244
          }
5245
        },
5246
        "5997f14e0a3044249b9cabc2b307e3a4": {
5247
          "model_module": "@jupyter-widgets/controls",
5248
          "model_name": "ProgressStyleModel",
5249
          "model_module_version": "1.5.0",
5250
          "state": {
5251
            "_model_module": "@jupyter-widgets/controls",
5252
            "_model_module_version": "1.5.0",
5253
            "_model_name": "ProgressStyleModel",
5254
            "_view_count": null,
5255
            "_view_module": "@jupyter-widgets/base",
5256
            "_view_module_version": "1.2.0",
5257
            "_view_name": "StyleView",
5258
            "bar_color": null,
5259
            "description_width": ""
5260
          }
5261
        },
5262
        "5ba9f4bd64bd4e1e905887760f90ae3e": {
5263
          "model_module": "@jupyter-widgets/base",
5264
          "model_name": "LayoutModel",
5265
          "model_module_version": "1.2.0",
5266
          "state": {
5267
            "_model_module": "@jupyter-widgets/base",
5268
            "_model_module_version": "1.2.0",
5269
            "_model_name": "LayoutModel",
5270
            "_view_count": null,
5271
            "_view_module": "@jupyter-widgets/base",
5272
            "_view_module_version": "1.2.0",
5273
            "_view_name": "LayoutView",
5274
            "align_content": null,
5275
            "align_items": null,
5276
            "align_self": null,
5277
            "border": null,
5278
            "bottom": null,
5279
            "display": null,
5280
            "flex": null,
5281
            "flex_flow": null,
5282
            "grid_area": null,
5283
            "grid_auto_columns": null,
5284
            "grid_auto_flow": null,
5285
            "grid_auto_rows": null,
5286
            "grid_column": null,
5287
            "grid_gap": null,
5288
            "grid_row": null,
5289
            "grid_template_areas": null,
5290
            "grid_template_columns": null,
5291
            "grid_template_rows": null,
5292
            "height": null,
5293
            "justify_content": null,
5294
            "justify_items": null,
5295
            "left": null,
5296
            "margin": null,
5297
            "max_height": null,
5298
            "max_width": null,
5299
            "min_height": null,
5300
            "min_width": null,
5301
            "object_fit": null,
5302
            "object_position": null,
5303
            "order": null,
5304
            "overflow": null,
5305
            "overflow_x": null,
5306
            "overflow_y": null,
5307
            "padding": null,
5308
            "right": null,
5309
            "top": null,
5310
            "visibility": null,
5311
            "width": null
5312
          }
5313
        },
5314
        "1a8e75c718d14f4c8f99de1c8efa84b5": {
5315
          "model_module": "@jupyter-widgets/controls",
5316
          "model_name": "DescriptionStyleModel",
5317
          "model_module_version": "1.5.0",
5318
          "state": {
5319
            "_model_module": "@jupyter-widgets/controls",
5320
            "_model_module_version": "1.5.0",
5321
            "_model_name": "DescriptionStyleModel",
5322
            "_view_count": null,
5323
            "_view_module": "@jupyter-widgets/base",
5324
            "_view_module_version": "1.2.0",
5325
            "_view_name": "StyleView",
5326
            "description_width": ""
5327
          }
5328
        },
5329
        "786b2430a42942f1aeae253861820dcb": {
5330
          "model_module": "@jupyter-widgets/controls",
5331
          "model_name": "HBoxModel",
5332
          "model_module_version": "1.5.0",
5333
          "state": {
5334
            "_dom_classes": [],
5335
            "_model_module": "@jupyter-widgets/controls",
5336
            "_model_module_version": "1.5.0",
5337
            "_model_name": "HBoxModel",
5338
            "_view_count": null,
5339
            "_view_module": "@jupyter-widgets/controls",
5340
            "_view_module_version": "1.5.0",
5341
            "_view_name": "HBoxView",
5342
            "box_style": "",
5343
            "children": [
5344
              "IPY_MODEL_e2741973e91745ea930d3cc23070cf52",
5345
              "IPY_MODEL_b9f18367c54b4203bee70c680ae9cdde",
5346
              "IPY_MODEL_7db82bb6fa2949b3a6bc9eb152fc3af1"
5347
            ],
5348
            "layout": "IPY_MODEL_136a32dbeef646df944a8b59cb00c0c4"
5349
          }
5350
        },
5351
        "e2741973e91745ea930d3cc23070cf52": {
5352
          "model_module": "@jupyter-widgets/controls",
5353
          "model_name": "HTMLModel",
5354
          "model_module_version": "1.5.0",
5355
          "state": {
5356
            "_dom_classes": [],
5357
            "_model_module": "@jupyter-widgets/controls",
5358
            "_model_module_version": "1.5.0",
5359
            "_model_name": "HTMLModel",
5360
            "_view_count": null,
5361
            "_view_module": "@jupyter-widgets/controls",
5362
            "_view_module_version": "1.5.0",
5363
            "_view_name": "HTMLView",
5364
            "description": "",
5365
            "description_tooltip": null,
5366
            "layout": "IPY_MODEL_c2fa0ef9f45b447e9dfe5c576428c714",
5367
            "placeholder": "​",
5368
            "style": "IPY_MODEL_241dd21eeb5843ef8433e47b415c5b62",
5369
            "value": "Generating validation split:  81%"
5370
          }
5371
        },
5372
        "b9f18367c54b4203bee70c680ae9cdde": {
5373
          "model_module": "@jupyter-widgets/controls",
5374
          "model_name": "FloatProgressModel",
5375
          "model_module_version": "1.5.0",
5376
          "state": {
5377
            "_dom_classes": [],
5378
            "_model_module": "@jupyter-widgets/controls",
5379
            "_model_module_version": "1.5.0",
5380
            "_model_name": "FloatProgressModel",
5381
            "_view_count": null,
5382
            "_view_module": "@jupyter-widgets/controls",
5383
            "_view_module_version": "1.5.0",
5384
            "_view_name": "ProgressView",
5385
            "bar_style": "",
5386
            "description": "",
5387
            "description_tooltip": null,
5388
            "layout": "IPY_MODEL_c9837f88650844ea94442ad1c5682972",
5389
            "max": 408,
5390
            "min": 0,
5391
            "orientation": "horizontal",
5392
            "style": "IPY_MODEL_963da028a1594c1bbd223e93832f44bd",
5393
            "value": 408
5394
          }
5395
        },
5396
        "7db82bb6fa2949b3a6bc9eb152fc3af1": {
5397
          "model_module": "@jupyter-widgets/controls",
5398
          "model_name": "HTMLModel",
5399
          "model_module_version": "1.5.0",
5400
          "state": {
5401
            "_dom_classes": [],
5402
            "_model_module": "@jupyter-widgets/controls",
5403
            "_model_module_version": "1.5.0",
5404
            "_model_name": "HTMLModel",
5405
            "_view_count": null,
5406
            "_view_module": "@jupyter-widgets/controls",
5407
            "_view_module_version": "1.5.0",
5408
            "_view_name": "HTMLView",
5409
            "description": "",
5410
            "description_tooltip": null,
5411
            "layout": "IPY_MODEL_d981db72ab2745a598ed45a8762d5fcd",
5412
            "placeholder": "​",
5413
            "style": "IPY_MODEL_73379eb4954d4be6ab90008addd7d3bd",
5414
            "value": " 332/408 [00:00&lt;00:00, 1442.21 examples/s]"
5415
          }
5416
        },
5417
        "136a32dbeef646df944a8b59cb00c0c4": {
5418
          "model_module": "@jupyter-widgets/base",
5419
          "model_name": "LayoutModel",
5420
          "model_module_version": "1.2.0",
5421
          "state": {
5422
            "_model_module": "@jupyter-widgets/base",
5423
            "_model_module_version": "1.2.0",
5424
            "_model_name": "LayoutModel",
5425
            "_view_count": null,
5426
            "_view_module": "@jupyter-widgets/base",
5427
            "_view_module_version": "1.2.0",
5428
            "_view_name": "LayoutView",
5429
            "align_content": null,
5430
            "align_items": null,
5431
            "align_self": null,
5432
            "border": null,
5433
            "bottom": null,
5434
            "display": null,
5435
            "flex": null,
5436
            "flex_flow": null,
5437
            "grid_area": null,
5438
            "grid_auto_columns": null,
5439
            "grid_auto_flow": null,
5440
            "grid_auto_rows": null,
5441
            "grid_column": null,
5442
            "grid_gap": null,
5443
            "grid_row": null,
5444
            "grid_template_areas": null,
5445
            "grid_template_columns": null,
5446
            "grid_template_rows": null,
5447
            "height": null,
5448
            "justify_content": null,
5449
            "justify_items": null,
5450
            "left": null,
5451
            "margin": null,
5452
            "max_height": null,
5453
            "max_width": null,
5454
            "min_height": null,
5455
            "min_width": null,
5456
            "object_fit": null,
5457
            "object_position": null,
5458
            "order": null,
5459
            "overflow": null,
5460
            "overflow_x": null,
5461
            "overflow_y": null,
5462
            "padding": null,
5463
            "right": null,
5464
            "top": null,
5465
            "visibility": "hidden",
5466
            "width": null
5467
          }
5468
        },
5469
        "c2fa0ef9f45b447e9dfe5c576428c714": {
5470
          "model_module": "@jupyter-widgets/base",
5471
          "model_name": "LayoutModel",
5472
          "model_module_version": "1.2.0",
5473
          "state": {
5474
            "_model_module": "@jupyter-widgets/base",
5475
            "_model_module_version": "1.2.0",
5476
            "_model_name": "LayoutModel",
5477
            "_view_count": null,
5478
            "_view_module": "@jupyter-widgets/base",
5479
            "_view_module_version": "1.2.0",
5480
            "_view_name": "LayoutView",
5481
            "align_content": null,
5482
            "align_items": null,
5483
            "align_self": null,
5484
            "border": null,
5485
            "bottom": null,
5486
            "display": null,
5487
            "flex": null,
5488
            "flex_flow": null,
5489
            "grid_area": null,
5490
            "grid_auto_columns": null,
5491
            "grid_auto_flow": null,
5492
            "grid_auto_rows": null,
5493
            "grid_column": null,
5494
            "grid_gap": null,
5495
            "grid_row": null,
5496
            "grid_template_areas": null,
5497
            "grid_template_columns": null,
5498
            "grid_template_rows": null,
5499
            "height": null,
5500
            "justify_content": null,
5501
            "justify_items": null,
5502
            "left": null,
5503
            "margin": null,
5504
            "max_height": null,
5505
            "max_width": null,
5506
            "min_height": null,
5507
            "min_width": null,
5508
            "object_fit": null,
5509
            "object_position": null,
5510
            "order": null,
5511
            "overflow": null,
5512
            "overflow_x": null,
5513
            "overflow_y": null,
5514
            "padding": null,
5515
            "right": null,
5516
            "top": null,
5517
            "visibility": null,
5518
            "width": null
5519
          }
5520
        },
5521
        "241dd21eeb5843ef8433e47b415c5b62": {
5522
          "model_module": "@jupyter-widgets/controls",
5523
          "model_name": "DescriptionStyleModel",
5524
          "model_module_version": "1.5.0",
5525
          "state": {
5526
            "_model_module": "@jupyter-widgets/controls",
5527
            "_model_module_version": "1.5.0",
5528
            "_model_name": "DescriptionStyleModel",
5529
            "_view_count": null,
5530
            "_view_module": "@jupyter-widgets/base",
5531
            "_view_module_version": "1.2.0",
5532
            "_view_name": "StyleView",
5533
            "description_width": ""
5534
          }
5535
        },
5536
        "c9837f88650844ea94442ad1c5682972": {
5537
          "model_module": "@jupyter-widgets/base",
5538
          "model_name": "LayoutModel",
5539
          "model_module_version": "1.2.0",
5540
          "state": {
5541
            "_model_module": "@jupyter-widgets/base",
5542
            "_model_module_version": "1.2.0",
5543
            "_model_name": "LayoutModel",
5544
            "_view_count": null,
5545
            "_view_module": "@jupyter-widgets/base",
5546
            "_view_module_version": "1.2.0",
5547
            "_view_name": "LayoutView",
5548
            "align_content": null,
5549
            "align_items": null,
5550
            "align_self": null,
5551
            "border": null,
5552
            "bottom": null,
5553
            "display": null,
5554
            "flex": null,
5555
            "flex_flow": null,
5556
            "grid_area": null,
5557
            "grid_auto_columns": null,
5558
            "grid_auto_flow": null,
5559
            "grid_auto_rows": null,
5560
            "grid_column": null,
5561
            "grid_gap": null,
5562
            "grid_row": null,
5563
            "grid_template_areas": null,
5564
            "grid_template_columns": null,
5565
            "grid_template_rows": null,
5566
            "height": null,
5567
            "justify_content": null,
5568
            "justify_items": null,
5569
            "left": null,
5570
            "margin": null,
5571
            "max_height": null,
5572
            "max_width": null,
5573
            "min_height": null,
5574
            "min_width": null,
5575
            "object_fit": null,
5576
            "object_position": null,
5577
            "order": null,
5578
            "overflow": null,
5579
            "overflow_x": null,
5580
            "overflow_y": null,
5581
            "padding": null,
5582
            "right": null,
5583
            "top": null,
5584
            "visibility": null,
5585
            "width": null
5586
          }
5587
        },
5588
        "963da028a1594c1bbd223e93832f44bd": {
5589
          "model_module": "@jupyter-widgets/controls",
5590
          "model_name": "ProgressStyleModel",
5591
          "model_module_version": "1.5.0",
5592
          "state": {
5593
            "_model_module": "@jupyter-widgets/controls",
5594
            "_model_module_version": "1.5.0",
5595
            "_model_name": "ProgressStyleModel",
5596
            "_view_count": null,
5597
            "_view_module": "@jupyter-widgets/base",
5598
            "_view_module_version": "1.2.0",
5599
            "_view_name": "StyleView",
5600
            "bar_color": null,
5601
            "description_width": ""
5602
          }
5603
        },
5604
        "d981db72ab2745a598ed45a8762d5fcd": {
5605
          "model_module": "@jupyter-widgets/base",
5606
          "model_name": "LayoutModel",
5607
          "model_module_version": "1.2.0",
5608
          "state": {
5609
            "_model_module": "@jupyter-widgets/base",
5610
            "_model_module_version": "1.2.0",
5611
            "_model_name": "LayoutModel",
5612
            "_view_count": null,
5613
            "_view_module": "@jupyter-widgets/base",
5614
            "_view_module_version": "1.2.0",
5615
            "_view_name": "LayoutView",
5616
            "align_content": null,
5617
            "align_items": null,
5618
            "align_self": null,
5619
            "border": null,
5620
            "bottom": null,
5621
            "display": null,
5622
            "flex": null,
5623
            "flex_flow": null,
5624
            "grid_area": null,
5625
            "grid_auto_columns": null,
5626
            "grid_auto_flow": null,
5627
            "grid_auto_rows": null,
5628
            "grid_column": null,
5629
            "grid_gap": null,
5630
            "grid_row": null,
5631
            "grid_template_areas": null,
5632
            "grid_template_columns": null,
5633
            "grid_template_rows": null,
5634
            "height": null,
5635
            "justify_content": null,
5636
            "justify_items": null,
5637
            "left": null,
5638
            "margin": null,
5639
            "max_height": null,
5640
            "max_width": null,
5641
            "min_height": null,
5642
            "min_width": null,
5643
            "object_fit": null,
5644
            "object_position": null,
5645
            "order": null,
5646
            "overflow": null,
5647
            "overflow_x": null,
5648
            "overflow_y": null,
5649
            "padding": null,
5650
            "right": null,
5651
            "top": null,
5652
            "visibility": null,
5653
            "width": null
5654
          }
5655
        },
5656
        "73379eb4954d4be6ab90008addd7d3bd": {
5657
          "model_module": "@jupyter-widgets/controls",
5658
          "model_name": "DescriptionStyleModel",
5659
          "model_module_version": "1.5.0",
5660
          "state": {
5661
            "_model_module": "@jupyter-widgets/controls",
5662
            "_model_module_version": "1.5.0",
5663
            "_model_name": "DescriptionStyleModel",
5664
            "_view_count": null,
5665
            "_view_module": "@jupyter-widgets/base",
5666
            "_view_module_version": "1.2.0",
5667
            "_view_name": "StyleView",
5668
            "description_width": ""
5669
          }
5670
        },
5671
        "007f2f512694405c9245edd5e1f58551": {
5672
          "model_module": "@jupyter-widgets/controls",
5673
          "model_name": "HBoxModel",
5674
          "model_module_version": "1.5.0",
5675
          "state": {
5676
            "_dom_classes": [],
5677
            "_model_module": "@jupyter-widgets/controls",
5678
            "_model_module_version": "1.5.0",
5679
            "_model_name": "HBoxModel",
5680
            "_view_count": null,
5681
            "_view_module": "@jupyter-widgets/controls",
5682
            "_view_module_version": "1.5.0",
5683
            "_view_name": "HBoxView",
5684
            "box_style": "",
5685
            "children": [
5686
              "IPY_MODEL_9aaeeb1213854768a6af51f8db54f6b6",
5687
              "IPY_MODEL_e6e2192c0a904bb6850c6bc68b579995",
5688
              "IPY_MODEL_608a68c6f651419d8fd210044b4561cf"
5689
            ],
5690
            "layout": "IPY_MODEL_ac9d6255521f428fa7fda5735d71dbec"
5691
          }
5692
        },
5693
        "9aaeeb1213854768a6af51f8db54f6b6": {
5694
          "model_module": "@jupyter-widgets/controls",
5695
          "model_name": "HTMLModel",
5696
          "model_module_version": "1.5.0",
5697
          "state": {
5698
            "_dom_classes": [],
5699
            "_model_module": "@jupyter-widgets/controls",
5700
            "_model_module_version": "1.5.0",
5701
            "_model_name": "HTMLModel",
5702
            "_view_count": null,
5703
            "_view_module": "@jupyter-widgets/controls",
5704
            "_view_module_version": "1.5.0",
5705
            "_view_name": "HTMLView",
5706
            "description": "",
5707
            "description_tooltip": null,
5708
            "layout": "IPY_MODEL_a39ea243b7964c298eae71e9eaf32e17",
5709
            "placeholder": "​",
5710
            "style": "IPY_MODEL_bf7f7cb363df4384ade192666b77c715",
5711
            "value": "Generating test split:  51%"
5712
          }
5713
        },
5714
        "e6e2192c0a904bb6850c6bc68b579995": {
5715
          "model_module": "@jupyter-widgets/controls",
5716
          "model_name": "FloatProgressModel",
5717
          "model_module_version": "1.5.0",
5718
          "state": {
5719
            "_dom_classes": [],
5720
            "_model_module": "@jupyter-widgets/controls",
5721
            "_model_module_version": "1.5.0",
5722
            "_model_name": "FloatProgressModel",
5723
            "_view_count": null,
5724
            "_view_module": "@jupyter-widgets/controls",
5725
            "_view_module_version": "1.5.0",
5726
            "_view_name": "ProgressView",
5727
            "bar_style": "",
5728
            "description": "",
5729
            "description_tooltip": null,
5730
            "layout": "IPY_MODEL_841f3571fcec42ad8e1e43997567788c",
5731
            "max": 1725,
5732
            "min": 0,
5733
            "orientation": "horizontal",
5734
            "style": "IPY_MODEL_a246e6c60c054b4383c510c31b255a87",
5735
            "value": 1725
5736
          }
5737
        },
5738
        "608a68c6f651419d8fd210044b4561cf": {
5739
          "model_module": "@jupyter-widgets/controls",
5740
          "model_name": "HTMLModel",
5741
          "model_module_version": "1.5.0",
5742
          "state": {
5743
            "_dom_classes": [],
5744
            "_model_module": "@jupyter-widgets/controls",
5745
            "_model_module_version": "1.5.0",
5746
            "_model_name": "HTMLModel",
5747
            "_view_count": null,
5748
            "_view_module": "@jupyter-widgets/controls",
5749
            "_view_module_version": "1.5.0",
5750
            "_view_name": "HTMLView",
5751
            "description": "",
5752
            "description_tooltip": null,
5753
            "layout": "IPY_MODEL_da3e335ddc9846ea832c75d69684575f",
5754
            "placeholder": "​",
5755
            "style": "IPY_MODEL_daa8ce62f0204a11bde7cd9e31cc2fa1",
5756
            "value": " 880/1725 [00:00&lt;00:00, 4478.16 examples/s]"
5757
          }
5758
        },
5759
        "ac9d6255521f428fa7fda5735d71dbec": {
5760
          "model_module": "@jupyter-widgets/base",
5761
          "model_name": "LayoutModel",
5762
          "model_module_version": "1.2.0",
5763
          "state": {
5764
            "_model_module": "@jupyter-widgets/base",
5765
            "_model_module_version": "1.2.0",
5766
            "_model_name": "LayoutModel",
5767
            "_view_count": null,
5768
            "_view_module": "@jupyter-widgets/base",
5769
            "_view_module_version": "1.2.0",
5770
            "_view_name": "LayoutView",
5771
            "align_content": null,
5772
            "align_items": null,
5773
            "align_self": null,
5774
            "border": null,
5775
            "bottom": null,
5776
            "display": null,
5777
            "flex": null,
5778
            "flex_flow": null,
5779
            "grid_area": null,
5780
            "grid_auto_columns": null,
5781
            "grid_auto_flow": null,
5782
            "grid_auto_rows": null,
5783
            "grid_column": null,
5784
            "grid_gap": null,
5785
            "grid_row": null,
5786
            "grid_template_areas": null,
5787
            "grid_template_columns": null,
5788
            "grid_template_rows": null,
5789
            "height": null,
5790
            "justify_content": null,
5791
            "justify_items": null,
5792
            "left": null,
5793
            "margin": null,
5794
            "max_height": null,
5795
            "max_width": null,
5796
            "min_height": null,
5797
            "min_width": null,
5798
            "object_fit": null,
5799
            "object_position": null,
5800
            "order": null,
5801
            "overflow": null,
5802
            "overflow_x": null,
5803
            "overflow_y": null,
5804
            "padding": null,
5805
            "right": null,
5806
            "top": null,
5807
            "visibility": "hidden",
5808
            "width": null
5809
          }
5810
        },
5811
        "a39ea243b7964c298eae71e9eaf32e17": {
5812
          "model_module": "@jupyter-widgets/base",
5813
          "model_name": "LayoutModel",
5814
          "model_module_version": "1.2.0",
5815
          "state": {
5816
            "_model_module": "@jupyter-widgets/base",
5817
            "_model_module_version": "1.2.0",
5818
            "_model_name": "LayoutModel",
5819
            "_view_count": null,
5820
            "_view_module": "@jupyter-widgets/base",
5821
            "_view_module_version": "1.2.0",
5822
            "_view_name": "LayoutView",
5823
            "align_content": null,
5824
            "align_items": null,
5825
            "align_self": null,
5826
            "border": null,
5827
            "bottom": null,
5828
            "display": null,
5829
            "flex": null,
5830
            "flex_flow": null,
5831
            "grid_area": null,
5832
            "grid_auto_columns": null,
5833
            "grid_auto_flow": null,
5834
            "grid_auto_rows": null,
5835
            "grid_column": null,
5836
            "grid_gap": null,
5837
            "grid_row": null,
5838
            "grid_template_areas": null,
5839
            "grid_template_columns": null,
5840
            "grid_template_rows": null,
5841
            "height": null,
5842
            "justify_content": null,
5843
            "justify_items": null,
5844
            "left": null,
5845
            "margin": null,
5846
            "max_height": null,
5847
            "max_width": null,
5848
            "min_height": null,
5849
            "min_width": null,
5850
            "object_fit": null,
5851
            "object_position": null,
5852
            "order": null,
5853
            "overflow": null,
5854
            "overflow_x": null,
5855
            "overflow_y": null,
5856
            "padding": null,
5857
            "right": null,
5858
            "top": null,
5859
            "visibility": null,
5860
            "width": null
5861
          }
5862
        },
5863
        "bf7f7cb363df4384ade192666b77c715": {
5864
          "model_module": "@jupyter-widgets/controls",
5865
          "model_name": "DescriptionStyleModel",
5866
          "model_module_version": "1.5.0",
5867
          "state": {
5868
            "_model_module": "@jupyter-widgets/controls",
5869
            "_model_module_version": "1.5.0",
5870
            "_model_name": "DescriptionStyleModel",
5871
            "_view_count": null,
5872
            "_view_module": "@jupyter-widgets/base",
5873
            "_view_module_version": "1.2.0",
5874
            "_view_name": "StyleView",
5875
            "description_width": ""
5876
          }
5877
        },
5878
        "841f3571fcec42ad8e1e43997567788c": {
5879
          "model_module": "@jupyter-widgets/base",
5880
          "model_name": "LayoutModel",
5881
          "model_module_version": "1.2.0",
5882
          "state": {
5883
            "_model_module": "@jupyter-widgets/base",
5884
            "_model_module_version": "1.2.0",
5885
            "_model_name": "LayoutModel",
5886
            "_view_count": null,
5887
            "_view_module": "@jupyter-widgets/base",
5888
            "_view_module_version": "1.2.0",
5889
            "_view_name": "LayoutView",
5890
            "align_content": null,
5891
            "align_items": null,
5892
            "align_self": null,
5893
            "border": null,
5894
            "bottom": null,
5895
            "display": null,
5896
            "flex": null,
5897
            "flex_flow": null,
5898
            "grid_area": null,
5899
            "grid_auto_columns": null,
5900
            "grid_auto_flow": null,
5901
            "grid_auto_rows": null,
5902
            "grid_column": null,
5903
            "grid_gap": null,
5904
            "grid_row": null,
5905
            "grid_template_areas": null,
5906
            "grid_template_columns": null,
5907
            "grid_template_rows": null,
5908
            "height": null,
5909
            "justify_content": null,
5910
            "justify_items": null,
5911
            "left": null,
5912
            "margin": null,
5913
            "max_height": null,
5914
            "max_width": null,
5915
            "min_height": null,
5916
            "min_width": null,
5917
            "object_fit": null,
5918
            "object_position": null,
5919
            "order": null,
5920
            "overflow": null,
5921
            "overflow_x": null,
5922
            "overflow_y": null,
5923
            "padding": null,
5924
            "right": null,
5925
            "top": null,
5926
            "visibility": null,
5927
            "width": null
5928
          }
5929
        },
5930
        "a246e6c60c054b4383c510c31b255a87": {
5931
          "model_module": "@jupyter-widgets/controls",
5932
          "model_name": "ProgressStyleModel",
5933
          "model_module_version": "1.5.0",
5934
          "state": {
5935
            "_model_module": "@jupyter-widgets/controls",
5936
            "_model_module_version": "1.5.0",
5937
            "_model_name": "ProgressStyleModel",
5938
            "_view_count": null,
5939
            "_view_module": "@jupyter-widgets/base",
5940
            "_view_module_version": "1.2.0",
5941
            "_view_name": "StyleView",
5942
            "bar_color": null,
5943
            "description_width": ""
5944
          }
5945
        },
5946
        "da3e335ddc9846ea832c75d69684575f": {
5947
          "model_module": "@jupyter-widgets/base",
5948
          "model_name": "LayoutModel",
5949
          "model_module_version": "1.2.0",
5950
          "state": {
5951
            "_model_module": "@jupyter-widgets/base",
5952
            "_model_module_version": "1.2.0",
5953
            "_model_name": "LayoutModel",
5954
            "_view_count": null,
5955
            "_view_module": "@jupyter-widgets/base",
5956
            "_view_module_version": "1.2.0",
5957
            "_view_name": "LayoutView",
5958
            "align_content": null,
5959
            "align_items": null,
5960
            "align_self": null,
5961
            "border": null,
5962
            "bottom": null,
5963
            "display": null,
5964
            "flex": null,
5965
            "flex_flow": null,
5966
            "grid_area": null,
5967
            "grid_auto_columns": null,
5968
            "grid_auto_flow": null,
5969
            "grid_auto_rows": null,
5970
            "grid_column": null,
5971
            "grid_gap": null,
5972
            "grid_row": null,
5973
            "grid_template_areas": null,
5974
            "grid_template_columns": null,
5975
            "grid_template_rows": null,
5976
            "height": null,
5977
            "justify_content": null,
5978
            "justify_items": null,
5979
            "left": null,
5980
            "margin": null,
5981
            "max_height": null,
5982
            "max_width": null,
5983
            "min_height": null,
5984
            "min_width": null,
5985
            "object_fit": null,
5986
            "object_position": null,
5987
            "order": null,
5988
            "overflow": null,
5989
            "overflow_x": null,
5990
            "overflow_y": null,
5991
            "padding": null,
5992
            "right": null,
5993
            "top": null,
5994
            "visibility": null,
5995
            "width": null
5996
          }
5997
        },
5998
        "daa8ce62f0204a11bde7cd9e31cc2fa1": {
5999
          "model_module": "@jupyter-widgets/controls",
6000
          "model_name": "DescriptionStyleModel",
6001
          "model_module_version": "1.5.0",
6002
          "state": {
6003
            "_model_module": "@jupyter-widgets/controls",
6004
            "_model_module_version": "1.5.0",
6005
            "_model_name": "DescriptionStyleModel",
6006
            "_view_count": null,
6007
            "_view_module": "@jupyter-widgets/base",
6008
            "_view_module_version": "1.2.0",
6009
            "_view_name": "StyleView",
6010
            "description_width": ""
6011
          }
6012
        },
6013
        "6b937f0053b64c67af74d44bcb6e51b7": {
6014
          "model_module": "@jupyter-widgets/controls",
6015
          "model_name": "HBoxModel",
6016
          "model_module_version": "1.5.0",
6017
          "state": {
6018
            "_dom_classes": [],
6019
            "_model_module": "@jupyter-widgets/controls",
6020
            "_model_module_version": "1.5.0",
6021
            "_model_name": "HBoxModel",
6022
            "_view_count": null,
6023
            "_view_module": "@jupyter-widgets/controls",
6024
            "_view_module_version": "1.5.0",
6025
            "_view_name": "HBoxView",
6026
            "box_style": "",
6027
            "children": [
6028
              "IPY_MODEL_72f55658a145483cb90668bf7b6f6c8a",
6029
              "IPY_MODEL_357c082907e140b58c807a394446d811",
6030
              "IPY_MODEL_f127594b694f4d2fafb3872e8190b1d6"
6031
            ],
6032
            "layout": "IPY_MODEL_f9c8bd12201a4c8a86b2bb3c1a14d74e"
6033
          }
6034
        },
6035
        "72f55658a145483cb90668bf7b6f6c8a": {
6036
          "model_module": "@jupyter-widgets/controls",
6037
          "model_name": "HTMLModel",
6038
          "model_module_version": "1.5.0",
6039
          "state": {
6040
            "_dom_classes": [],
6041
            "_model_module": "@jupyter-widgets/controls",
6042
            "_model_module_version": "1.5.0",
6043
            "_model_name": "HTMLModel",
6044
            "_view_count": null,
6045
            "_view_module": "@jupyter-widgets/controls",
6046
            "_view_module_version": "1.5.0",
6047
            "_view_name": "HTMLView",
6048
            "description": "",
6049
            "description_tooltip": null,
6050
            "layout": "IPY_MODEL_dc55ec8e57984efcb0f269ef0ef41c02",
6051
            "placeholder": "​",
6052
            "style": "IPY_MODEL_cd07261ef21a4b859de53f244df33f2a",
6053
            "value": "100%"
6054
          }
6055
        },
6056
        "357c082907e140b58c807a394446d811": {
6057
          "model_module": "@jupyter-widgets/controls",
6058
          "model_name": "FloatProgressModel",
6059
          "model_module_version": "1.5.0",
6060
          "state": {
6061
            "_dom_classes": [],
6062
            "_model_module": "@jupyter-widgets/controls",
6063
            "_model_module_version": "1.5.0",
6064
            "_model_name": "FloatProgressModel",
6065
            "_view_count": null,
6066
            "_view_module": "@jupyter-widgets/controls",
6067
            "_view_module_version": "1.5.0",
6068
            "_view_name": "ProgressView",
6069
            "bar_style": "success",
6070
            "description": "",
6071
            "description_tooltip": null,
6072
            "layout": "IPY_MODEL_c47de12dd692434ab9497e8a0d2a19ba",
6073
            "max": 3,
6074
            "min": 0,
6075
            "orientation": "horizontal",
6076
            "style": "IPY_MODEL_963b22b2ef1e45f5ba8320f72ea6a83b",
6077
            "value": 3
6078
          }
6079
        },
6080
        "f127594b694f4d2fafb3872e8190b1d6": {
6081
          "model_module": "@jupyter-widgets/controls",
6082
          "model_name": "HTMLModel",
6083
          "model_module_version": "1.5.0",
6084
          "state": {
6085
            "_dom_classes": [],
6086
            "_model_module": "@jupyter-widgets/controls",
6087
            "_model_module_version": "1.5.0",
6088
            "_model_name": "HTMLModel",
6089
            "_view_count": null,
6090
            "_view_module": "@jupyter-widgets/controls",
6091
            "_view_module_version": "1.5.0",
6092
            "_view_name": "HTMLView",
6093
            "description": "",
6094
            "description_tooltip": null,
6095
            "layout": "IPY_MODEL_3e2ca33b7473499d8314238ec245cd90",
6096
            "placeholder": "​",
6097
            "style": "IPY_MODEL_e3313a7fb356432bada289ad346f1bdb",
6098
            "value": " 3/3 [00:00&lt;00:00, 58.47it/s]"
6099
          }
6100
        },
6101
        "f9c8bd12201a4c8a86b2bb3c1a14d74e": {
6102
          "model_module": "@jupyter-widgets/base",
6103
          "model_name": "LayoutModel",
6104
          "model_module_version": "1.2.0",
6105
          "state": {
6106
            "_model_module": "@jupyter-widgets/base",
6107
            "_model_module_version": "1.2.0",
6108
            "_model_name": "LayoutModel",
6109
            "_view_count": null,
6110
            "_view_module": "@jupyter-widgets/base",
6111
            "_view_module_version": "1.2.0",
6112
            "_view_name": "LayoutView",
6113
            "align_content": null,
6114
            "align_items": null,
6115
            "align_self": null,
6116
            "border": null,
6117
            "bottom": null,
6118
            "display": null,
6119
            "flex": null,
6120
            "flex_flow": null,
6121
            "grid_area": null,
6122
            "grid_auto_columns": null,
6123
            "grid_auto_flow": null,
6124
            "grid_auto_rows": null,
6125
            "grid_column": null,
6126
            "grid_gap": null,
6127
            "grid_row": null,
6128
            "grid_template_areas": null,
6129
            "grid_template_columns": null,
6130
            "grid_template_rows": null,
6131
            "height": null,
6132
            "justify_content": null,
6133
            "justify_items": null,
6134
            "left": null,
6135
            "margin": null,
6136
            "max_height": null,
6137
            "max_width": null,
6138
            "min_height": null,
6139
            "min_width": null,
6140
            "object_fit": null,
6141
            "object_position": null,
6142
            "order": null,
6143
            "overflow": null,
6144
            "overflow_x": null,
6145
            "overflow_y": null,
6146
            "padding": null,
6147
            "right": null,
6148
            "top": null,
6149
            "visibility": null,
6150
            "width": null
6151
          }
6152
        },
6153
        "dc55ec8e57984efcb0f269ef0ef41c02": {
6154
          "model_module": "@jupyter-widgets/base",
6155
          "model_name": "LayoutModel",
6156
          "model_module_version": "1.2.0",
6157
          "state": {
6158
            "_model_module": "@jupyter-widgets/base",
6159
            "_model_module_version": "1.2.0",
6160
            "_model_name": "LayoutModel",
6161
            "_view_count": null,
6162
            "_view_module": "@jupyter-widgets/base",
6163
            "_view_module_version": "1.2.0",
6164
            "_view_name": "LayoutView",
6165
            "align_content": null,
6166
            "align_items": null,
6167
            "align_self": null,
6168
            "border": null,
6169
            "bottom": null,
6170
            "display": null,
6171
            "flex": null,
6172
            "flex_flow": null,
6173
            "grid_area": null,
6174
            "grid_auto_columns": null,
6175
            "grid_auto_flow": null,
6176
            "grid_auto_rows": null,
6177
            "grid_column": null,
6178
            "grid_gap": null,
6179
            "grid_row": null,
6180
            "grid_template_areas": null,
6181
            "grid_template_columns": null,
6182
            "grid_template_rows": null,
6183
            "height": null,
6184
            "justify_content": null,
6185
            "justify_items": null,
6186
            "left": null,
6187
            "margin": null,
6188
            "max_height": null,
6189
            "max_width": null,
6190
            "min_height": null,
6191
            "min_width": null,
6192
            "object_fit": null,
6193
            "object_position": null,
6194
            "order": null,
6195
            "overflow": null,
6196
            "overflow_x": null,
6197
            "overflow_y": null,
6198
            "padding": null,
6199
            "right": null,
6200
            "top": null,
6201
            "visibility": null,
6202
            "width": null
6203
          }
6204
        },
6205
        "cd07261ef21a4b859de53f244df33f2a": {
6206
          "model_module": "@jupyter-widgets/controls",
6207
          "model_name": "DescriptionStyleModel",
6208
          "model_module_version": "1.5.0",
6209
          "state": {
6210
            "_model_module": "@jupyter-widgets/controls",
6211
            "_model_module_version": "1.5.0",
6212
            "_model_name": "DescriptionStyleModel",
6213
            "_view_count": null,
6214
            "_view_module": "@jupyter-widgets/base",
6215
            "_view_module_version": "1.2.0",
6216
            "_view_name": "StyleView",
6217
            "description_width": ""
6218
          }
6219
        },
6220
        "c47de12dd692434ab9497e8a0d2a19ba": {
6221
          "model_module": "@jupyter-widgets/base",
6222
          "model_name": "LayoutModel",
6223
          "model_module_version": "1.2.0",
6224
          "state": {
6225
            "_model_module": "@jupyter-widgets/base",
6226
            "_model_module_version": "1.2.0",
6227
            "_model_name": "LayoutModel",
6228
            "_view_count": null,
6229
            "_view_module": "@jupyter-widgets/base",
6230
            "_view_module_version": "1.2.0",
6231
            "_view_name": "LayoutView",
6232
            "align_content": null,
6233
            "align_items": null,
6234
            "align_self": null,
6235
            "border": null,
6236
            "bottom": null,
6237
            "display": null,
6238
            "flex": null,
6239
            "flex_flow": null,
6240
            "grid_area": null,
6241
            "grid_auto_columns": null,
6242
            "grid_auto_flow": null,
6243
            "grid_auto_rows": null,
6244
            "grid_column": null,
6245
            "grid_gap": null,
6246
            "grid_row": null,
6247
            "grid_template_areas": null,
6248
            "grid_template_columns": null,
6249
            "grid_template_rows": null,
6250
            "height": null,
6251
            "justify_content": null,
6252
            "justify_items": null,
6253
            "left": null,
6254
            "margin": null,
6255
            "max_height": null,
6256
            "max_width": null,
6257
            "min_height": null,
6258
            "min_width": null,
6259
            "object_fit": null,
6260
            "object_position": null,
6261
            "order": null,
6262
            "overflow": null,
6263
            "overflow_x": null,
6264
            "overflow_y": null,
6265
            "padding": null,
6266
            "right": null,
6267
            "top": null,
6268
            "visibility": null,
6269
            "width": null
6270
          }
6271
        },
6272
        "963b22b2ef1e45f5ba8320f72ea6a83b": {
6273
          "model_module": "@jupyter-widgets/controls",
6274
          "model_name": "ProgressStyleModel",
6275
          "model_module_version": "1.5.0",
6276
          "state": {
6277
            "_model_module": "@jupyter-widgets/controls",
6278
            "_model_module_version": "1.5.0",
6279
            "_model_name": "ProgressStyleModel",
6280
            "_view_count": null,
6281
            "_view_module": "@jupyter-widgets/base",
6282
            "_view_module_version": "1.2.0",
6283
            "_view_name": "StyleView",
6284
            "bar_color": null,
6285
            "description_width": ""
6286
          }
6287
        },
6288
        "3e2ca33b7473499d8314238ec245cd90": {
6289
          "model_module": "@jupyter-widgets/base",
6290
          "model_name": "LayoutModel",
6291
          "model_module_version": "1.2.0",
6292
          "state": {
6293
            "_model_module": "@jupyter-widgets/base",
6294
            "_model_module_version": "1.2.0",
6295
            "_model_name": "LayoutModel",
6296
            "_view_count": null,
6297
            "_view_module": "@jupyter-widgets/base",
6298
            "_view_module_version": "1.2.0",
6299
            "_view_name": "LayoutView",
6300
            "align_content": null,
6301
            "align_items": null,
6302
            "align_self": null,
6303
            "border": null,
6304
            "bottom": null,
6305
            "display": null,
6306
            "flex": null,
6307
            "flex_flow": null,
6308
            "grid_area": null,
6309
            "grid_auto_columns": null,
6310
            "grid_auto_flow": null,
6311
            "grid_auto_rows": null,
6312
            "grid_column": null,
6313
            "grid_gap": null,
6314
            "grid_row": null,
6315
            "grid_template_areas": null,
6316
            "grid_template_columns": null,
6317
            "grid_template_rows": null,
6318
            "height": null,
6319
            "justify_content": null,
6320
            "justify_items": null,
6321
            "left": null,
6322
            "margin": null,
6323
            "max_height": null,
6324
            "max_width": null,
6325
            "min_height": null,
6326
            "min_width": null,
6327
            "object_fit": null,
6328
            "object_position": null,
6329
            "order": null,
6330
            "overflow": null,
6331
            "overflow_x": null,
6332
            "overflow_y": null,
6333
            "padding": null,
6334
            "right": null,
6335
            "top": null,
6336
            "visibility": null,
6337
            "width": null
6338
          }
6339
        },
6340
        "e3313a7fb356432bada289ad346f1bdb": {
6341
          "model_module": "@jupyter-widgets/controls",
6342
          "model_name": "DescriptionStyleModel",
6343
          "model_module_version": "1.5.0",
6344
          "state": {
6345
            "_model_module": "@jupyter-widgets/controls",
6346
            "_model_module_version": "1.5.0",
6347
            "_model_name": "DescriptionStyleModel",
6348
            "_view_count": null,
6349
            "_view_module": "@jupyter-widgets/base",
6350
            "_view_module_version": "1.2.0",
6351
            "_view_name": "StyleView",
6352
            "description_width": ""
6353
          }
6354
        },
6355
        "75ee099566ca46eb8a75475246aaab01": {
6356
          "model_module": "@jupyter-widgets/controls",
6357
          "model_name": "HBoxModel",
6358
          "model_module_version": "1.5.0",
6359
          "state": {
6360
            "_dom_classes": [],
6361
            "_model_module": "@jupyter-widgets/controls",
6362
            "_model_module_version": "1.5.0",
6363
            "_model_name": "HBoxModel",
6364
            "_view_count": null,
6365
            "_view_module": "@jupyter-widgets/controls",
6366
            "_view_module_version": "1.5.0",
6367
            "_view_name": "HBoxView",
6368
            "box_style": "",
6369
            "children": [
6370
              "IPY_MODEL_e94dd1ea928f43b880af21ced7f11d14",
6371
              "IPY_MODEL_ad84cdcfa07f4f608dccd10395d35e79",
6372
              "IPY_MODEL_8bd3a235ae654b1cbaae36aeb1a62e70"
6373
            ],
6374
            "layout": "IPY_MODEL_ebe2f83a5783401ab501cdaf9c4e2ad5"
6375
          }
6376
        },
6377
        "e94dd1ea928f43b880af21ced7f11d14": {
6378
          "model_module": "@jupyter-widgets/controls",
6379
          "model_name": "HTMLModel",
6380
          "model_module_version": "1.5.0",
6381
          "state": {
6382
            "_dom_classes": [],
6383
            "_model_module": "@jupyter-widgets/controls",
6384
            "_model_module_version": "1.5.0",
6385
            "_model_name": "HTMLModel",
6386
            "_view_count": null,
6387
            "_view_module": "@jupyter-widgets/controls",
6388
            "_view_module_version": "1.5.0",
6389
            "_view_name": "HTMLView",
6390
            "description": "",
6391
            "description_tooltip": null,
6392
            "layout": "IPY_MODEL_fe20644617844cf7a471e22a99ca7b5e",
6393
            "placeholder": "​",
6394
            "style": "IPY_MODEL_d5502b7dcf784d289fc748881924334c",
6395
            "value": "Downloading builder script: 100%"
6396
          }
6397
        },
6398
        "ad84cdcfa07f4f608dccd10395d35e79": {
6399
          "model_module": "@jupyter-widgets/controls",
6400
          "model_name": "FloatProgressModel",
6401
          "model_module_version": "1.5.0",
6402
          "state": {
6403
            "_dom_classes": [],
6404
            "_model_module": "@jupyter-widgets/controls",
6405
            "_model_module_version": "1.5.0",
6406
            "_model_name": "FloatProgressModel",
6407
            "_view_count": null,
6408
            "_view_module": "@jupyter-widgets/controls",
6409
            "_view_module_version": "1.5.0",
6410
            "_view_name": "ProgressView",
6411
            "bar_style": "success",
6412
            "description": "",
6413
            "description_tooltip": null,
6414
            "layout": "IPY_MODEL_6bf5b27d3c3c407eb10f8d9d6e8e8d22",
6415
            "max": 5749,
6416
            "min": 0,
6417
            "orientation": "horizontal",
6418
            "style": "IPY_MODEL_47480982ce83440997297e605cdf8a31",
6419
            "value": 5749
6420
          }
6421
        },
6422
        "8bd3a235ae654b1cbaae36aeb1a62e70": {
6423
          "model_module": "@jupyter-widgets/controls",
6424
          "model_name": "HTMLModel",
6425
          "model_module_version": "1.5.0",
6426
          "state": {
6427
            "_dom_classes": [],
6428
            "_model_module": "@jupyter-widgets/controls",
6429
            "_model_module_version": "1.5.0",
6430
            "_model_name": "HTMLModel",
6431
            "_view_count": null,
6432
            "_view_module": "@jupyter-widgets/controls",
6433
            "_view_module_version": "1.5.0",
6434
            "_view_name": "HTMLView",
6435
            "description": "",
6436
            "description_tooltip": null,
6437
            "layout": "IPY_MODEL_32764784cc9644198c622f6706db6836",
6438
            "placeholder": "​",
6439
            "style": "IPY_MODEL_83bae5949ec448c6ad6f68a7b8d3d436",
6440
            "value": " 5.75k/5.75k [00:00&lt;00:00, 183kB/s]"
6441
          }
6442
        },
6443
        "ebe2f83a5783401ab501cdaf9c4e2ad5": {
6444
          "model_module": "@jupyter-widgets/base",
6445
          "model_name": "LayoutModel",
6446
          "model_module_version": "1.2.0",
6447
          "state": {
6448
            "_model_module": "@jupyter-widgets/base",
6449
            "_model_module_version": "1.2.0",
6450
            "_model_name": "LayoutModel",
6451
            "_view_count": null,
6452
            "_view_module": "@jupyter-widgets/base",
6453
            "_view_module_version": "1.2.0",
6454
            "_view_name": "LayoutView",
6455
            "align_content": null,
6456
            "align_items": null,
6457
            "align_self": null,
6458
            "border": null,
6459
            "bottom": null,
6460
            "display": null,
6461
            "flex": null,
6462
            "flex_flow": null,
6463
            "grid_area": null,
6464
            "grid_auto_columns": null,
6465
            "grid_auto_flow": null,
6466
            "grid_auto_rows": null,
6467
            "grid_column": null,
6468
            "grid_gap": null,
6469
            "grid_row": null,
6470
            "grid_template_areas": null,
6471
            "grid_template_columns": null,
6472
            "grid_template_rows": null,
6473
            "height": null,
6474
            "justify_content": null,
6475
            "justify_items": null,
6476
            "left": null,
6477
            "margin": null,
6478
            "max_height": null,
6479
            "max_width": null,
6480
            "min_height": null,
6481
            "min_width": null,
6482
            "object_fit": null,
6483
            "object_position": null,
6484
            "order": null,
6485
            "overflow": null,
6486
            "overflow_x": null,
6487
            "overflow_y": null,
6488
            "padding": null,
6489
            "right": null,
6490
            "top": null,
6491
            "visibility": null,
6492
            "width": null
6493
          }
6494
        },
6495
        "fe20644617844cf7a471e22a99ca7b5e": {
6496
          "model_module": "@jupyter-widgets/base",
6497
          "model_name": "LayoutModel",
6498
          "model_module_version": "1.2.0",
6499
          "state": {
6500
            "_model_module": "@jupyter-widgets/base",
6501
            "_model_module_version": "1.2.0",
6502
            "_model_name": "LayoutModel",
6503
            "_view_count": null,
6504
            "_view_module": "@jupyter-widgets/base",
6505
            "_view_module_version": "1.2.0",
6506
            "_view_name": "LayoutView",
6507
            "align_content": null,
6508
            "align_items": null,
6509
            "align_self": null,
6510
            "border": null,
6511
            "bottom": null,
6512
            "display": null,
6513
            "flex": null,
6514
            "flex_flow": null,
6515
            "grid_area": null,
6516
            "grid_auto_columns": null,
6517
            "grid_auto_flow": null,
6518
            "grid_auto_rows": null,
6519
            "grid_column": null,
6520
            "grid_gap": null,
6521
            "grid_row": null,
6522
            "grid_template_areas": null,
6523
            "grid_template_columns": null,
6524
            "grid_template_rows": null,
6525
            "height": null,
6526
            "justify_content": null,
6527
            "justify_items": null,
6528
            "left": null,
6529
            "margin": null,
6530
            "max_height": null,
6531
            "max_width": null,
6532
            "min_height": null,
6533
            "min_width": null,
6534
            "object_fit": null,
6535
            "object_position": null,
6536
            "order": null,
6537
            "overflow": null,
6538
            "overflow_x": null,
6539
            "overflow_y": null,
6540
            "padding": null,
6541
            "right": null,
6542
            "top": null,
6543
            "visibility": null,
6544
            "width": null
6545
          }
6546
        },
6547
        "d5502b7dcf784d289fc748881924334c": {
6548
          "model_module": "@jupyter-widgets/controls",
6549
          "model_name": "DescriptionStyleModel",
6550
          "model_module_version": "1.5.0",
6551
          "state": {
6552
            "_model_module": "@jupyter-widgets/controls",
6553
            "_model_module_version": "1.5.0",
6554
            "_model_name": "DescriptionStyleModel",
6555
            "_view_count": null,
6556
            "_view_module": "@jupyter-widgets/base",
6557
            "_view_module_version": "1.2.0",
6558
            "_view_name": "StyleView",
6559
            "description_width": ""
6560
          }
6561
        },
6562
        "6bf5b27d3c3c407eb10f8d9d6e8e8d22": {
6563
          "model_module": "@jupyter-widgets/base",
6564
          "model_name": "LayoutModel",
6565
          "model_module_version": "1.2.0",
6566
          "state": {
6567
            "_model_module": "@jupyter-widgets/base",
6568
            "_model_module_version": "1.2.0",
6569
            "_model_name": "LayoutModel",
6570
            "_view_count": null,
6571
            "_view_module": "@jupyter-widgets/base",
6572
            "_view_module_version": "1.2.0",
6573
            "_view_name": "LayoutView",
6574
            "align_content": null,
6575
            "align_items": null,
6576
            "align_self": null,
6577
            "border": null,
6578
            "bottom": null,
6579
            "display": null,
6580
            "flex": null,
6581
            "flex_flow": null,
6582
            "grid_area": null,
6583
            "grid_auto_columns": null,
6584
            "grid_auto_flow": null,
6585
            "grid_auto_rows": null,
6586
            "grid_column": null,
6587
            "grid_gap": null,
6588
            "grid_row": null,
6589
            "grid_template_areas": null,
6590
            "grid_template_columns": null,
6591
            "grid_template_rows": null,
6592
            "height": null,
6593
            "justify_content": null,
6594
            "justify_items": null,
6595
            "left": null,
6596
            "margin": null,
6597
            "max_height": null,
6598
            "max_width": null,
6599
            "min_height": null,
6600
            "min_width": null,
6601
            "object_fit": null,
6602
            "object_position": null,
6603
            "order": null,
6604
            "overflow": null,
6605
            "overflow_x": null,
6606
            "overflow_y": null,
6607
            "padding": null,
6608
            "right": null,
6609
            "top": null,
6610
            "visibility": null,
6611
            "width": null
6612
          }
6613
        },
6614
        "47480982ce83440997297e605cdf8a31": {
6615
          "model_module": "@jupyter-widgets/controls",
6616
          "model_name": "ProgressStyleModel",
6617
          "model_module_version": "1.5.0",
6618
          "state": {
6619
            "_model_module": "@jupyter-widgets/controls",
6620
            "_model_module_version": "1.5.0",
6621
            "_model_name": "ProgressStyleModel",
6622
            "_view_count": null,
6623
            "_view_module": "@jupyter-widgets/base",
6624
            "_view_module_version": "1.2.0",
6625
            "_view_name": "StyleView",
6626
            "bar_color": null,
6627
            "description_width": ""
6628
          }
6629
        },
6630
        "32764784cc9644198c622f6706db6836": {
6631
          "model_module": "@jupyter-widgets/base",
6632
          "model_name": "LayoutModel",
6633
          "model_module_version": "1.2.0",
6634
          "state": {
6635
            "_model_module": "@jupyter-widgets/base",
6636
            "_model_module_version": "1.2.0",
6637
            "_model_name": "LayoutModel",
6638
            "_view_count": null,
6639
            "_view_module": "@jupyter-widgets/base",
6640
            "_view_module_version": "1.2.0",
6641
            "_view_name": "LayoutView",
6642
            "align_content": null,
6643
            "align_items": null,
6644
            "align_self": null,
6645
            "border": null,
6646
            "bottom": null,
6647
            "display": null,
6648
            "flex": null,
6649
            "flex_flow": null,
6650
            "grid_area": null,
6651
            "grid_auto_columns": null,
6652
            "grid_auto_flow": null,
6653
            "grid_auto_rows": null,
6654
            "grid_column": null,
6655
            "grid_gap": null,
6656
            "grid_row": null,
6657
            "grid_template_areas": null,
6658
            "grid_template_columns": null,
6659
            "grid_template_rows": null,
6660
            "height": null,
6661
            "justify_content": null,
6662
            "justify_items": null,
6663
            "left": null,
6664
            "margin": null,
6665
            "max_height": null,
6666
            "max_width": null,
6667
            "min_height": null,
6668
            "min_width": null,
6669
            "object_fit": null,
6670
            "object_position": null,
6671
            "order": null,
6672
            "overflow": null,
6673
            "overflow_x": null,
6674
            "overflow_y": null,
6675
            "padding": null,
6676
            "right": null,
6677
            "top": null,
6678
            "visibility": null,
6679
            "width": null
6680
          }
6681
        },
6682
        "83bae5949ec448c6ad6f68a7b8d3d436": {
6683
          "model_module": "@jupyter-widgets/controls",
6684
          "model_name": "DescriptionStyleModel",
6685
          "model_module_version": "1.5.0",
6686
          "state": {
6687
            "_model_module": "@jupyter-widgets/controls",
6688
            "_model_module_version": "1.5.0",
6689
            "_model_name": "DescriptionStyleModel",
6690
            "_view_count": null,
6691
            "_view_module": "@jupyter-widgets/base",
6692
            "_view_module_version": "1.2.0",
6693
            "_view_name": "StyleView",
6694
            "description_width": ""
6695
          }
6696
        },
6697
        "a018f7c156584eb3833b6aba3710b3c0": {
6698
          "model_module": "@jupyter-widgets/controls",
6699
          "model_name": "HBoxModel",
6700
          "model_module_version": "1.5.0",
6701
          "state": {
6702
            "_dom_classes": [],
6703
            "_model_module": "@jupyter-widgets/controls",
6704
            "_model_module_version": "1.5.0",
6705
            "_model_name": "HBoxModel",
6706
            "_view_count": null,
6707
            "_view_module": "@jupyter-widgets/controls",
6708
            "_view_module_version": "1.5.0",
6709
            "_view_name": "HBoxView",
6710
            "box_style": "",
6711
            "children": [
6712
              "IPY_MODEL_c2a078c69d3f45ca9895e0e7f95aaf2b",
6713
              "IPY_MODEL_8c55316c54d44bd4b75a8457e2d8c595",
6714
              "IPY_MODEL_1824b7b748ee4763b5098cd915107f63"
6715
            ],
6716
            "layout": "IPY_MODEL_87b93c14cdae477ab49522354631e82b"
6717
          }
6718
        },
6719
        "c2a078c69d3f45ca9895e0e7f95aaf2b": {
6720
          "model_module": "@jupyter-widgets/controls",
6721
          "model_name": "HTMLModel",
6722
          "model_module_version": "1.5.0",
6723
          "state": {
6724
            "_dom_classes": [],
6725
            "_model_module": "@jupyter-widgets/controls",
6726
            "_model_module_version": "1.5.0",
6727
            "_model_name": "HTMLModel",
6728
            "_view_count": null,
6729
            "_view_module": "@jupyter-widgets/controls",
6730
            "_view_module_version": "1.5.0",
6731
            "_view_name": "HTMLView",
6732
            "description": "",
6733
            "description_tooltip": null,
6734
            "layout": "IPY_MODEL_a8b5d642ed654c0f85f3a9610c68b754",
6735
            "placeholder": "​",
6736
            "style": "IPY_MODEL_8750ab964b5444d49db4fe8542964d8c",
6737
            "value": "Map: 100%"
6738
          }
6739
        },
6740
        "8c55316c54d44bd4b75a8457e2d8c595": {
6741
          "model_module": "@jupyter-widgets/controls",
6742
          "model_name": "FloatProgressModel",
6743
          "model_module_version": "1.5.0",
6744
          "state": {
6745
            "_dom_classes": [],
6746
            "_model_module": "@jupyter-widgets/controls",
6747
            "_model_module_version": "1.5.0",
6748
            "_model_name": "FloatProgressModel",
6749
            "_view_count": null,
6750
            "_view_module": "@jupyter-widgets/controls",
6751
            "_view_module_version": "1.5.0",
6752
            "_view_name": "ProgressView",
6753
            "bar_style": "",
6754
            "description": "",
6755
            "description_tooltip": null,
6756
            "layout": "IPY_MODEL_c994a28df165445bbf0d80c165bc5a0b",
6757
            "max": 3668,
6758
            "min": 0,
6759
            "orientation": "horizontal",
6760
            "style": "IPY_MODEL_1a2897c84d454c1a9c115aef178f4fcf",
6761
            "value": 3668
6762
          }
6763
        },
6764
        "1824b7b748ee4763b5098cd915107f63": {
6765
          "model_module": "@jupyter-widgets/controls",
6766
          "model_name": "HTMLModel",
6767
          "model_module_version": "1.5.0",
6768
          "state": {
6769
            "_dom_classes": [],
6770
            "_model_module": "@jupyter-widgets/controls",
6771
            "_model_module_version": "1.5.0",
6772
            "_model_name": "HTMLModel",
6773
            "_view_count": null,
6774
            "_view_module": "@jupyter-widgets/controls",
6775
            "_view_module_version": "1.5.0",
6776
            "_view_name": "HTMLView",
6777
            "description": "",
6778
            "description_tooltip": null,
6779
            "layout": "IPY_MODEL_b668d56ab549478984ad14c22e040e47",
6780
            "placeholder": "​",
6781
            "style": "IPY_MODEL_bac855f4c7044fe88bcd74170e13f103",
6782
            "value": " 3668/3668 [00:01&lt;00:00, 2847.65 examples/s]"
6783
          }
6784
        },
6785
        "87b93c14cdae477ab49522354631e82b": {
6786
          "model_module": "@jupyter-widgets/base",
6787
          "model_name": "LayoutModel",
6788
          "model_module_version": "1.2.0",
6789
          "state": {
6790
            "_model_module": "@jupyter-widgets/base",
6791
            "_model_module_version": "1.2.0",
6792
            "_model_name": "LayoutModel",
6793
            "_view_count": null,
6794
            "_view_module": "@jupyter-widgets/base",
6795
            "_view_module_version": "1.2.0",
6796
            "_view_name": "LayoutView",
6797
            "align_content": null,
6798
            "align_items": null,
6799
            "align_self": null,
6800
            "border": null,
6801
            "bottom": null,
6802
            "display": null,
6803
            "flex": null,
6804
            "flex_flow": null,
6805
            "grid_area": null,
6806
            "grid_auto_columns": null,
6807
            "grid_auto_flow": null,
6808
            "grid_auto_rows": null,
6809
            "grid_column": null,
6810
            "grid_gap": null,
6811
            "grid_row": null,
6812
            "grid_template_areas": null,
6813
            "grid_template_columns": null,
6814
            "grid_template_rows": null,
6815
            "height": null,
6816
            "justify_content": null,
6817
            "justify_items": null,
6818
            "left": null,
6819
            "margin": null,
6820
            "max_height": null,
6821
            "max_width": null,
6822
            "min_height": null,
6823
            "min_width": null,
6824
            "object_fit": null,
6825
            "object_position": null,
6826
            "order": null,
6827
            "overflow": null,
6828
            "overflow_x": null,
6829
            "overflow_y": null,
6830
            "padding": null,
6831
            "right": null,
6832
            "top": null,
6833
            "visibility": "hidden",
6834
            "width": null
6835
          }
6836
        },
6837
        "a8b5d642ed654c0f85f3a9610c68b754": {
6838
          "model_module": "@jupyter-widgets/base",
6839
          "model_name": "LayoutModel",
6840
          "model_module_version": "1.2.0",
6841
          "state": {
6842
            "_model_module": "@jupyter-widgets/base",
6843
            "_model_module_version": "1.2.0",
6844
            "_model_name": "LayoutModel",
6845
            "_view_count": null,
6846
            "_view_module": "@jupyter-widgets/base",
6847
            "_view_module_version": "1.2.0",
6848
            "_view_name": "LayoutView",
6849
            "align_content": null,
6850
            "align_items": null,
6851
            "align_self": null,
6852
            "border": null,
6853
            "bottom": null,
6854
            "display": null,
6855
            "flex": null,
6856
            "flex_flow": null,
6857
            "grid_area": null,
6858
            "grid_auto_columns": null,
6859
            "grid_auto_flow": null,
6860
            "grid_auto_rows": null,
6861
            "grid_column": null,
6862
            "grid_gap": null,
6863
            "grid_row": null,
6864
            "grid_template_areas": null,
6865
            "grid_template_columns": null,
6866
            "grid_template_rows": null,
6867
            "height": null,
6868
            "justify_content": null,
6869
            "justify_items": null,
6870
            "left": null,
6871
            "margin": null,
6872
            "max_height": null,
6873
            "max_width": null,
6874
            "min_height": null,
6875
            "min_width": null,
6876
            "object_fit": null,
6877
            "object_position": null,
6878
            "order": null,
6879
            "overflow": null,
6880
            "overflow_x": null,
6881
            "overflow_y": null,
6882
            "padding": null,
6883
            "right": null,
6884
            "top": null,
6885
            "visibility": null,
6886
            "width": null
6887
          }
6888
        },
6889
        "8750ab964b5444d49db4fe8542964d8c": {
6890
          "model_module": "@jupyter-widgets/controls",
6891
          "model_name": "DescriptionStyleModel",
6892
          "model_module_version": "1.5.0",
6893
          "state": {
6894
            "_model_module": "@jupyter-widgets/controls",
6895
            "_model_module_version": "1.5.0",
6896
            "_model_name": "DescriptionStyleModel",
6897
            "_view_count": null,
6898
            "_view_module": "@jupyter-widgets/base",
6899
            "_view_module_version": "1.2.0",
6900
            "_view_name": "StyleView",
6901
            "description_width": ""
6902
          }
6903
        },
6904
        "c994a28df165445bbf0d80c165bc5a0b": {
6905
          "model_module": "@jupyter-widgets/base",
6906
          "model_name": "LayoutModel",
6907
          "model_module_version": "1.2.0",
6908
          "state": {
6909
            "_model_module": "@jupyter-widgets/base",
6910
            "_model_module_version": "1.2.0",
6911
            "_model_name": "LayoutModel",
6912
            "_view_count": null,
6913
            "_view_module": "@jupyter-widgets/base",
6914
            "_view_module_version": "1.2.0",
6915
            "_view_name": "LayoutView",
6916
            "align_content": null,
6917
            "align_items": null,
6918
            "align_self": null,
6919
            "border": null,
6920
            "bottom": null,
6921
            "display": null,
6922
            "flex": null,
6923
            "flex_flow": null,
6924
            "grid_area": null,
6925
            "grid_auto_columns": null,
6926
            "grid_auto_flow": null,
6927
            "grid_auto_rows": null,
6928
            "grid_column": null,
6929
            "grid_gap": null,
6930
            "grid_row": null,
6931
            "grid_template_areas": null,
6932
            "grid_template_columns": null,
6933
            "grid_template_rows": null,
6934
            "height": null,
6935
            "justify_content": null,
6936
            "justify_items": null,
6937
            "left": null,
6938
            "margin": null,
6939
            "max_height": null,
6940
            "max_width": null,
6941
            "min_height": null,
6942
            "min_width": null,
6943
            "object_fit": null,
6944
            "object_position": null,
6945
            "order": null,
6946
            "overflow": null,
6947
            "overflow_x": null,
6948
            "overflow_y": null,
6949
            "padding": null,
6950
            "right": null,
6951
            "top": null,
6952
            "visibility": null,
6953
            "width": null
6954
          }
6955
        },
6956
        "1a2897c84d454c1a9c115aef178f4fcf": {
6957
          "model_module": "@jupyter-widgets/controls",
6958
          "model_name": "ProgressStyleModel",
6959
          "model_module_version": "1.5.0",
6960
          "state": {
6961
            "_model_module": "@jupyter-widgets/controls",
6962
            "_model_module_version": "1.5.0",
6963
            "_model_name": "ProgressStyleModel",
6964
            "_view_count": null,
6965
            "_view_module": "@jupyter-widgets/base",
6966
            "_view_module_version": "1.2.0",
6967
            "_view_name": "StyleView",
6968
            "bar_color": null,
6969
            "description_width": ""
6970
          }
6971
        },
6972
        "b668d56ab549478984ad14c22e040e47": {
6973
          "model_module": "@jupyter-widgets/base",
6974
          "model_name": "LayoutModel",
6975
          "model_module_version": "1.2.0",
6976
          "state": {
6977
            "_model_module": "@jupyter-widgets/base",
6978
            "_model_module_version": "1.2.0",
6979
            "_model_name": "LayoutModel",
6980
            "_view_count": null,
6981
            "_view_module": "@jupyter-widgets/base",
6982
            "_view_module_version": "1.2.0",
6983
            "_view_name": "LayoutView",
6984
            "align_content": null,
6985
            "align_items": null,
6986
            "align_self": null,
6987
            "border": null,
6988
            "bottom": null,
6989
            "display": null,
6990
            "flex": null,
6991
            "flex_flow": null,
6992
            "grid_area": null,
6993
            "grid_auto_columns": null,
6994
            "grid_auto_flow": null,
6995
            "grid_auto_rows": null,
6996
            "grid_column": null,
6997
            "grid_gap": null,
6998
            "grid_row": null,
6999
            "grid_template_areas": null,
7000
            "grid_template_columns": null,
7001
            "grid_template_rows": null,
7002
            "height": null,
7003
            "justify_content": null,
7004
            "justify_items": null,
7005
            "left": null,
7006
            "margin": null,
7007
            "max_height": null,
7008
            "max_width": null,
7009
            "min_height": null,
7010
            "min_width": null,
7011
            "object_fit": null,
7012
            "object_position": null,
7013
            "order": null,
7014
            "overflow": null,
7015
            "overflow_x": null,
7016
            "overflow_y": null,
7017
            "padding": null,
7018
            "right": null,
7019
            "top": null,
7020
            "visibility": null,
7021
            "width": null
7022
          }
7023
        },
7024
        "bac855f4c7044fe88bcd74170e13f103": {
7025
          "model_module": "@jupyter-widgets/controls",
7026
          "model_name": "DescriptionStyleModel",
7027
          "model_module_version": "1.5.0",
7028
          "state": {
7029
            "_model_module": "@jupyter-widgets/controls",
7030
            "_model_module_version": "1.5.0",
7031
            "_model_name": "DescriptionStyleModel",
7032
            "_view_count": null,
7033
            "_view_module": "@jupyter-widgets/base",
7034
            "_view_module_version": "1.2.0",
7035
            "_view_name": "StyleView",
7036
            "description_width": ""
7037
          }
7038
        },
7039
        "f871eeaa54cf451b8a2de64eed90d5b6": {
7040
          "model_module": "@jupyter-widgets/controls",
7041
          "model_name": "HBoxModel",
7042
          "model_module_version": "1.5.0",
7043
          "state": {
7044
            "_dom_classes": [],
7045
            "_model_module": "@jupyter-widgets/controls",
7046
            "_model_module_version": "1.5.0",
7047
            "_model_name": "HBoxModel",
7048
            "_view_count": null,
7049
            "_view_module": "@jupyter-widgets/controls",
7050
            "_view_module_version": "1.5.0",
7051
            "_view_name": "HBoxView",
7052
            "box_style": "",
7053
            "children": [
7054
              "IPY_MODEL_39492d8b91f64e97bc8caead77957508",
7055
              "IPY_MODEL_1487d054f1824f739c93c00621591bd0",
7056
              "IPY_MODEL_cca43d628ff94369bc9713cbad616adb"
7057
            ],
7058
            "layout": "IPY_MODEL_6aa4308f0cb348419f1217e48ef2dbd7"
7059
          }
7060
        },
7061
        "39492d8b91f64e97bc8caead77957508": {
7062
          "model_module": "@jupyter-widgets/controls",
7063
          "model_name": "HTMLModel",
7064
          "model_module_version": "1.5.0",
7065
          "state": {
7066
            "_dom_classes": [],
7067
            "_model_module": "@jupyter-widgets/controls",
7068
            "_model_module_version": "1.5.0",
7069
            "_model_name": "HTMLModel",
7070
            "_view_count": null,
7071
            "_view_module": "@jupyter-widgets/controls",
7072
            "_view_module_version": "1.5.0",
7073
            "_view_name": "HTMLView",
7074
            "description": "",
7075
            "description_tooltip": null,
7076
            "layout": "IPY_MODEL_d9db044ff31f4856a4d25e57fe9882bc",
7077
            "placeholder": "​",
7078
            "style": "IPY_MODEL_f76b651681d74b2eab0ab07f43983a2a",
7079
            "value": "Map: 100%"
7080
          }
7081
        },
7082
        "1487d054f1824f739c93c00621591bd0": {
7083
          "model_module": "@jupyter-widgets/controls",
7084
          "model_name": "FloatProgressModel",
7085
          "model_module_version": "1.5.0",
7086
          "state": {
7087
            "_dom_classes": [],
7088
            "_model_module": "@jupyter-widgets/controls",
7089
            "_model_module_version": "1.5.0",
7090
            "_model_name": "FloatProgressModel",
7091
            "_view_count": null,
7092
            "_view_module": "@jupyter-widgets/controls",
7093
            "_view_module_version": "1.5.0",
7094
            "_view_name": "ProgressView",
7095
            "bar_style": "",
7096
            "description": "",
7097
            "description_tooltip": null,
7098
            "layout": "IPY_MODEL_1e3adfe9c9e34d4abe74b65e298c0e7b",
7099
            "max": 408,
7100
            "min": 0,
7101
            "orientation": "horizontal",
7102
            "style": "IPY_MODEL_f91ed6a931c247b5903304a28998633d",
7103
            "value": 408
7104
          }
7105
        },
7106
        "cca43d628ff94369bc9713cbad616adb": {
7107
          "model_module": "@jupyter-widgets/controls",
7108
          "model_name": "HTMLModel",
7109
          "model_module_version": "1.5.0",
7110
          "state": {
7111
            "_dom_classes": [],
7112
            "_model_module": "@jupyter-widgets/controls",
7113
            "_model_module_version": "1.5.0",
7114
            "_model_name": "HTMLModel",
7115
            "_view_count": null,
7116
            "_view_module": "@jupyter-widgets/controls",
7117
            "_view_module_version": "1.5.0",
7118
            "_view_name": "HTMLView",
7119
            "description": "",
7120
            "description_tooltip": null,
7121
            "layout": "IPY_MODEL_34e576af7aab4ef795239b1d9a281b15",
7122
            "placeholder": "​",
7123
            "style": "IPY_MODEL_9d8e3a4fe5864a4ca229ba6e092181e4",
7124
            "value": " 408/408 [00:00&lt;00:00, 2109.25 examples/s]"
7125
          }
7126
        },
7127
        "6aa4308f0cb348419f1217e48ef2dbd7": {
7128
          "model_module": "@jupyter-widgets/base",
7129
          "model_name": "LayoutModel",
7130
          "model_module_version": "1.2.0",
7131
          "state": {
7132
            "_model_module": "@jupyter-widgets/base",
7133
            "_model_module_version": "1.2.0",
7134
            "_model_name": "LayoutModel",
7135
            "_view_count": null,
7136
            "_view_module": "@jupyter-widgets/base",
7137
            "_view_module_version": "1.2.0",
7138
            "_view_name": "LayoutView",
7139
            "align_content": null,
7140
            "align_items": null,
7141
            "align_self": null,
7142
            "border": null,
7143
            "bottom": null,
7144
            "display": null,
7145
            "flex": null,
7146
            "flex_flow": null,
7147
            "grid_area": null,
7148
            "grid_auto_columns": null,
7149
            "grid_auto_flow": null,
7150
            "grid_auto_rows": null,
7151
            "grid_column": null,
7152
            "grid_gap": null,
7153
            "grid_row": null,
7154
            "grid_template_areas": null,
7155
            "grid_template_columns": null,
7156
            "grid_template_rows": null,
7157
            "height": null,
7158
            "justify_content": null,
7159
            "justify_items": null,
7160
            "left": null,
7161
            "margin": null,
7162
            "max_height": null,
7163
            "max_width": null,
7164
            "min_height": null,
7165
            "min_width": null,
7166
            "object_fit": null,
7167
            "object_position": null,
7168
            "order": null,
7169
            "overflow": null,
7170
            "overflow_x": null,
7171
            "overflow_y": null,
7172
            "padding": null,
7173
            "right": null,
7174
            "top": null,
7175
            "visibility": "hidden",
7176
            "width": null
7177
          }
7178
        },
7179
        "d9db044ff31f4856a4d25e57fe9882bc": {
7180
          "model_module": "@jupyter-widgets/base",
7181
          "model_name": "LayoutModel",
7182
          "model_module_version": "1.2.0",
7183
          "state": {
7184
            "_model_module": "@jupyter-widgets/base",
7185
            "_model_module_version": "1.2.0",
7186
            "_model_name": "LayoutModel",
7187
            "_view_count": null,
7188
            "_view_module": "@jupyter-widgets/base",
7189
            "_view_module_version": "1.2.0",
7190
            "_view_name": "LayoutView",
7191
            "align_content": null,
7192
            "align_items": null,
7193
            "align_self": null,
7194
            "border": null,
7195
            "bottom": null,
7196
            "display": null,
7197
            "flex": null,
7198
            "flex_flow": null,
7199
            "grid_area": null,
7200
            "grid_auto_columns": null,
7201
            "grid_auto_flow": null,
7202
            "grid_auto_rows": null,
7203
            "grid_column": null,
7204
            "grid_gap": null,
7205
            "grid_row": null,
7206
            "grid_template_areas": null,
7207
            "grid_template_columns": null,
7208
            "grid_template_rows": null,
7209
            "height": null,
7210
            "justify_content": null,
7211
            "justify_items": null,
7212
            "left": null,
7213
            "margin": null,
7214
            "max_height": null,
7215
            "max_width": null,
7216
            "min_height": null,
7217
            "min_width": null,
7218
            "object_fit": null,
7219
            "object_position": null,
7220
            "order": null,
7221
            "overflow": null,
7222
            "overflow_x": null,
7223
            "overflow_y": null,
7224
            "padding": null,
7225
            "right": null,
7226
            "top": null,
7227
            "visibility": null,
7228
            "width": null
7229
          }
7230
        },
7231
        "f76b651681d74b2eab0ab07f43983a2a": {
7232
          "model_module": "@jupyter-widgets/controls",
7233
          "model_name": "DescriptionStyleModel",
7234
          "model_module_version": "1.5.0",
7235
          "state": {
7236
            "_model_module": "@jupyter-widgets/controls",
7237
            "_model_module_version": "1.5.0",
7238
            "_model_name": "DescriptionStyleModel",
7239
            "_view_count": null,
7240
            "_view_module": "@jupyter-widgets/base",
7241
            "_view_module_version": "1.2.0",
7242
            "_view_name": "StyleView",
7243
            "description_width": ""
7244
          }
7245
        },
7246
        "1e3adfe9c9e34d4abe74b65e298c0e7b": {
7247
          "model_module": "@jupyter-widgets/base",
7248
          "model_name": "LayoutModel",
7249
          "model_module_version": "1.2.0",
7250
          "state": {
7251
            "_model_module": "@jupyter-widgets/base",
7252
            "_model_module_version": "1.2.0",
7253
            "_model_name": "LayoutModel",
7254
            "_view_count": null,
7255
            "_view_module": "@jupyter-widgets/base",
7256
            "_view_module_version": "1.2.0",
7257
            "_view_name": "LayoutView",
7258
            "align_content": null,
7259
            "align_items": null,
7260
            "align_self": null,
7261
            "border": null,
7262
            "bottom": null,
7263
            "display": null,
7264
            "flex": null,
7265
            "flex_flow": null,
7266
            "grid_area": null,
7267
            "grid_auto_columns": null,
7268
            "grid_auto_flow": null,
7269
            "grid_auto_rows": null,
7270
            "grid_column": null,
7271
            "grid_gap": null,
7272
            "grid_row": null,
7273
            "grid_template_areas": null,
7274
            "grid_template_columns": null,
7275
            "grid_template_rows": null,
7276
            "height": null,
7277
            "justify_content": null,
7278
            "justify_items": null,
7279
            "left": null,
7280
            "margin": null,
7281
            "max_height": null,
7282
            "max_width": null,
7283
            "min_height": null,
7284
            "min_width": null,
7285
            "object_fit": null,
7286
            "object_position": null,
7287
            "order": null,
7288
            "overflow": null,
7289
            "overflow_x": null,
7290
            "overflow_y": null,
7291
            "padding": null,
7292
            "right": null,
7293
            "top": null,
7294
            "visibility": null,
7295
            "width": null
7296
          }
7297
        },
7298
        "f91ed6a931c247b5903304a28998633d": {
7299
          "model_module": "@jupyter-widgets/controls",
7300
          "model_name": "ProgressStyleModel",
7301
          "model_module_version": "1.5.0",
7302
          "state": {
7303
            "_model_module": "@jupyter-widgets/controls",
7304
            "_model_module_version": "1.5.0",
7305
            "_model_name": "ProgressStyleModel",
7306
            "_view_count": null,
7307
            "_view_module": "@jupyter-widgets/base",
7308
            "_view_module_version": "1.2.0",
7309
            "_view_name": "StyleView",
7310
            "bar_color": null,
7311
            "description_width": ""
7312
          }
7313
        },
7314
        "34e576af7aab4ef795239b1d9a281b15": {
7315
          "model_module": "@jupyter-widgets/base",
7316
          "model_name": "LayoutModel",
7317
          "model_module_version": "1.2.0",
7318
          "state": {
7319
            "_model_module": "@jupyter-widgets/base",
7320
            "_model_module_version": "1.2.0",
7321
            "_model_name": "LayoutModel",
7322
            "_view_count": null,
7323
            "_view_module": "@jupyter-widgets/base",
7324
            "_view_module_version": "1.2.0",
7325
            "_view_name": "LayoutView",
7326
            "align_content": null,
7327
            "align_items": null,
7328
            "align_self": null,
7329
            "border": null,
7330
            "bottom": null,
7331
            "display": null,
7332
            "flex": null,
7333
            "flex_flow": null,
7334
            "grid_area": null,
7335
            "grid_auto_columns": null,
7336
            "grid_auto_flow": null,
7337
            "grid_auto_rows": null,
7338
            "grid_column": null,
7339
            "grid_gap": null,
7340
            "grid_row": null,
7341
            "grid_template_areas": null,
7342
            "grid_template_columns": null,
7343
            "grid_template_rows": null,
7344
            "height": null,
7345
            "justify_content": null,
7346
            "justify_items": null,
7347
            "left": null,
7348
            "margin": null,
7349
            "max_height": null,
7350
            "max_width": null,
7351
            "min_height": null,
7352
            "min_width": null,
7353
            "object_fit": null,
7354
            "object_position": null,
7355
            "order": null,
7356
            "overflow": null,
7357
            "overflow_x": null,
7358
            "overflow_y": null,
7359
            "padding": null,
7360
            "right": null,
7361
            "top": null,
7362
            "visibility": null,
7363
            "width": null
7364
          }
7365
        },
7366
        "9d8e3a4fe5864a4ca229ba6e092181e4": {
7367
          "model_module": "@jupyter-widgets/controls",
7368
          "model_name": "DescriptionStyleModel",
7369
          "model_module_version": "1.5.0",
7370
          "state": {
7371
            "_model_module": "@jupyter-widgets/controls",
7372
            "_model_module_version": "1.5.0",
7373
            "_model_name": "DescriptionStyleModel",
7374
            "_view_count": null,
7375
            "_view_module": "@jupyter-widgets/base",
7376
            "_view_module_version": "1.2.0",
7377
            "_view_name": "StyleView",
7378
            "description_width": ""
7379
          }
7380
        },
7381
        "e41888b1dea140d18be25efc6d99d0c3": {
7382
          "model_module": "@jupyter-widgets/controls",
7383
          "model_name": "HBoxModel",
7384
          "model_module_version": "1.5.0",
7385
          "state": {
7386
            "_dom_classes": [],
7387
            "_model_module": "@jupyter-widgets/controls",
7388
            "_model_module_version": "1.5.0",
7389
            "_model_name": "HBoxModel",
7390
            "_view_count": null,
7391
            "_view_module": "@jupyter-widgets/controls",
7392
            "_view_module_version": "1.5.0",
7393
            "_view_name": "HBoxView",
7394
            "box_style": "",
7395
            "children": [
7396
              "IPY_MODEL_d63577f0ae724938952f9b681a89512a",
7397
              "IPY_MODEL_83623082d4e9457a9173db3129154f94",
7398
              "IPY_MODEL_4c1798c3d0cb43949a1ed7519b57d3fc"
7399
            ],
7400
            "layout": "IPY_MODEL_6513f2b58d654a488b132abd8c83c9b6"
7401
          }
7402
        },
7403
        "d63577f0ae724938952f9b681a89512a": {
7404
          "model_module": "@jupyter-widgets/controls",
7405
          "model_name": "HTMLModel",
7406
          "model_module_version": "1.5.0",
7407
          "state": {
7408
            "_dom_classes": [],
7409
            "_model_module": "@jupyter-widgets/controls",
7410
            "_model_module_version": "1.5.0",
7411
            "_model_name": "HTMLModel",
7412
            "_view_count": null,
7413
            "_view_module": "@jupyter-widgets/controls",
7414
            "_view_module_version": "1.5.0",
7415
            "_view_name": "HTMLView",
7416
            "description": "",
7417
            "description_tooltip": null,
7418
            "layout": "IPY_MODEL_c4aa7cee6e5d4a89a2c33b9ce2e9c489",
7419
            "placeholder": "​",
7420
            "style": "IPY_MODEL_b42e835e0ba24a08b5815234a22b4da6",
7421
            "value": "Map: 100%"
7422
          }
7423
        },
7424
        "83623082d4e9457a9173db3129154f94": {
7425
          "model_module": "@jupyter-widgets/controls",
7426
          "model_name": "FloatProgressModel",
7427
          "model_module_version": "1.5.0",
7428
          "state": {
7429
            "_dom_classes": [],
7430
            "_model_module": "@jupyter-widgets/controls",
7431
            "_model_module_version": "1.5.0",
7432
            "_model_name": "FloatProgressModel",
7433
            "_view_count": null,
7434
            "_view_module": "@jupyter-widgets/controls",
7435
            "_view_module_version": "1.5.0",
7436
            "_view_name": "ProgressView",
7437
            "bar_style": "",
7438
            "description": "",
7439
            "description_tooltip": null,
7440
            "layout": "IPY_MODEL_e8a53956f6ad46d58ec3a9a039f2303e",
7441
            "max": 1725,
7442
            "min": 0,
7443
            "orientation": "horizontal",
7444
            "style": "IPY_MODEL_91f07c6089354ceeb4e628ef1791d2d6",
7445
            "value": 1725
7446
          }
7447
        },
7448
        "4c1798c3d0cb43949a1ed7519b57d3fc": {
7449
          "model_module": "@jupyter-widgets/controls",
7450
          "model_name": "HTMLModel",
7451
          "model_module_version": "1.5.0",
7452
          "state": {
7453
            "_dom_classes": [],
7454
            "_model_module": "@jupyter-widgets/controls",
7455
            "_model_module_version": "1.5.0",
7456
            "_model_name": "HTMLModel",
7457
            "_view_count": null,
7458
            "_view_module": "@jupyter-widgets/controls",
7459
            "_view_module_version": "1.5.0",
7460
            "_view_name": "HTMLView",
7461
            "description": "",
7462
            "description_tooltip": null,
7463
            "layout": "IPY_MODEL_c137c84ae40049ffba7d1f4d77b21de2",
7464
            "placeholder": "​",
7465
            "style": "IPY_MODEL_81f8db0dcdbc4e5593fa3fbb6c2b9361",
7466
            "value": " 1725/1725 [00:00&lt;00:00, 3028.59 examples/s]"
7467
          }
7468
        },
7469
        "6513f2b58d654a488b132abd8c83c9b6": {
7470
          "model_module": "@jupyter-widgets/base",
7471
          "model_name": "LayoutModel",
7472
          "model_module_version": "1.2.0",
7473
          "state": {
7474
            "_model_module": "@jupyter-widgets/base",
7475
            "_model_module_version": "1.2.0",
7476
            "_model_name": "LayoutModel",
7477
            "_view_count": null,
7478
            "_view_module": "@jupyter-widgets/base",
7479
            "_view_module_version": "1.2.0",
7480
            "_view_name": "LayoutView",
7481
            "align_content": null,
7482
            "align_items": null,
7483
            "align_self": null,
7484
            "border": null,
7485
            "bottom": null,
7486
            "display": null,
7487
            "flex": null,
7488
            "flex_flow": null,
7489
            "grid_area": null,
7490
            "grid_auto_columns": null,
7491
            "grid_auto_flow": null,
7492
            "grid_auto_rows": null,
7493
            "grid_column": null,
7494
            "grid_gap": null,
7495
            "grid_row": null,
7496
            "grid_template_areas": null,
7497
            "grid_template_columns": null,
7498
            "grid_template_rows": null,
7499
            "height": null,
7500
            "justify_content": null,
7501
            "justify_items": null,
7502
            "left": null,
7503
            "margin": null,
7504
            "max_height": null,
7505
            "max_width": null,
7506
            "min_height": null,
7507
            "min_width": null,
7508
            "object_fit": null,
7509
            "object_position": null,
7510
            "order": null,
7511
            "overflow": null,
7512
            "overflow_x": null,
7513
            "overflow_y": null,
7514
            "padding": null,
7515
            "right": null,
7516
            "top": null,
7517
            "visibility": "hidden",
7518
            "width": null
7519
          }
7520
        },
7521
        "c4aa7cee6e5d4a89a2c33b9ce2e9c489": {
7522
          "model_module": "@jupyter-widgets/base",
7523
          "model_name": "LayoutModel",
7524
          "model_module_version": "1.2.0",
7525
          "state": {
7526
            "_model_module": "@jupyter-widgets/base",
7527
            "_model_module_version": "1.2.0",
7528
            "_model_name": "LayoutModel",
7529
            "_view_count": null,
7530
            "_view_module": "@jupyter-widgets/base",
7531
            "_view_module_version": "1.2.0",
7532
            "_view_name": "LayoutView",
7533
            "align_content": null,
7534
            "align_items": null,
7535
            "align_self": null,
7536
            "border": null,
7537
            "bottom": null,
7538
            "display": null,
7539
            "flex": null,
7540
            "flex_flow": null,
7541
            "grid_area": null,
7542
            "grid_auto_columns": null,
7543
            "grid_auto_flow": null,
7544
            "grid_auto_rows": null,
7545
            "grid_column": null,
7546
            "grid_gap": null,
7547
            "grid_row": null,
7548
            "grid_template_areas": null,
7549
            "grid_template_columns": null,
7550
            "grid_template_rows": null,
7551
            "height": null,
7552
            "justify_content": null,
7553
            "justify_items": null,
7554
            "left": null,
7555
            "margin": null,
7556
            "max_height": null,
7557
            "max_width": null,
7558
            "min_height": null,
7559
            "min_width": null,
7560
            "object_fit": null,
7561
            "object_position": null,
7562
            "order": null,
7563
            "overflow": null,
7564
            "overflow_x": null,
7565
            "overflow_y": null,
7566
            "padding": null,
7567
            "right": null,
7568
            "top": null,
7569
            "visibility": null,
7570
            "width": null
7571
          }
7572
        },
7573
        "b42e835e0ba24a08b5815234a22b4da6": {
7574
          "model_module": "@jupyter-widgets/controls",
7575
          "model_name": "DescriptionStyleModel",
7576
          "model_module_version": "1.5.0",
7577
          "state": {
7578
            "_model_module": "@jupyter-widgets/controls",
7579
            "_model_module_version": "1.5.0",
7580
            "_model_name": "DescriptionStyleModel",
7581
            "_view_count": null,
7582
            "_view_module": "@jupyter-widgets/base",
7583
            "_view_module_version": "1.2.0",
7584
            "_view_name": "StyleView",
7585
            "description_width": ""
7586
          }
7587
        },
7588
        "e8a53956f6ad46d58ec3a9a039f2303e": {
7589
          "model_module": "@jupyter-widgets/base",
7590
          "model_name": "LayoutModel",
7591
          "model_module_version": "1.2.0",
7592
          "state": {
7593
            "_model_module": "@jupyter-widgets/base",
7594
            "_model_module_version": "1.2.0",
7595
            "_model_name": "LayoutModel",
7596
            "_view_count": null,
7597
            "_view_module": "@jupyter-widgets/base",
7598
            "_view_module_version": "1.2.0",
7599
            "_view_name": "LayoutView",
7600
            "align_content": null,
7601
            "align_items": null,
7602
            "align_self": null,
7603
            "border": null,
7604
            "bottom": null,
7605
            "display": null,
7606
            "flex": null,
7607
            "flex_flow": null,
7608
            "grid_area": null,
7609
            "grid_auto_columns": null,
7610
            "grid_auto_flow": null,
7611
            "grid_auto_rows": null,
7612
            "grid_column": null,
7613
            "grid_gap": null,
7614
            "grid_row": null,
7615
            "grid_template_areas": null,
7616
            "grid_template_columns": null,
7617
            "grid_template_rows": null,
7618
            "height": null,
7619
            "justify_content": null,
7620
            "justify_items": null,
7621
            "left": null,
7622
            "margin": null,
7623
            "max_height": null,
7624
            "max_width": null,
7625
            "min_height": null,
7626
            "min_width": null,
7627
            "object_fit": null,
7628
            "object_position": null,
7629
            "order": null,
7630
            "overflow": null,
7631
            "overflow_x": null,
7632
            "overflow_y": null,
7633
            "padding": null,
7634
            "right": null,
7635
            "top": null,
7636
            "visibility": null,
7637
            "width": null
7638
          }
7639
        },
7640
        "91f07c6089354ceeb4e628ef1791d2d6": {
7641
          "model_module": "@jupyter-widgets/controls",
7642
          "model_name": "ProgressStyleModel",
7643
          "model_module_version": "1.5.0",
7644
          "state": {
7645
            "_model_module": "@jupyter-widgets/controls",
7646
            "_model_module_version": "1.5.0",
7647
            "_model_name": "ProgressStyleModel",
7648
            "_view_count": null,
7649
            "_view_module": "@jupyter-widgets/base",
7650
            "_view_module_version": "1.2.0",
7651
            "_view_name": "StyleView",
7652
            "bar_color": null,
7653
            "description_width": ""
7654
          }
7655
        },
7656
        "c137c84ae40049ffba7d1f4d77b21de2": {
7657
          "model_module": "@jupyter-widgets/base",
7658
          "model_name": "LayoutModel",
7659
          "model_module_version": "1.2.0",
7660
          "state": {
7661
            "_model_module": "@jupyter-widgets/base",
7662
            "_model_module_version": "1.2.0",
7663
            "_model_name": "LayoutModel",
7664
            "_view_count": null,
7665
            "_view_module": "@jupyter-widgets/base",
7666
            "_view_module_version": "1.2.0",
7667
            "_view_name": "LayoutView",
7668
            "align_content": null,
7669
            "align_items": null,
7670
            "align_self": null,
7671
            "border": null,
7672
            "bottom": null,
7673
            "display": null,
7674
            "flex": null,
7675
            "flex_flow": null,
7676
            "grid_area": null,
7677
            "grid_auto_columns": null,
7678
            "grid_auto_flow": null,
7679
            "grid_auto_rows": null,
7680
            "grid_column": null,
7681
            "grid_gap": null,
7682
            "grid_row": null,
7683
            "grid_template_areas": null,
7684
            "grid_template_columns": null,
7685
            "grid_template_rows": null,
7686
            "height": null,
7687
            "justify_content": null,
7688
            "justify_items": null,
7689
            "left": null,
7690
            "margin": null,
7691
            "max_height": null,
7692
            "max_width": null,
7693
            "min_height": null,
7694
            "min_width": null,
7695
            "object_fit": null,
7696
            "object_position": null,
7697
            "order": null,
7698
            "overflow": null,
7699
            "overflow_x": null,
7700
            "overflow_y": null,
7701
            "padding": null,
7702
            "right": null,
7703
            "top": null,
7704
            "visibility": null,
7705
            "width": null
7706
          }
7707
        },
7708
        "81f8db0dcdbc4e5593fa3fbb6c2b9361": {
7709
          "model_module": "@jupyter-widgets/controls",
7710
          "model_name": "DescriptionStyleModel",
7711
          "model_module_version": "1.5.0",
7712
          "state": {
7713
            "_model_module": "@jupyter-widgets/controls",
7714
            "_model_module_version": "1.5.0",
7715
            "_model_name": "DescriptionStyleModel",
7716
            "_view_count": null,
7717
            "_view_module": "@jupyter-widgets/base",
7718
            "_view_module_version": "1.2.0",
7719
            "_view_name": "StyleView",
7720
            "description_width": ""
7721
          }
7722
        },
7723
        "0cecb897c86c4892b94a1990ab08a926": {
7724
          "model_module": "@jupyter-widgets/controls",
7725
          "model_name": "HBoxModel",
7726
          "model_module_version": "1.5.0",
7727
          "state": {
7728
            "_dom_classes": [],
7729
            "_model_module": "@jupyter-widgets/controls",
7730
            "_model_module_version": "1.5.0",
7731
            "_model_name": "HBoxModel",
7732
            "_view_count": null,
7733
            "_view_module": "@jupyter-widgets/controls",
7734
            "_view_module_version": "1.5.0",
7735
            "_view_name": "HBoxView",
7736
            "box_style": "",
7737
            "children": [
7738
              "IPY_MODEL_b8af0294819e4280ad41fa1c11006adf",
7739
              "IPY_MODEL_c7530d63b2f745e799713284abacbd2c",
7740
              "IPY_MODEL_12a1e302a69543c5bc0e0a66be008ca0"
7741
            ],
7742
            "layout": "IPY_MODEL_9c372e9e9b20433faed8530ca0f4424c"
7743
          }
7744
        },
7745
        "b8af0294819e4280ad41fa1c11006adf": {
7746
          "model_module": "@jupyter-widgets/controls",
7747
          "model_name": "HTMLModel",
7748
          "model_module_version": "1.5.0",
7749
          "state": {
7750
            "_dom_classes": [],
7751
            "_model_module": "@jupyter-widgets/controls",
7752
            "_model_module_version": "1.5.0",
7753
            "_model_name": "HTMLModel",
7754
            "_view_count": null,
7755
            "_view_module": "@jupyter-widgets/controls",
7756
            "_view_module_version": "1.5.0",
7757
            "_view_name": "HTMLView",
7758
            "description": "",
7759
            "description_tooltip": null,
7760
            "layout": "IPY_MODEL_b07f26a21325493cac19113f1aa1ee96",
7761
            "placeholder": "​",
7762
            "style": "IPY_MODEL_fbdf6c544fb54294903524a69384e773",
7763
            "value": "Downloading model.safetensors: 100%"
7764
          }
7765
        },
7766
        "c7530d63b2f745e799713284abacbd2c": {
7767
          "model_module": "@jupyter-widgets/controls",
7768
          "model_name": "FloatProgressModel",
7769
          "model_module_version": "1.5.0",
7770
          "state": {
7771
            "_dom_classes": [],
7772
            "_model_module": "@jupyter-widgets/controls",
7773
            "_model_module_version": "1.5.0",
7774
            "_model_name": "FloatProgressModel",
7775
            "_view_count": null,
7776
            "_view_module": "@jupyter-widgets/controls",
7777
            "_view_module_version": "1.5.0",
7778
            "_view_name": "ProgressView",
7779
            "bar_style": "success",
7780
            "description": "",
7781
            "description_tooltip": null,
7782
            "layout": "IPY_MODEL_6c6f2223243b4a7485aef7fbbfe07668",
7783
            "max": 1421700479,
7784
            "min": 0,
7785
            "orientation": "horizontal",
7786
            "style": "IPY_MODEL_a93509d61ac94628a74bc0f98c0eec06",
7787
            "value": 1421700479
7788
          }
7789
        },
7790
        "12a1e302a69543c5bc0e0a66be008ca0": {
7791
          "model_module": "@jupyter-widgets/controls",
7792
          "model_name": "HTMLModel",
7793
          "model_module_version": "1.5.0",
7794
          "state": {
7795
            "_dom_classes": [],
7796
            "_model_module": "@jupyter-widgets/controls",
7797
            "_model_module_version": "1.5.0",
7798
            "_model_name": "HTMLModel",
7799
            "_view_count": null,
7800
            "_view_module": "@jupyter-widgets/controls",
7801
            "_view_module_version": "1.5.0",
7802
            "_view_name": "HTMLView",
7803
            "description": "",
7804
            "description_tooltip": null,
7805
            "layout": "IPY_MODEL_3a8de0eb7db44647a734590b6b351b44",
7806
            "placeholder": "​",
7807
            "style": "IPY_MODEL_64d8affd2e854a1c9043fec7ca8a2796",
7808
            "value": " 1.42G/1.42G [00:15&lt;00:00, 73.3MB/s]"
7809
          }
7810
        },
7811
        "9c372e9e9b20433faed8530ca0f4424c": {
7812
          "model_module": "@jupyter-widgets/base",
7813
          "model_name": "LayoutModel",
7814
          "model_module_version": "1.2.0",
7815
          "state": {
7816
            "_model_module": "@jupyter-widgets/base",
7817
            "_model_module_version": "1.2.0",
7818
            "_model_name": "LayoutModel",
7819
            "_view_count": null,
7820
            "_view_module": "@jupyter-widgets/base",
7821
            "_view_module_version": "1.2.0",
7822
            "_view_name": "LayoutView",
7823
            "align_content": null,
7824
            "align_items": null,
7825
            "align_self": null,
7826
            "border": null,
7827
            "bottom": null,
7828
            "display": null,
7829
            "flex": null,
7830
            "flex_flow": null,
7831
            "grid_area": null,
7832
            "grid_auto_columns": null,
7833
            "grid_auto_flow": null,
7834
            "grid_auto_rows": null,
7835
            "grid_column": null,
7836
            "grid_gap": null,
7837
            "grid_row": null,
7838
            "grid_template_areas": null,
7839
            "grid_template_columns": null,
7840
            "grid_template_rows": null,
7841
            "height": null,
7842
            "justify_content": null,
7843
            "justify_items": null,
7844
            "left": null,
7845
            "margin": null,
7846
            "max_height": null,
7847
            "max_width": null,
7848
            "min_height": null,
7849
            "min_width": null,
7850
            "object_fit": null,
7851
            "object_position": null,
7852
            "order": null,
7853
            "overflow": null,
7854
            "overflow_x": null,
7855
            "overflow_y": null,
7856
            "padding": null,
7857
            "right": null,
7858
            "top": null,
7859
            "visibility": null,
7860
            "width": null
7861
          }
7862
        },
7863
        "b07f26a21325493cac19113f1aa1ee96": {
7864
          "model_module": "@jupyter-widgets/base",
7865
          "model_name": "LayoutModel",
7866
          "model_module_version": "1.2.0",
7867
          "state": {
7868
            "_model_module": "@jupyter-widgets/base",
7869
            "_model_module_version": "1.2.0",
7870
            "_model_name": "LayoutModel",
7871
            "_view_count": null,
7872
            "_view_module": "@jupyter-widgets/base",
7873
            "_view_module_version": "1.2.0",
7874
            "_view_name": "LayoutView",
7875
            "align_content": null,
7876
            "align_items": null,
7877
            "align_self": null,
7878
            "border": null,
7879
            "bottom": null,
7880
            "display": null,
7881
            "flex": null,
7882
            "flex_flow": null,
7883
            "grid_area": null,
7884
            "grid_auto_columns": null,
7885
            "grid_auto_flow": null,
7886
            "grid_auto_rows": null,
7887
            "grid_column": null,
7888
            "grid_gap": null,
7889
            "grid_row": null,
7890
            "grid_template_areas": null,
7891
            "grid_template_columns": null,
7892
            "grid_template_rows": null,
7893
            "height": null,
7894
            "justify_content": null,
7895
            "justify_items": null,
7896
            "left": null,
7897
            "margin": null,
7898
            "max_height": null,
7899
            "max_width": null,
7900
            "min_height": null,
7901
            "min_width": null,
7902
            "object_fit": null,
7903
            "object_position": null,
7904
            "order": null,
7905
            "overflow": null,
7906
            "overflow_x": null,
7907
            "overflow_y": null,
7908
            "padding": null,
7909
            "right": null,
7910
            "top": null,
7911
            "visibility": null,
7912
            "width": null
7913
          }
7914
        },
7915
        "fbdf6c544fb54294903524a69384e773": {
7916
          "model_module": "@jupyter-widgets/controls",
7917
          "model_name": "DescriptionStyleModel",
7918
          "model_module_version": "1.5.0",
7919
          "state": {
7920
            "_model_module": "@jupyter-widgets/controls",
7921
            "_model_module_version": "1.5.0",
7922
            "_model_name": "DescriptionStyleModel",
7923
            "_view_count": null,
7924
            "_view_module": "@jupyter-widgets/base",
7925
            "_view_module_version": "1.2.0",
7926
            "_view_name": "StyleView",
7927
            "description_width": ""
7928
          }
7929
        },
7930
        "6c6f2223243b4a7485aef7fbbfe07668": {
7931
          "model_module": "@jupyter-widgets/base",
7932
          "model_name": "LayoutModel",
7933
          "model_module_version": "1.2.0",
7934
          "state": {
7935
            "_model_module": "@jupyter-widgets/base",
7936
            "_model_module_version": "1.2.0",
7937
            "_model_name": "LayoutModel",
7938
            "_view_count": null,
7939
            "_view_module": "@jupyter-widgets/base",
7940
            "_view_module_version": "1.2.0",
7941
            "_view_name": "LayoutView",
7942
            "align_content": null,
7943
            "align_items": null,
7944
            "align_self": null,
7945
            "border": null,
7946
            "bottom": null,
7947
            "display": null,
7948
            "flex": null,
7949
            "flex_flow": null,
7950
            "grid_area": null,
7951
            "grid_auto_columns": null,
7952
            "grid_auto_flow": null,
7953
            "grid_auto_rows": null,
7954
            "grid_column": null,
7955
            "grid_gap": null,
7956
            "grid_row": null,
7957
            "grid_template_areas": null,
7958
            "grid_template_columns": null,
7959
            "grid_template_rows": null,
7960
            "height": null,
7961
            "justify_content": null,
7962
            "justify_items": null,
7963
            "left": null,
7964
            "margin": null,
7965
            "max_height": null,
7966
            "max_width": null,
7967
            "min_height": null,
7968
            "min_width": null,
7969
            "object_fit": null,
7970
            "object_position": null,
7971
            "order": null,
7972
            "overflow": null,
7973
            "overflow_x": null,
7974
            "overflow_y": null,
7975
            "padding": null,
7976
            "right": null,
7977
            "top": null,
7978
            "visibility": null,
7979
            "width": null
7980
          }
7981
        },
7982
        "a93509d61ac94628a74bc0f98c0eec06": {
7983
          "model_module": "@jupyter-widgets/controls",
7984
          "model_name": "ProgressStyleModel",
7985
          "model_module_version": "1.5.0",
7986
          "state": {
7987
            "_model_module": "@jupyter-widgets/controls",
7988
            "_model_module_version": "1.5.0",
7989
            "_model_name": "ProgressStyleModel",
7990
            "_view_count": null,
7991
            "_view_module": "@jupyter-widgets/base",
7992
            "_view_module_version": "1.2.0",
7993
            "_view_name": "StyleView",
7994
            "bar_color": null,
7995
            "description_width": ""
7996
          }
7997
        },
7998
        "3a8de0eb7db44647a734590b6b351b44": {
7999
          "model_module": "@jupyter-widgets/base",
8000
          "model_name": "LayoutModel",
8001
          "model_module_version": "1.2.0",
8002
          "state": {
8003
            "_model_module": "@jupyter-widgets/base",
8004
            "_model_module_version": "1.2.0",
8005
            "_model_name": "LayoutModel",
8006
            "_view_count": null,
8007
            "_view_module": "@jupyter-widgets/base",
8008
            "_view_module_version": "1.2.0",
8009
            "_view_name": "LayoutView",
8010
            "align_content": null,
8011
            "align_items": null,
8012
            "align_self": null,
8013
            "border": null,
8014
            "bottom": null,
8015
            "display": null,
8016
            "flex": null,
8017
            "flex_flow": null,
8018
            "grid_area": null,
8019
            "grid_auto_columns": null,
8020
            "grid_auto_flow": null,
8021
            "grid_auto_rows": null,
8022
            "grid_column": null,
8023
            "grid_gap": null,
8024
            "grid_row": null,
8025
            "grid_template_areas": null,
8026
            "grid_template_columns": null,
8027
            "grid_template_rows": null,
8028
            "height": null,
8029
            "justify_content": null,
8030
            "justify_items": null,
8031
            "left": null,
8032
            "margin": null,
8033
            "max_height": null,
8034
            "max_width": null,
8035
            "min_height": null,
8036
            "min_width": null,
8037
            "object_fit": null,
8038
            "object_position": null,
8039
            "order": null,
8040
            "overflow": null,
8041
            "overflow_x": null,
8042
            "overflow_y": null,
8043
            "padding": null,
8044
            "right": null,
8045
            "top": null,
8046
            "visibility": null,
8047
            "width": null
8048
          }
8049
        },
8050
        "64d8affd2e854a1c9043fec7ca8a2796": {
8051
          "model_module": "@jupyter-widgets/controls",
8052
          "model_name": "DescriptionStyleModel",
8053
          "model_module_version": "1.5.0",
8054
          "state": {
8055
            "_model_module": "@jupyter-widgets/controls",
8056
            "_model_module_version": "1.5.0",
8057
            "_model_name": "DescriptionStyleModel",
8058
            "_view_count": null,
8059
            "_view_module": "@jupyter-widgets/base",
8060
            "_view_module_version": "1.2.0",
8061
            "_view_name": "StyleView",
8062
            "description_width": ""
8063
          }
8064
        }
8065
      }
8066
    }
8067
  },
8068
  "nbformat": 4,
8069
  "nbformat_minor": 5
8070
}

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.