open-source-models-with-hugging-face

Форк
0
4784 строки · 139.8 Кб
1
{
2
 "cells": [
3
  {
4
   "cell_type": "markdown",
5
   "metadata": {},
6
   "source": [
7
    "# Lesson 2: Natural Language Processing (NLP)"
8
   ]
9
  },
10
  {
11
   "cell_type": "markdown",
12
   "metadata": {},
13
   "source": [
14
    "First, install the following if you are running locally:\n",
15
    "\n",
16
    "```\n",
17
    "    !pip install transformers\n",
18
    "```\n",
19
    "\n",
20
    "_Note:_ You don't have to install any extra libraries if you are running this lab in this platform."
21
   ]
22
  },
23
  {
24
   "cell_type": "markdown",
25
   "metadata": {},
26
   "source": [
27
    "### Build the `chatbot` pipeline using 🤗 Transformers Library"
28
   ]
29
  },
30
  {
31
   "cell_type": "markdown",
32
   "metadata": {},
33
   "source": [
34
    "- Here is some code that suppresses some warning messages."
35
   ]
36
  },
37
  {
38
   "cell_type": "code",
39
   "execution_count": 1,
40
   "metadata": {
41
    "height": 47
42
   },
43
   "outputs": [],
44
   "source": [
45
    "from transformers.utils import logging\n",
46
    "logging.set_verbosity_error()"
47
   ]
48
  },
49
  {
50
   "cell_type": "code",
51
   "execution_count": 2,
52
   "metadata": {
53
    "height": 30
54
   },
55
   "outputs": [],
56
   "source": [
57
    "from transformers import pipeline"
58
   ]
59
  },
60
  {
61
   "cell_type": "markdown",
62
   "metadata": {},
63
   "source": [
64
    "- Define the conversation pipeline"
65
   ]
66
  },
67
  {
68
   "cell_type": "code",
69
   "execution_count": 3,
70
   "metadata": {
71
    "height": 77
72
   },
73
   "outputs": [],
74
   "source": [
75
    "# Create the chatbot\n",
76
    "chatbot = pipeline(task=\"conversational\",\n",
77
    "                   model=\"./models/facebook/blenderbot-400M-distill\")"
78
   ]
79
  },
80
  {
81
   "cell_type": "markdown",
82
   "metadata": {},
83
   "source": [
84
    "_Note:_ Find more information about the model 'blenderbot-400M-distill', [here](https://huggingface.co/facebook/blenderbot-400M-distill)."
85
   ]
86
  },
87
  {
88
   "cell_type": "code",
89
   "execution_count": 4,
90
   "metadata": {
91
    "height": 94
92
   },
93
   "outputs": [],
94
   "source": [
95
    "# User message to start the conversation with the chatbot\n",
96
    "user_message = \"\"\"\n",
97
    "What are some fun activities I can do in the winter?\n",
98
    "\"\"\""
99
   ]
100
  },
101
  {
102
   "cell_type": "code",
103
   "execution_count": 5,
104
   "metadata": {
105
    "height": 47
106
   },
107
   "outputs": [],
108
   "source": [
109
    "# Import Conversation to get started\n",
110
    "from transformers import Conversation"
111
   ]
112
  },
113
  {
114
   "cell_type": "code",
115
   "execution_count": 6,
116
   "metadata": {
117
    "height": 47
118
   },
119
   "outputs": [],
120
   "source": [
121
    "# Start a new conversation\n",
122
    "conversation = Conversation(user_message)"
123
   ]
124
  },
125
  {
126
   "cell_type": "code",
127
   "execution_count": 7,
128
   "metadata": {
129
    "height": 30
130
   },
131
   "outputs": [
132
    {
133
     "name": "stdout",
134
     "output_type": "stream",
135
     "text": [
136
      "Conversation id: 415c0b76-1df8-4138-99c4-0083f965c08e\n",
137
      "user: \n",
138
      "What are some fun activities I can do in the winter?\n",
139
      "\n",
140
      "\n"
141
     ]
142
    }
143
   ],
144
   "source": [
145
    "print(conversation)"
146
   ]
147
  },
148
  {
149
   "cell_type": "code",
150
   "execution_count": 8,
151
   "metadata": {
152
    "height": 47
153
   },
154
   "outputs": [],
155
   "source": [
156
    "# Send this conversation to the chatbot\n",
157
    "conversation = chatbot(conversation)"
158
   ]
159
  },
160
  {
161
   "cell_type": "code",
162
   "execution_count": 9,
163
   "metadata": {
164
    "height": 30
165
   },
166
   "outputs": [
167
    {
168
     "name": "stdout",
169
     "output_type": "stream",
170
     "text": [
171
      "Conversation id: 415c0b76-1df8-4138-99c4-0083f965c08e\n",
172
      "user: \n",
173
      "What are some fun activities I can do in the winter?\n",
174
      "\n",
175
      "assistant:  I like snowboarding and skiing.  What do you like to do in winter?\n",
176
      "\n"
177
     ]
178
    }
179
   ],
180
   "source": [
181
    "print(conversation)"
182
   ]
183
  },
184
  {
185
   "cell_type": "markdown",
186
   "metadata": {},
187
   "source": [
188
    "_Note:_ It is possible to continue the conversation with the chatbot adding something like:\n",
189
    "```\n",
190
    "print(chatbot(Conversation(\"What else do you recommend?\")))\n",
191
    "```\n",
192
    "However, the chatbot might reply something unrelated because the chatbot didn't follow up the whole conversation.\n",
193
    "\n",
194
    "To fix that, try adding a 'message' to the conversation to follow up the conversation's context."
195
   ]
196
  },
197
  {
198
   "cell_type": "code",
199
   "execution_count": 13,
200
   "metadata": {
201
    "height": 43
202
   },
203
   "outputs": [
204
    {
205
     "name": "stdout",
206
     "output_type": "stream",
207
     "text": [
208
      "Conversation id: 5a3c42b6-0590-4550-8c05-a7ecf0616210\n",
209
      "user: What else do you recommend?\n",
210
      "assistant:  Well, I'm not sure what else I can think of, but I do know that I'm going to miss her.\n",
211
      "\n"
212
     ]
213
    }
214
   ],
215
   "source": [
216
    "print(chatbot(Conversation(\"What else do you recommend?\")))"
217
   ]
218
  },
219
  {
220
   "cell_type": "code",
221
   "execution_count": 10,
222
   "metadata": {
223
    "height": 132
224
   },
225
   "outputs": [],
226
   "source": [
227
    "# Add a message to the conversation\n",
228
    "conversation.add_message(\n",
229
    "    {\"role\": \"user\",\n",
230
    "     \"content\": \"\"\"\n",
231
    "What else do you recommend?\n",
232
    "\"\"\"\n",
233
    "    })"
234
   ]
235
  },
236
  {
237
   "cell_type": "code",
238
   "execution_count": 11,
239
   "metadata": {
240
    "height": 30
241
   },
242
   "outputs": [
243
    {
244
     "name": "stdout",
245
     "output_type": "stream",
246
     "text": [
247
      "Conversation id: 415c0b76-1df8-4138-99c4-0083f965c08e\n",
248
      "user: \n",
249
      "What are some fun activities I can do in the winter?\n",
250
      "\n",
251
      "assistant:  I like snowboarding and skiing.  What do you like to do in winter?\n",
252
      "user: \n",
253
      "What else do you recommend?\n",
254
      "\n",
255
      "\n"
256
     ]
257
    }
258
   ],
259
   "source": [
260
    "print(conversation)"
261
   ]
262
  },
263
  {
264
   "cell_type": "code",
265
   "execution_count": 12,
266
   "metadata": {
267
    "height": 81
268
   },
269
   "outputs": [
270
    {
271
     "name": "stdout",
272
     "output_type": "stream",
273
     "text": [
274
      "Conversation id: 415c0b76-1df8-4138-99c4-0083f965c08e\n",
275
      "user: \n",
276
      "What are some fun activities I can do in the winter?\n",
277
      "\n",
278
      "assistant:  I like snowboarding and skiing.  What do you like to do in winter?\n",
279
      "user: \n",
280
      "What else do you recommend?\n",
281
      "\n",
282
      "assistant:  Snowboarding is a lot of fun.  You can do it indoors or outdoors.\n",
283
      "\n"
284
     ]
285
    }
286
   ],
287
   "source": [
288
    "# Send this conversation to the chatbot\n",
289
    "conversation = chatbot(conversation)\n",
290
    "\n",
291
    "print(conversation)"
292
   ]
293
  },
294
  {
295
   "cell_type": "markdown",
296
   "metadata": {},
297
   "source": [
298
    "_Note:_ Find more information about the __Open LLM Leaderboard__[ here](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard), and about the __LMSYS Chatbot Arena Leaderboard__ [ here](https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard)."
299
   ]
300
  },
301
  {
302
   "cell_type": "markdown",
303
   "metadata": {},
304
   "source": [
305
    "### Try yourself! \n",
306
    "Now, it is your turn! Try this model with your own conversations!"
307
   ]
308
  }
309
 ],
310
 "metadata": {
311
  "colab": {
312
   "provenance": []
313
  },
314
  "kernelspec": {
315
   "display_name": "Python 3 (ipykernel)",
316
   "language": "python",
317
   "name": "python3"
318
  },
319
  "language_info": {
320
   "codemirror_mode": {
321
    "name": "ipython",
322
    "version": 3
323
   },
324
   "file_extension": ".py",
325
   "mimetype": "text/x-python",
326
   "name": "python",
327
   "nbconvert_exporter": "python",
328
   "pygments_lexer": "ipython3",
329
   "version": "3.9.18"
330
  },
331
  "widgets": {
332
   "application/vnd.jupyter.widget-state+json": {
333
    "0285e3303205412b83ec9f9f90728d00": {
334
     "model_module": "@jupyter-widgets/controls",
335
     "model_module_version": "1.5.0",
336
     "model_name": "HBoxModel",
337
     "state": {
338
      "_dom_classes": [],
339
      "_model_module": "@jupyter-widgets/controls",
340
      "_model_module_version": "1.5.0",
341
      "_model_name": "HBoxModel",
342
      "_view_count": null,
343
      "_view_module": "@jupyter-widgets/controls",
344
      "_view_module_version": "1.5.0",
345
      "_view_name": "HBoxView",
346
      "box_style": "",
347
      "children": [
348
       "IPY_MODEL_80f4206228ca4e2b819a66791cb54b66",
349
       "IPY_MODEL_297c0cfabb884bb1af03506a9769844f",
350
       "IPY_MODEL_e93a50457e1e4b87aae6a38b88501b18"
351
      ],
352
      "layout": "IPY_MODEL_f85918578cea472c900772971e8eb150"
353
     }
354
    },
355
    "028ee6ac31c9457f93930d43d654476f": {
356
     "model_module": "@jupyter-widgets/controls",
357
     "model_module_version": "1.5.0",
358
     "model_name": "HBoxModel",
359
     "state": {
360
      "_dom_classes": [],
361
      "_model_module": "@jupyter-widgets/controls",
362
      "_model_module_version": "1.5.0",
363
      "_model_name": "HBoxModel",
364
      "_view_count": null,
365
      "_view_module": "@jupyter-widgets/controls",
366
      "_view_module_version": "1.5.0",
367
      "_view_name": "HBoxView",
368
      "box_style": "",
369
      "children": [
370
       "IPY_MODEL_61de9fc4d5db4a31a03883f94f1cebb8",
371
       "IPY_MODEL_d673fe93a1c6487ba1371a736cf975ef",
372
       "IPY_MODEL_4e1459c9f0184492969491c7cb77ef04"
373
      ],
374
      "layout": "IPY_MODEL_53c631f4b89244cbb48dc2a1e6f98997"
375
     }
376
    },
377
    "0771588e95944c86986d6d5a35ecac25": {
378
     "model_module": "@jupyter-widgets/controls",
379
     "model_module_version": "1.5.0",
380
     "model_name": "ProgressStyleModel",
381
     "state": {
382
      "_model_module": "@jupyter-widgets/controls",
383
      "_model_module_version": "1.5.0",
384
      "_model_name": "ProgressStyleModel",
385
      "_view_count": null,
386
      "_view_module": "@jupyter-widgets/base",
387
      "_view_module_version": "1.2.0",
388
      "_view_name": "StyleView",
389
      "bar_color": null,
390
      "description_width": ""
391
     }
392
    },
393
    "0bdbd16a1a324d0e9544f0b222b22f58": {
394
     "model_module": "@jupyter-widgets/base",
395
     "model_module_version": "1.2.0",
396
     "model_name": "LayoutModel",
397
     "state": {
398
      "_model_module": "@jupyter-widgets/base",
399
      "_model_module_version": "1.2.0",
400
      "_model_name": "LayoutModel",
401
      "_view_count": null,
402
      "_view_module": "@jupyter-widgets/base",
403
      "_view_module_version": "1.2.0",
404
      "_view_name": "LayoutView",
405
      "align_content": null,
406
      "align_items": null,
407
      "align_self": null,
408
      "border": null,
409
      "bottom": null,
410
      "display": null,
411
      "flex": null,
412
      "flex_flow": null,
413
      "grid_area": null,
414
      "grid_auto_columns": null,
415
      "grid_auto_flow": null,
416
      "grid_auto_rows": null,
417
      "grid_column": null,
418
      "grid_gap": null,
419
      "grid_row": null,
420
      "grid_template_areas": null,
421
      "grid_template_columns": null,
422
      "grid_template_rows": null,
423
      "height": null,
424
      "justify_content": null,
425
      "justify_items": null,
426
      "left": null,
427
      "margin": null,
428
      "max_height": null,
429
      "max_width": null,
430
      "min_height": null,
431
      "min_width": null,
432
      "object_fit": null,
433
      "object_position": null,
434
      "order": null,
435
      "overflow": null,
436
      "overflow_x": null,
437
      "overflow_y": null,
438
      "padding": null,
439
      "right": null,
440
      "top": null,
441
      "visibility": null,
442
      "width": null
443
     }
444
    },
445
    "0c5ceaf63a5c4fd59be7408d986878a5": {
446
     "model_module": "@jupyter-widgets/controls",
447
     "model_module_version": "1.5.0",
448
     "model_name": "FloatProgressModel",
449
     "state": {
450
      "_dom_classes": [],
451
      "_model_module": "@jupyter-widgets/controls",
452
      "_model_module_version": "1.5.0",
453
      "_model_name": "FloatProgressModel",
454
      "_view_count": null,
455
      "_view_module": "@jupyter-widgets/controls",
456
      "_view_module_version": "1.5.0",
457
      "_view_name": "ProgressView",
458
      "bar_style": "success",
459
      "description": "",
460
      "description_tooltip": null,
461
      "layout": "IPY_MODEL_684910dc324b41009f6756befb06af55",
462
      "max": 16,
463
      "min": 0,
464
      "orientation": "horizontal",
465
      "style": "IPY_MODEL_c919b9323ca942d0af3e4d09c0a2c7fc",
466
      "value": 16
467
     }
468
    },
469
    "0d1b7ba00af34eae9a0fc0e508acdc81": {
470
     "model_module": "@jupyter-widgets/controls",
471
     "model_module_version": "1.5.0",
472
     "model_name": "HBoxModel",
473
     "state": {
474
      "_dom_classes": [],
475
      "_model_module": "@jupyter-widgets/controls",
476
      "_model_module_version": "1.5.0",
477
      "_model_name": "HBoxModel",
478
      "_view_count": null,
479
      "_view_module": "@jupyter-widgets/controls",
480
      "_view_module_version": "1.5.0",
481
      "_view_name": "HBoxView",
482
      "box_style": "",
483
      "children": [
484
       "IPY_MODEL_de1a2ad2f84e4efa915b795f6dbcacca",
485
       "IPY_MODEL_3327367faa95488087fb6c71fc5f87a4",
486
       "IPY_MODEL_28b8a27045314d358063cf000c186776"
487
      ],
488
      "layout": "IPY_MODEL_34506e465b1a4cbb9102cbf1a89442f2"
489
     }
490
    },
491
    "11dd6ad7a71a4b658a4b43b8c23b8540": {
492
     "model_module": "@jupyter-widgets/base",
493
     "model_module_version": "1.2.0",
494
     "model_name": "LayoutModel",
495
     "state": {
496
      "_model_module": "@jupyter-widgets/base",
497
      "_model_module_version": "1.2.0",
498
      "_model_name": "LayoutModel",
499
      "_view_count": null,
500
      "_view_module": "@jupyter-widgets/base",
501
      "_view_module_version": "1.2.0",
502
      "_view_name": "LayoutView",
503
      "align_content": null,
504
      "align_items": null,
505
      "align_self": null,
506
      "border": null,
507
      "bottom": null,
508
      "display": null,
509
      "flex": null,
510
      "flex_flow": null,
511
      "grid_area": null,
512
      "grid_auto_columns": null,
513
      "grid_auto_flow": null,
514
      "grid_auto_rows": null,
515
      "grid_column": null,
516
      "grid_gap": null,
517
      "grid_row": null,
518
      "grid_template_areas": null,
519
      "grid_template_columns": null,
520
      "grid_template_rows": null,
521
      "height": null,
522
      "justify_content": null,
523
      "justify_items": null,
524
      "left": null,
525
      "margin": null,
526
      "max_height": null,
527
      "max_width": null,
528
      "min_height": null,
529
      "min_width": null,
530
      "object_fit": null,
531
      "object_position": null,
532
      "order": null,
533
      "overflow": null,
534
      "overflow_x": null,
535
      "overflow_y": null,
536
      "padding": null,
537
      "right": null,
538
      "top": null,
539
      "visibility": null,
540
      "width": null
541
     }
542
    },
543
    "1243eb4a12014a448916560cc953a833": {
544
     "model_module": "@jupyter-widgets/base",
545
     "model_module_version": "1.2.0",
546
     "model_name": "LayoutModel",
547
     "state": {
548
      "_model_module": "@jupyter-widgets/base",
549
      "_model_module_version": "1.2.0",
550
      "_model_name": "LayoutModel",
551
      "_view_count": null,
552
      "_view_module": "@jupyter-widgets/base",
553
      "_view_module_version": "1.2.0",
554
      "_view_name": "LayoutView",
555
      "align_content": null,
556
      "align_items": null,
557
      "align_self": null,
558
      "border": null,
559
      "bottom": null,
560
      "display": null,
561
      "flex": null,
562
      "flex_flow": null,
563
      "grid_area": null,
564
      "grid_auto_columns": null,
565
      "grid_auto_flow": null,
566
      "grid_auto_rows": null,
567
      "grid_column": null,
568
      "grid_gap": null,
569
      "grid_row": null,
570
      "grid_template_areas": null,
571
      "grid_template_columns": null,
572
      "grid_template_rows": null,
573
      "height": null,
574
      "justify_content": null,
575
      "justify_items": null,
576
      "left": null,
577
      "margin": null,
578
      "max_height": null,
579
      "max_width": null,
580
      "min_height": null,
581
      "min_width": null,
582
      "object_fit": null,
583
      "object_position": null,
584
      "order": null,
585
      "overflow": null,
586
      "overflow_x": null,
587
      "overflow_y": null,
588
      "padding": null,
589
      "right": null,
590
      "top": null,
591
      "visibility": null,
592
      "width": null
593
     }
594
    },
595
    "15138e8fcb7f4ecca0726a0efde0aec4": {
596
     "model_module": "@jupyter-widgets/controls",
597
     "model_module_version": "1.5.0",
598
     "model_name": "FloatProgressModel",
599
     "state": {
600
      "_dom_classes": [],
601
      "_model_module": "@jupyter-widgets/controls",
602
      "_model_module_version": "1.5.0",
603
      "_model_name": "FloatProgressModel",
604
      "_view_count": null,
605
      "_view_module": "@jupyter-widgets/controls",
606
      "_view_module_version": "1.5.0",
607
      "_view_name": "ProgressView",
608
      "bar_style": "success",
609
      "description": "",
610
      "description_tooltip": null,
611
      "layout": "IPY_MODEL_c86258719deb4f9ab7260ba3f6764c0e",
612
      "max": 1572,
613
      "min": 0,
614
      "orientation": "horizontal",
615
      "style": "IPY_MODEL_a68b98d1aab243449e93d9e604e81110",
616
      "value": 1572
617
     }
618
    },
619
    "1534438d29e74dd3b93d6140c416c549": {
620
     "model_module": "@jupyter-widgets/base",
621
     "model_module_version": "1.2.0",
622
     "model_name": "LayoutModel",
623
     "state": {
624
      "_model_module": "@jupyter-widgets/base",
625
      "_model_module_version": "1.2.0",
626
      "_model_name": "LayoutModel",
627
      "_view_count": null,
628
      "_view_module": "@jupyter-widgets/base",
629
      "_view_module_version": "1.2.0",
630
      "_view_name": "LayoutView",
631
      "align_content": null,
632
      "align_items": null,
633
      "align_self": null,
634
      "border": null,
635
      "bottom": null,
636
      "display": null,
637
      "flex": null,
638
      "flex_flow": null,
639
      "grid_area": null,
640
      "grid_auto_columns": null,
641
      "grid_auto_flow": null,
642
      "grid_auto_rows": null,
643
      "grid_column": null,
644
      "grid_gap": null,
645
      "grid_row": null,
646
      "grid_template_areas": null,
647
      "grid_template_columns": null,
648
      "grid_template_rows": null,
649
      "height": null,
650
      "justify_content": null,
651
      "justify_items": null,
652
      "left": null,
653
      "margin": null,
654
      "max_height": null,
655
      "max_width": null,
656
      "min_height": null,
657
      "min_width": null,
658
      "object_fit": null,
659
      "object_position": null,
660
      "order": null,
661
      "overflow": null,
662
      "overflow_x": null,
663
      "overflow_y": null,
664
      "padding": null,
665
      "right": null,
666
      "top": null,
667
      "visibility": null,
668
      "width": null
669
     }
670
    },
671
    "15b469c156ea4e3fb405f11135dfd823": {
672
     "model_module": "@jupyter-widgets/base",
673
     "model_module_version": "1.2.0",
674
     "model_name": "LayoutModel",
675
     "state": {
676
      "_model_module": "@jupyter-widgets/base",
677
      "_model_module_version": "1.2.0",
678
      "_model_name": "LayoutModel",
679
      "_view_count": null,
680
      "_view_module": "@jupyter-widgets/base",
681
      "_view_module_version": "1.2.0",
682
      "_view_name": "LayoutView",
683
      "align_content": null,
684
      "align_items": null,
685
      "align_self": null,
686
      "border": null,
687
      "bottom": null,
688
      "display": null,
689
      "flex": null,
690
      "flex_flow": null,
691
      "grid_area": null,
692
      "grid_auto_columns": null,
693
      "grid_auto_flow": null,
694
      "grid_auto_rows": null,
695
      "grid_column": null,
696
      "grid_gap": null,
697
      "grid_row": null,
698
      "grid_template_areas": null,
699
      "grid_template_columns": null,
700
      "grid_template_rows": null,
701
      "height": null,
702
      "justify_content": null,
703
      "justify_items": null,
704
      "left": null,
705
      "margin": null,
706
      "max_height": null,
707
      "max_width": null,
708
      "min_height": null,
709
      "min_width": null,
710
      "object_fit": null,
711
      "object_position": null,
712
      "order": null,
713
      "overflow": null,
714
      "overflow_x": null,
715
      "overflow_y": null,
716
      "padding": null,
717
      "right": null,
718
      "top": null,
719
      "visibility": null,
720
      "width": null
721
     }
722
    },
723
    "171eea3f8abd4a949f3dae61a68c8ef1": {
724
     "model_module": "@jupyter-widgets/controls",
725
     "model_module_version": "1.5.0",
726
     "model_name": "ProgressStyleModel",
727
     "state": {
728
      "_model_module": "@jupyter-widgets/controls",
729
      "_model_module_version": "1.5.0",
730
      "_model_name": "ProgressStyleModel",
731
      "_view_count": null,
732
      "_view_module": "@jupyter-widgets/base",
733
      "_view_module_version": "1.2.0",
734
      "_view_name": "StyleView",
735
      "bar_color": null,
736
      "description_width": ""
737
     }
738
    },
739
    "1d7b6a791f3d4464a2592b2c51710767": {
740
     "model_module": "@jupyter-widgets/controls",
741
     "model_module_version": "1.5.0",
742
     "model_name": "HTMLModel",
743
     "state": {
744
      "_dom_classes": [],
745
      "_model_module": "@jupyter-widgets/controls",
746
      "_model_module_version": "1.5.0",
747
      "_model_name": "HTMLModel",
748
      "_view_count": null,
749
      "_view_module": "@jupyter-widgets/controls",
750
      "_view_module_version": "1.5.0",
751
      "_view_name": "HTMLView",
752
      "description": "",
753
      "description_tooltip": null,
754
      "layout": "IPY_MODEL_b7c5f656a9e14e96bb250813588c8262",
755
      "placeholder": "​",
756
      "style": "IPY_MODEL_319230b8eb154e5aa171db1bc2245e3e",
757
      "value": " 16.0/16.0 [00:00<00:00, 1.04kB/s]"
758
     }
759
    },
760
    "1fc1f4992fa14a60bccaee9dc593a96b": {
761
     "model_module": "@jupyter-widgets/base",
762
     "model_module_version": "1.2.0",
763
     "model_name": "LayoutModel",
764
     "state": {
765
      "_model_module": "@jupyter-widgets/base",
766
      "_model_module_version": "1.2.0",
767
      "_model_name": "LayoutModel",
768
      "_view_count": null,
769
      "_view_module": "@jupyter-widgets/base",
770
      "_view_module_version": "1.2.0",
771
      "_view_name": "LayoutView",
772
      "align_content": null,
773
      "align_items": null,
774
      "align_self": null,
775
      "border": null,
776
      "bottom": null,
777
      "display": null,
778
      "flex": null,
779
      "flex_flow": null,
780
      "grid_area": null,
781
      "grid_auto_columns": null,
782
      "grid_auto_flow": null,
783
      "grid_auto_rows": null,
784
      "grid_column": null,
785
      "grid_gap": null,
786
      "grid_row": null,
787
      "grid_template_areas": null,
788
      "grid_template_columns": null,
789
      "grid_template_rows": null,
790
      "height": null,
791
      "justify_content": null,
792
      "justify_items": null,
793
      "left": null,
794
      "margin": null,
795
      "max_height": null,
796
      "max_width": null,
797
      "min_height": null,
798
      "min_width": null,
799
      "object_fit": null,
800
      "object_position": null,
801
      "order": null,
802
      "overflow": null,
803
      "overflow_x": null,
804
      "overflow_y": null,
805
      "padding": null,
806
      "right": null,
807
      "top": null,
808
      "visibility": null,
809
      "width": null
810
     }
811
    },
812
    "2763e02721f649e8b73d81210cd579f6": {
813
     "model_module": "@jupyter-widgets/base",
814
     "model_module_version": "1.2.0",
815
     "model_name": "LayoutModel",
816
     "state": {
817
      "_model_module": "@jupyter-widgets/base",
818
      "_model_module_version": "1.2.0",
819
      "_model_name": "LayoutModel",
820
      "_view_count": null,
821
      "_view_module": "@jupyter-widgets/base",
822
      "_view_module_version": "1.2.0",
823
      "_view_name": "LayoutView",
824
      "align_content": null,
825
      "align_items": null,
826
      "align_self": null,
827
      "border": null,
828
      "bottom": null,
829
      "display": null,
830
      "flex": null,
831
      "flex_flow": null,
832
      "grid_area": null,
833
      "grid_auto_columns": null,
834
      "grid_auto_flow": null,
835
      "grid_auto_rows": null,
836
      "grid_column": null,
837
      "grid_gap": null,
838
      "grid_row": null,
839
      "grid_template_areas": null,
840
      "grid_template_columns": null,
841
      "grid_template_rows": null,
842
      "height": null,
843
      "justify_content": null,
844
      "justify_items": null,
845
      "left": null,
846
      "margin": null,
847
      "max_height": null,
848
      "max_width": null,
849
      "min_height": null,
850
      "min_width": null,
851
      "object_fit": null,
852
      "object_position": null,
853
      "order": null,
854
      "overflow": null,
855
      "overflow_x": null,
856
      "overflow_y": null,
857
      "padding": null,
858
      "right": null,
859
      "top": null,
860
      "visibility": null,
861
      "width": null
862
     }
863
    },
864
    "28b8a27045314d358063cf000c186776": {
865
     "model_module": "@jupyter-widgets/controls",
866
     "model_module_version": "1.5.0",
867
     "model_name": "HTMLModel",
868
     "state": {
869
      "_dom_classes": [],
870
      "_model_module": "@jupyter-widgets/controls",
871
      "_model_module_version": "1.5.0",
872
      "_model_name": "HTMLModel",
873
      "_view_count": null,
874
      "_view_module": "@jupyter-widgets/controls",
875
      "_view_module_version": "1.5.0",
876
      "_view_name": "HTMLView",
877
      "description": "",
878
      "description_tooltip": null,
879
      "layout": "IPY_MODEL_b0042291309d4ca6869e666e771e6dba",
880
      "placeholder": "​",
881
      "style": "IPY_MODEL_ca27338c07fb4f28b34c43253918af67",
882
      "value": " 310k/310k [00:00<00:00, 6.59MB/s]"
883
     }
884
    },
885
    "297c0cfabb884bb1af03506a9769844f": {
886
     "model_module": "@jupyter-widgets/controls",
887
     "model_module_version": "1.5.0",
888
     "model_name": "FloatProgressModel",
889
     "state": {
890
      "_dom_classes": [],
891
      "_model_module": "@jupyter-widgets/controls",
892
      "_model_module_version": "1.5.0",
893
      "_model_name": "FloatProgressModel",
894
      "_view_count": null,
895
      "_view_module": "@jupyter-widgets/controls",
896
      "_view_module_version": "1.5.0",
897
      "_view_name": "ProgressView",
898
      "bar_style": "success",
899
      "description": "",
900
      "description_tooltip": null,
901
      "layout": "IPY_MODEL_8834a01292b64791bdf7dd162bac96a4",
902
      "max": 493443,
903
      "min": 0,
904
      "orientation": "horizontal",
905
      "style": "IPY_MODEL_9295a5e2175240e698457ea13ecb2901",
906
      "value": 493443
907
     }
908
    },
909
    "2a549eb965d94231a8b0d20e43911b4b": {
910
     "model_module": "@jupyter-widgets/controls",
911
     "model_module_version": "1.5.0",
912
     "model_name": "DescriptionStyleModel",
913
     "state": {
914
      "_model_module": "@jupyter-widgets/controls",
915
      "_model_module_version": "1.5.0",
916
      "_model_name": "DescriptionStyleModel",
917
      "_view_count": null,
918
      "_view_module": "@jupyter-widgets/base",
919
      "_view_module_version": "1.2.0",
920
      "_view_name": "StyleView",
921
      "description_width": ""
922
     }
923
    },
924
    "2cf9c7fa236648e2bd54d8251139a2ef": {
925
     "model_module": "@jupyter-widgets/controls",
926
     "model_module_version": "1.5.0",
927
     "model_name": "HBoxModel",
928
     "state": {
929
      "_dom_classes": [],
930
      "_model_module": "@jupyter-widgets/controls",
931
      "_model_module_version": "1.5.0",
932
      "_model_name": "HBoxModel",
933
      "_view_count": null,
934
      "_view_module": "@jupyter-widgets/controls",
935
      "_view_module_version": "1.5.0",
936
      "_view_name": "HBoxView",
937
      "box_style": "",
938
      "children": [
939
       "IPY_MODEL_c290d1db43f54a7fa842c867a83c307b",
940
       "IPY_MODEL_ea3e0df3f60c44e5addd8fe77d9afdac",
941
       "IPY_MODEL_691d4e80ba6d42ad9c7a43b715e4dd4d"
942
      ],
943
      "layout": "IPY_MODEL_875b6a477e144a1d8557b7a141b439ed"
944
     }
945
    },
946
    "2dbd11bec15b46f6a065cede6d92ff86": {
947
     "model_module": "@jupyter-widgets/controls",
948
     "model_module_version": "1.5.0",
949
     "model_name": "HTMLModel",
950
     "state": {
951
      "_dom_classes": [],
952
      "_model_module": "@jupyter-widgets/controls",
953
      "_model_module_version": "1.5.0",
954
      "_model_name": "HTMLModel",
955
      "_view_count": null,
956
      "_view_module": "@jupyter-widgets/controls",
957
      "_view_module_version": "1.5.0",
958
      "_view_name": "HTMLView",
959
      "description": "",
960
      "description_tooltip": null,
961
      "layout": "IPY_MODEL_ec8e2371e6584e218fb8e5f92de1b0d7",
962
      "placeholder": "​",
963
      "style": "IPY_MODEL_8589f5b5f43443f5a6f6687005f82677",
964
      "value": " 772/772 [00:00<00:00, 52.9kB/s]"
965
     }
966
    },
967
    "2e20b43c72e54205bffa8f2e8aac4c44": {
968
     "model_module": "@jupyter-widgets/controls",
969
     "model_module_version": "1.5.0",
970
     "model_name": "FloatProgressModel",
971
     "state": {
972
      "_dom_classes": [],
973
      "_model_module": "@jupyter-widgets/controls",
974
      "_model_module_version": "1.5.0",
975
      "_model_name": "FloatProgressModel",
976
      "_view_count": null,
977
      "_view_module": "@jupyter-widgets/controls",
978
      "_view_module_version": "1.5.0",
979
      "_view_name": "ProgressView",
980
      "bar_style": "success",
981
      "description": "",
982
      "description_tooltip": null,
983
      "layout": "IPY_MODEL_7115fde92da24ca293d925a89aae3e75",
984
      "max": 62871,
985
      "min": 0,
986
      "orientation": "horizontal",
987
      "style": "IPY_MODEL_f60776b8884b40f0b6f45ecd74db4d40",
988
      "value": 62871
989
     }
990
    },
991
    "30536fb6fc8344e5b557e06771aa4408": {
992
     "model_module": "@jupyter-widgets/controls",
993
     "model_module_version": "1.5.0",
994
     "model_name": "DescriptionStyleModel",
995
     "state": {
996
      "_model_module": "@jupyter-widgets/controls",
997
      "_model_module_version": "1.5.0",
998
      "_model_name": "DescriptionStyleModel",
999
      "_view_count": null,
1000
      "_view_module": "@jupyter-widgets/base",
1001
      "_view_module_version": "1.2.0",
1002
      "_view_name": "StyleView",
1003
      "description_width": ""
1004
     }
1005
    },
1006
    "311e3d48686947b991fc39089c156e33": {
1007
     "model_module": "@jupyter-widgets/controls",
1008
     "model_module_version": "1.5.0",
1009
     "model_name": "HBoxModel",
1010
     "state": {
1011
      "_dom_classes": [],
1012
      "_model_module": "@jupyter-widgets/controls",
1013
      "_model_module_version": "1.5.0",
1014
      "_model_name": "HBoxModel",
1015
      "_view_count": null,
1016
      "_view_module": "@jupyter-widgets/controls",
1017
      "_view_module_version": "1.5.0",
1018
      "_view_name": "HBoxView",
1019
      "box_style": "",
1020
      "children": [
1021
       "IPY_MODEL_daeb2a1614a0420b87d218f99fad678a",
1022
       "IPY_MODEL_d355d78ab0f84305986f1f6011639c31",
1023
       "IPY_MODEL_5b1151e4dc26460ab878a895db7ea202"
1024
      ],
1025
      "layout": "IPY_MODEL_2763e02721f649e8b73d81210cd579f6"
1026
     }
1027
    },
1028
    "319230b8eb154e5aa171db1bc2245e3e": {
1029
     "model_module": "@jupyter-widgets/controls",
1030
     "model_module_version": "1.5.0",
1031
     "model_name": "DescriptionStyleModel",
1032
     "state": {
1033
      "_model_module": "@jupyter-widgets/controls",
1034
      "_model_module_version": "1.5.0",
1035
      "_model_name": "DescriptionStyleModel",
1036
      "_view_count": null,
1037
      "_view_module": "@jupyter-widgets/base",
1038
      "_view_module_version": "1.2.0",
1039
      "_view_name": "StyleView",
1040
      "description_width": ""
1041
     }
1042
    },
1043
    "3327367faa95488087fb6c71fc5f87a4": {
1044
     "model_module": "@jupyter-widgets/controls",
1045
     "model_module_version": "1.5.0",
1046
     "model_name": "FloatProgressModel",
1047
     "state": {
1048
      "_dom_classes": [],
1049
      "_model_module": "@jupyter-widgets/controls",
1050
      "_model_module_version": "1.5.0",
1051
      "_model_name": "FloatProgressModel",
1052
      "_view_count": null,
1053
      "_view_module": "@jupyter-widgets/controls",
1054
      "_view_module_version": "1.5.0",
1055
      "_view_name": "ProgressView",
1056
      "bar_style": "success",
1057
      "description": "",
1058
      "description_tooltip": null,
1059
      "layout": "IPY_MODEL_c21b941735604fbc836f7f53ef5d3b68",
1060
      "max": 309565,
1061
      "min": 0,
1062
      "orientation": "horizontal",
1063
      "style": "IPY_MODEL_cc58dc90382549c180073149d16d3bfe",
1064
      "value": 309565
1065
     }
1066
    },
1067
    "34159407c6b04e01a9e34ca9f2bda1e5": {
1068
     "model_module": "@jupyter-widgets/controls",
1069
     "model_module_version": "1.5.0",
1070
     "model_name": "HTMLModel",
1071
     "state": {
1072
      "_dom_classes": [],
1073
      "_model_module": "@jupyter-widgets/controls",
1074
      "_model_module_version": "1.5.0",
1075
      "_model_name": "HTMLModel",
1076
      "_view_count": null,
1077
      "_view_module": "@jupyter-widgets/controls",
1078
      "_view_module_version": "1.5.0",
1079
      "_view_name": "HTMLView",
1080
      "description": "",
1081
      "description_tooltip": null,
1082
      "layout": "IPY_MODEL_debcedb280614b89aff83ea258a37cae",
1083
      "placeholder": "​",
1084
      "style": "IPY_MODEL_667578ec940a46f8bb087ca21bafa6fb",
1085
      "value": "merges.txt: 100%"
1086
     }
1087
    },
1088
    "34506e465b1a4cbb9102cbf1a89442f2": {
1089
     "model_module": "@jupyter-widgets/base",
1090
     "model_module_version": "1.2.0",
1091
     "model_name": "LayoutModel",
1092
     "state": {
1093
      "_model_module": "@jupyter-widgets/base",
1094
      "_model_module_version": "1.2.0",
1095
      "_model_name": "LayoutModel",
1096
      "_view_count": null,
1097
      "_view_module": "@jupyter-widgets/base",
1098
      "_view_module_version": "1.2.0",
1099
      "_view_name": "LayoutView",
1100
      "align_content": null,
1101
      "align_items": null,
1102
      "align_self": null,
1103
      "border": null,
1104
      "bottom": null,
1105
      "display": null,
1106
      "flex": null,
1107
      "flex_flow": null,
1108
      "grid_area": null,
1109
      "grid_auto_columns": null,
1110
      "grid_auto_flow": null,
1111
      "grid_auto_rows": null,
1112
      "grid_column": null,
1113
      "grid_gap": null,
1114
      "grid_row": null,
1115
      "grid_template_areas": null,
1116
      "grid_template_columns": null,
1117
      "grid_template_rows": null,
1118
      "height": null,
1119
      "justify_content": null,
1120
      "justify_items": null,
1121
      "left": null,
1122
      "margin": null,
1123
      "max_height": null,
1124
      "max_width": null,
1125
      "min_height": null,
1126
      "min_width": null,
1127
      "object_fit": null,
1128
      "object_position": null,
1129
      "order": null,
1130
      "overflow": null,
1131
      "overflow_x": null,
1132
      "overflow_y": null,
1133
      "padding": null,
1134
      "right": null,
1135
      "top": null,
1136
      "visibility": null,
1137
      "width": null
1138
     }
1139
    },
1140
    "417c541a6fed4d0883be77c22965d171": {
1141
     "model_module": "@jupyter-widgets/controls",
1142
     "model_module_version": "1.5.0",
1143
     "model_name": "DescriptionStyleModel",
1144
     "state": {
1145
      "_model_module": "@jupyter-widgets/controls",
1146
      "_model_module_version": "1.5.0",
1147
      "_model_name": "DescriptionStyleModel",
1148
      "_view_count": null,
1149
      "_view_module": "@jupyter-widgets/base",
1150
      "_view_module_version": "1.2.0",
1151
      "_view_name": "StyleView",
1152
      "description_width": ""
1153
     }
1154
    },
1155
    "421cc49f8d394bddb367e34c51a8def6": {
1156
     "model_module": "@jupyter-widgets/controls",
1157
     "model_module_version": "1.5.0",
1158
     "model_name": "HBoxModel",
1159
     "state": {
1160
      "_dom_classes": [],
1161
      "_model_module": "@jupyter-widgets/controls",
1162
      "_model_module_version": "1.5.0",
1163
      "_model_name": "HBoxModel",
1164
      "_view_count": null,
1165
      "_view_module": "@jupyter-widgets/controls",
1166
      "_view_module_version": "1.5.0",
1167
      "_view_name": "HBoxView",
1168
      "box_style": "",
1169
      "children": [
1170
       "IPY_MODEL_89bb92d1044d461082ee2c6b35663302",
1171
       "IPY_MODEL_e1f671dbdd434669bccd04ae4b219c0b",
1172
       "IPY_MODEL_4b080c5a9391446abfb873e41f24d2af"
1173
      ],
1174
      "layout": "IPY_MODEL_7bc77b2d4db14828ba29757618ae4d53"
1175
     }
1176
    },
1177
    "442522d125be4059aa33b759a4bb9206": {
1178
     "model_module": "@jupyter-widgets/base",
1179
     "model_module_version": "1.2.0",
1180
     "model_name": "LayoutModel",
1181
     "state": {
1182
      "_model_module": "@jupyter-widgets/base",
1183
      "_model_module_version": "1.2.0",
1184
      "_model_name": "LayoutModel",
1185
      "_view_count": null,
1186
      "_view_module": "@jupyter-widgets/base",
1187
      "_view_module_version": "1.2.0",
1188
      "_view_name": "LayoutView",
1189
      "align_content": null,
1190
      "align_items": null,
1191
      "align_self": null,
1192
      "border": null,
1193
      "bottom": null,
1194
      "display": null,
1195
      "flex": null,
1196
      "flex_flow": null,
1197
      "grid_area": null,
1198
      "grid_auto_columns": null,
1199
      "grid_auto_flow": null,
1200
      "grid_auto_rows": null,
1201
      "grid_column": null,
1202
      "grid_gap": null,
1203
      "grid_row": null,
1204
      "grid_template_areas": null,
1205
      "grid_template_columns": null,
1206
      "grid_template_rows": null,
1207
      "height": null,
1208
      "justify_content": null,
1209
      "justify_items": null,
1210
      "left": null,
1211
      "margin": null,
1212
      "max_height": null,
1213
      "max_width": null,
1214
      "min_height": null,
1215
      "min_width": null,
1216
      "object_fit": null,
1217
      "object_position": null,
1218
      "order": null,
1219
      "overflow": null,
1220
      "overflow_x": null,
1221
      "overflow_y": null,
1222
      "padding": null,
1223
      "right": null,
1224
      "top": null,
1225
      "visibility": null,
1226
      "width": null
1227
     }
1228
    },
1229
    "44ef0c37a1044795ad82737cab5afef2": {
1230
     "model_module": "@jupyter-widgets/controls",
1231
     "model_module_version": "1.5.0",
1232
     "model_name": "ProgressStyleModel",
1233
     "state": {
1234
      "_model_module": "@jupyter-widgets/controls",
1235
      "_model_module_version": "1.5.0",
1236
      "_model_name": "ProgressStyleModel",
1237
      "_view_count": null,
1238
      "_view_module": "@jupyter-widgets/base",
1239
      "_view_module_version": "1.2.0",
1240
      "_view_name": "StyleView",
1241
      "bar_color": null,
1242
      "description_width": ""
1243
     }
1244
    },
1245
    "455ca675f2e84b18ac24ee769f321870": {
1246
     "model_module": "@jupyter-widgets/controls",
1247
     "model_module_version": "1.5.0",
1248
     "model_name": "ProgressStyleModel",
1249
     "state": {
1250
      "_model_module": "@jupyter-widgets/controls",
1251
      "_model_module_version": "1.5.0",
1252
      "_model_name": "ProgressStyleModel",
1253
      "_view_count": null,
1254
      "_view_module": "@jupyter-widgets/base",
1255
      "_view_module_version": "1.2.0",
1256
      "_view_name": "StyleView",
1257
      "bar_color": null,
1258
      "description_width": ""
1259
     }
1260
    },
1261
    "493778bf95e645d8b303a4f7eeda436a": {
1262
     "model_module": "@jupyter-widgets/controls",
1263
     "model_module_version": "1.5.0",
1264
     "model_name": "HTMLModel",
1265
     "state": {
1266
      "_dom_classes": [],
1267
      "_model_module": "@jupyter-widgets/controls",
1268
      "_model_module_version": "1.5.0",
1269
      "_model_name": "HTMLModel",
1270
      "_view_count": null,
1271
      "_view_module": "@jupyter-widgets/controls",
1272
      "_view_module_version": "1.5.0",
1273
      "_view_name": "HTMLView",
1274
      "description": "",
1275
      "description_tooltip": null,
1276
      "layout": "IPY_MODEL_b0febb0d20764e22a9fa28a88585d84a",
1277
      "placeholder": "​",
1278
      "style": "IPY_MODEL_758d6d03b7924c0ba4664ad70e39b30a",
1279
      "value": " 62.9k/62.9k [00:00<00:00, 2.29MB/s]"
1280
     }
1281
    },
1282
    "4a1529aa06414b8e9712d00e627ca22b": {
1283
     "model_module": "@jupyter-widgets/base",
1284
     "model_module_version": "1.2.0",
1285
     "model_name": "LayoutModel",
1286
     "state": {
1287
      "_model_module": "@jupyter-widgets/base",
1288
      "_model_module_version": "1.2.0",
1289
      "_model_name": "LayoutModel",
1290
      "_view_count": null,
1291
      "_view_module": "@jupyter-widgets/base",
1292
      "_view_module_version": "1.2.0",
1293
      "_view_name": "LayoutView",
1294
      "align_content": null,
1295
      "align_items": null,
1296
      "align_self": null,
1297
      "border": null,
1298
      "bottom": null,
1299
      "display": null,
1300
      "flex": null,
1301
      "flex_flow": null,
1302
      "grid_area": null,
1303
      "grid_auto_columns": null,
1304
      "grid_auto_flow": null,
1305
      "grid_auto_rows": null,
1306
      "grid_column": null,
1307
      "grid_gap": null,
1308
      "grid_row": null,
1309
      "grid_template_areas": null,
1310
      "grid_template_columns": null,
1311
      "grid_template_rows": null,
1312
      "height": null,
1313
      "justify_content": null,
1314
      "justify_items": null,
1315
      "left": null,
1316
      "margin": null,
1317
      "max_height": null,
1318
      "max_width": null,
1319
      "min_height": null,
1320
      "min_width": null,
1321
      "object_fit": null,
1322
      "object_position": null,
1323
      "order": null,
1324
      "overflow": null,
1325
      "overflow_x": null,
1326
      "overflow_y": null,
1327
      "padding": null,
1328
      "right": null,
1329
      "top": null,
1330
      "visibility": null,
1331
      "width": null
1332
     }
1333
    },
1334
    "4ae75c50f11b4fcc8c6d6a030ff901e6": {
1335
     "model_module": "@jupyter-widgets/controls",
1336
     "model_module_version": "1.5.0",
1337
     "model_name": "DescriptionStyleModel",
1338
     "state": {
1339
      "_model_module": "@jupyter-widgets/controls",
1340
      "_model_module_version": "1.5.0",
1341
      "_model_name": "DescriptionStyleModel",
1342
      "_view_count": null,
1343
      "_view_module": "@jupyter-widgets/base",
1344
      "_view_module_version": "1.2.0",
1345
      "_view_name": "StyleView",
1346
      "description_width": ""
1347
     }
1348
    },
1349
    "4b080c5a9391446abfb873e41f24d2af": {
1350
     "model_module": "@jupyter-widgets/controls",
1351
     "model_module_version": "1.5.0",
1352
     "model_name": "HTMLModel",
1353
     "state": {
1354
      "_dom_classes": [],
1355
      "_model_module": "@jupyter-widgets/controls",
1356
      "_model_module_version": "1.5.0",
1357
      "_model_name": "HTMLModel",
1358
      "_view_count": null,
1359
      "_view_module": "@jupyter-widgets/controls",
1360
      "_view_module_version": "1.5.0",
1361
      "_view_name": "HTMLView",
1362
      "description": "",
1363
      "description_tooltip": null,
1364
      "layout": "IPY_MODEL_4a1529aa06414b8e9712d00e627ca22b",
1365
      "placeholder": "​",
1366
      "style": "IPY_MODEL_f2473b54d1b141668c6c786ce1f82293",
1367
      "value": " 1.80M/1.80M [00:00<00:00, 14.0MB/s]"
1368
     }
1369
    },
1370
    "4d40dbe61d9f4b4fb15b0a3a611afc42": {
1371
     "model_module": "@jupyter-widgets/base",
1372
     "model_module_version": "1.2.0",
1373
     "model_name": "LayoutModel",
1374
     "state": {
1375
      "_model_module": "@jupyter-widgets/base",
1376
      "_model_module_version": "1.2.0",
1377
      "_model_name": "LayoutModel",
1378
      "_view_count": null,
1379
      "_view_module": "@jupyter-widgets/base",
1380
      "_view_module_version": "1.2.0",
1381
      "_view_name": "LayoutView",
1382
      "align_content": null,
1383
      "align_items": null,
1384
      "align_self": null,
1385
      "border": null,
1386
      "bottom": null,
1387
      "display": null,
1388
      "flex": null,
1389
      "flex_flow": null,
1390
      "grid_area": null,
1391
      "grid_auto_columns": null,
1392
      "grid_auto_flow": null,
1393
      "grid_auto_rows": null,
1394
      "grid_column": null,
1395
      "grid_gap": null,
1396
      "grid_row": null,
1397
      "grid_template_areas": null,
1398
      "grid_template_columns": null,
1399
      "grid_template_rows": null,
1400
      "height": null,
1401
      "justify_content": null,
1402
      "justify_items": null,
1403
      "left": null,
1404
      "margin": null,
1405
      "max_height": null,
1406
      "max_width": null,
1407
      "min_height": null,
1408
      "min_width": null,
1409
      "object_fit": null,
1410
      "object_position": null,
1411
      "order": null,
1412
      "overflow": null,
1413
      "overflow_x": null,
1414
      "overflow_y": null,
1415
      "padding": null,
1416
      "right": null,
1417
      "top": null,
1418
      "visibility": null,
1419
      "width": null
1420
     }
1421
    },
1422
    "4e1459c9f0184492969491c7cb77ef04": {
1423
     "model_module": "@jupyter-widgets/controls",
1424
     "model_module_version": "1.5.0",
1425
     "model_name": "HTMLModel",
1426
     "state": {
1427
      "_dom_classes": [],
1428
      "_model_module": "@jupyter-widgets/controls",
1429
      "_model_module_version": "1.5.0",
1430
      "_model_name": "HTMLModel",
1431
      "_view_count": null,
1432
      "_view_module": "@jupyter-widgets/controls",
1433
      "_view_module_version": "1.5.0",
1434
      "_view_name": "HTMLView",
1435
      "description": "",
1436
      "description_tooltip": null,
1437
      "layout": "IPY_MODEL_94e316bb41b440bfa0549d542b0bb605",
1438
      "placeholder": "​",
1439
      "style": "IPY_MODEL_ecda349c0d80416f8614e17a5a9ee964",
1440
      "value": " 72.0/72.0 [00:00<00:00, 1.18kB/s]"
1441
     }
1442
    },
1443
    "4e957edcca3f42a0a1aa4a42028b34b5": {
1444
     "model_module": "@jupyter-widgets/controls",
1445
     "model_module_version": "1.5.0",
1446
     "model_name": "HTMLModel",
1447
     "state": {
1448
      "_dom_classes": [],
1449
      "_model_module": "@jupyter-widgets/controls",
1450
      "_model_module_version": "1.5.0",
1451
      "_model_name": "HTMLModel",
1452
      "_view_count": null,
1453
      "_view_module": "@jupyter-widgets/controls",
1454
      "_view_module_version": "1.5.0",
1455
      "_view_name": "HTMLView",
1456
      "description": "",
1457
      "description_tooltip": null,
1458
      "layout": "IPY_MODEL_7e372bec7e1048399e47c874f0b55ddb",
1459
      "placeholder": "​",
1460
      "style": "IPY_MODEL_9a17b052a43b465d895a46b6f3133285",
1461
      "value": "pytorch_model.bin: 100%"
1462
     }
1463
    },
1464
    "4f4b603d723849a0a4d7b713cf267f06": {
1465
     "model_module": "@jupyter-widgets/base",
1466
     "model_module_version": "1.2.0",
1467
     "model_name": "LayoutModel",
1468
     "state": {
1469
      "_model_module": "@jupyter-widgets/base",
1470
      "_model_module_version": "1.2.0",
1471
      "_model_name": "LayoutModel",
1472
      "_view_count": null,
1473
      "_view_module": "@jupyter-widgets/base",
1474
      "_view_module_version": "1.2.0",
1475
      "_view_name": "LayoutView",
1476
      "align_content": null,
1477
      "align_items": null,
1478
      "align_self": null,
1479
      "border": null,
1480
      "bottom": null,
1481
      "display": null,
1482
      "flex": null,
1483
      "flex_flow": null,
1484
      "grid_area": null,
1485
      "grid_auto_columns": null,
1486
      "grid_auto_flow": null,
1487
      "grid_auto_rows": null,
1488
      "grid_column": null,
1489
      "grid_gap": null,
1490
      "grid_row": null,
1491
      "grid_template_areas": null,
1492
      "grid_template_columns": null,
1493
      "grid_template_rows": null,
1494
      "height": null,
1495
      "justify_content": null,
1496
      "justify_items": null,
1497
      "left": null,
1498
      "margin": null,
1499
      "max_height": null,
1500
      "max_width": null,
1501
      "min_height": null,
1502
      "min_width": null,
1503
      "object_fit": null,
1504
      "object_position": null,
1505
      "order": null,
1506
      "overflow": null,
1507
      "overflow_x": null,
1508
      "overflow_y": null,
1509
      "padding": null,
1510
      "right": null,
1511
      "top": null,
1512
      "visibility": null,
1513
      "width": null
1514
     }
1515
    },
1516
    "504dedf42c6342438c95605f781ef034": {
1517
     "model_module": "@jupyter-widgets/base",
1518
     "model_module_version": "1.2.0",
1519
     "model_name": "LayoutModel",
1520
     "state": {
1521
      "_model_module": "@jupyter-widgets/base",
1522
      "_model_module_version": "1.2.0",
1523
      "_model_name": "LayoutModel",
1524
      "_view_count": null,
1525
      "_view_module": "@jupyter-widgets/base",
1526
      "_view_module_version": "1.2.0",
1527
      "_view_name": "LayoutView",
1528
      "align_content": null,
1529
      "align_items": null,
1530
      "align_self": null,
1531
      "border": null,
1532
      "bottom": null,
1533
      "display": null,
1534
      "flex": null,
1535
      "flex_flow": null,
1536
      "grid_area": null,
1537
      "grid_auto_columns": null,
1538
      "grid_auto_flow": null,
1539
      "grid_auto_rows": null,
1540
      "grid_column": null,
1541
      "grid_gap": null,
1542
      "grid_row": null,
1543
      "grid_template_areas": null,
1544
      "grid_template_columns": null,
1545
      "grid_template_rows": null,
1546
      "height": null,
1547
      "justify_content": null,
1548
      "justify_items": null,
1549
      "left": null,
1550
      "margin": null,
1551
      "max_height": null,
1552
      "max_width": null,
1553
      "min_height": null,
1554
      "min_width": null,
1555
      "object_fit": null,
1556
      "object_position": null,
1557
      "order": null,
1558
      "overflow": null,
1559
      "overflow_x": null,
1560
      "overflow_y": null,
1561
      "padding": null,
1562
      "right": null,
1563
      "top": null,
1564
      "visibility": null,
1565
      "width": null
1566
     }
1567
    },
1568
    "50e0d00dafe44c96a6c36e2070f24b42": {
1569
     "model_module": "@jupyter-widgets/base",
1570
     "model_module_version": "1.2.0",
1571
     "model_name": "LayoutModel",
1572
     "state": {
1573
      "_model_module": "@jupyter-widgets/base",
1574
      "_model_module_version": "1.2.0",
1575
      "_model_name": "LayoutModel",
1576
      "_view_count": null,
1577
      "_view_module": "@jupyter-widgets/base",
1578
      "_view_module_version": "1.2.0",
1579
      "_view_name": "LayoutView",
1580
      "align_content": null,
1581
      "align_items": null,
1582
      "align_self": null,
1583
      "border": null,
1584
      "bottom": null,
1585
      "display": null,
1586
      "flex": null,
1587
      "flex_flow": null,
1588
      "grid_area": null,
1589
      "grid_auto_columns": null,
1590
      "grid_auto_flow": null,
1591
      "grid_auto_rows": null,
1592
      "grid_column": null,
1593
      "grid_gap": null,
1594
      "grid_row": null,
1595
      "grid_template_areas": null,
1596
      "grid_template_columns": null,
1597
      "grid_template_rows": null,
1598
      "height": null,
1599
      "justify_content": null,
1600
      "justify_items": null,
1601
      "left": null,
1602
      "margin": null,
1603
      "max_height": null,
1604
      "max_width": null,
1605
      "min_height": null,
1606
      "min_width": null,
1607
      "object_fit": null,
1608
      "object_position": null,
1609
      "order": null,
1610
      "overflow": null,
1611
      "overflow_x": null,
1612
      "overflow_y": null,
1613
      "padding": null,
1614
      "right": null,
1615
      "top": null,
1616
      "visibility": null,
1617
      "width": null
1618
     }
1619
    },
1620
    "53c631f4b89244cbb48dc2a1e6f98997": {
1621
     "model_module": "@jupyter-widgets/base",
1622
     "model_module_version": "1.2.0",
1623
     "model_name": "LayoutModel",
1624
     "state": {
1625
      "_model_module": "@jupyter-widgets/base",
1626
      "_model_module_version": "1.2.0",
1627
      "_model_name": "LayoutModel",
1628
      "_view_count": null,
1629
      "_view_module": "@jupyter-widgets/base",
1630
      "_view_module_version": "1.2.0",
1631
      "_view_name": "LayoutView",
1632
      "align_content": null,
1633
      "align_items": null,
1634
      "align_self": null,
1635
      "border": null,
1636
      "bottom": null,
1637
      "display": null,
1638
      "flex": null,
1639
      "flex_flow": null,
1640
      "grid_area": null,
1641
      "grid_auto_columns": null,
1642
      "grid_auto_flow": null,
1643
      "grid_auto_rows": null,
1644
      "grid_column": null,
1645
      "grid_gap": null,
1646
      "grid_row": null,
1647
      "grid_template_areas": null,
1648
      "grid_template_columns": null,
1649
      "grid_template_rows": null,
1650
      "height": null,
1651
      "justify_content": null,
1652
      "justify_items": null,
1653
      "left": null,
1654
      "margin": null,
1655
      "max_height": null,
1656
      "max_width": null,
1657
      "min_height": null,
1658
      "min_width": null,
1659
      "object_fit": null,
1660
      "object_position": null,
1661
      "order": null,
1662
      "overflow": null,
1663
      "overflow_x": null,
1664
      "overflow_y": null,
1665
      "padding": null,
1666
      "right": null,
1667
      "top": null,
1668
      "visibility": null,
1669
      "width": null
1670
     }
1671
    },
1672
    "583cd7f93f15499cb82100e387260340": {
1673
     "model_module": "@jupyter-widgets/base",
1674
     "model_module_version": "1.2.0",
1675
     "model_name": "LayoutModel",
1676
     "state": {
1677
      "_model_module": "@jupyter-widgets/base",
1678
      "_model_module_version": "1.2.0",
1679
      "_model_name": "LayoutModel",
1680
      "_view_count": null,
1681
      "_view_module": "@jupyter-widgets/base",
1682
      "_view_module_version": "1.2.0",
1683
      "_view_name": "LayoutView",
1684
      "align_content": null,
1685
      "align_items": null,
1686
      "align_self": null,
1687
      "border": null,
1688
      "bottom": null,
1689
      "display": null,
1690
      "flex": null,
1691
      "flex_flow": null,
1692
      "grid_area": null,
1693
      "grid_auto_columns": null,
1694
      "grid_auto_flow": null,
1695
      "grid_auto_rows": null,
1696
      "grid_column": null,
1697
      "grid_gap": null,
1698
      "grid_row": null,
1699
      "grid_template_areas": null,
1700
      "grid_template_columns": null,
1701
      "grid_template_rows": null,
1702
      "height": null,
1703
      "justify_content": null,
1704
      "justify_items": null,
1705
      "left": null,
1706
      "margin": null,
1707
      "max_height": null,
1708
      "max_width": null,
1709
      "min_height": null,
1710
      "min_width": null,
1711
      "object_fit": null,
1712
      "object_position": null,
1713
      "order": null,
1714
      "overflow": null,
1715
      "overflow_x": null,
1716
      "overflow_y": null,
1717
      "padding": null,
1718
      "right": null,
1719
      "top": null,
1720
      "visibility": null,
1721
      "width": null
1722
     }
1723
    },
1724
    "5a46885958a24056a8c55f65eccd0ee3": {
1725
     "model_module": "@jupyter-widgets/base",
1726
     "model_module_version": "1.2.0",
1727
     "model_name": "LayoutModel",
1728
     "state": {
1729
      "_model_module": "@jupyter-widgets/base",
1730
      "_model_module_version": "1.2.0",
1731
      "_model_name": "LayoutModel",
1732
      "_view_count": null,
1733
      "_view_module": "@jupyter-widgets/base",
1734
      "_view_module_version": "1.2.0",
1735
      "_view_name": "LayoutView",
1736
      "align_content": null,
1737
      "align_items": null,
1738
      "align_self": null,
1739
      "border": null,
1740
      "bottom": null,
1741
      "display": null,
1742
      "flex": null,
1743
      "flex_flow": null,
1744
      "grid_area": null,
1745
      "grid_auto_columns": null,
1746
      "grid_auto_flow": null,
1747
      "grid_auto_rows": null,
1748
      "grid_column": null,
1749
      "grid_gap": null,
1750
      "grid_row": null,
1751
      "grid_template_areas": null,
1752
      "grid_template_columns": null,
1753
      "grid_template_rows": null,
1754
      "height": null,
1755
      "justify_content": null,
1756
      "justify_items": null,
1757
      "left": null,
1758
      "margin": null,
1759
      "max_height": null,
1760
      "max_width": null,
1761
      "min_height": null,
1762
      "min_width": null,
1763
      "object_fit": null,
1764
      "object_position": null,
1765
      "order": null,
1766
      "overflow": null,
1767
      "overflow_x": null,
1768
      "overflow_y": null,
1769
      "padding": null,
1770
      "right": null,
1771
      "top": null,
1772
      "visibility": null,
1773
      "width": null
1774
     }
1775
    },
1776
    "5b1151e4dc26460ab878a895db7ea202": {
1777
     "model_module": "@jupyter-widgets/controls",
1778
     "model_module_version": "1.5.0",
1779
     "model_name": "HTMLModel",
1780
     "state": {
1781
      "_dom_classes": [],
1782
      "_model_module": "@jupyter-widgets/controls",
1783
      "_model_module_version": "1.5.0",
1784
      "_model_name": "HTMLModel",
1785
      "_view_count": null,
1786
      "_view_module": "@jupyter-widgets/controls",
1787
      "_view_module_version": "1.5.0",
1788
      "_view_name": "HTMLView",
1789
      "description": "",
1790
      "description_tooltip": null,
1791
      "layout": "IPY_MODEL_e55beb09972f4fd1b98f6a76e765c3d8",
1792
      "placeholder": "​",
1793
      "style": "IPY_MODEL_e5f3050fe1874189b451640c04e14e76",
1794
      "value": " 1.47k/1.47k [00:00<00:00, 24.9kB/s]"
1795
     }
1796
    },
1797
    "5f7262dbbbb14fa8b240409c0ddd210c": {
1798
     "model_module": "@jupyter-widgets/base",
1799
     "model_module_version": "1.2.0",
1800
     "model_name": "LayoutModel",
1801
     "state": {
1802
      "_model_module": "@jupyter-widgets/base",
1803
      "_model_module_version": "1.2.0",
1804
      "_model_name": "LayoutModel",
1805
      "_view_count": null,
1806
      "_view_module": "@jupyter-widgets/base",
1807
      "_view_module_version": "1.2.0",
1808
      "_view_name": "LayoutView",
1809
      "align_content": null,
1810
      "align_items": null,
1811
      "align_self": null,
1812
      "border": null,
1813
      "bottom": null,
1814
      "display": null,
1815
      "flex": null,
1816
      "flex_flow": null,
1817
      "grid_area": null,
1818
      "grid_auto_columns": null,
1819
      "grid_auto_flow": null,
1820
      "grid_auto_rows": null,
1821
      "grid_column": null,
1822
      "grid_gap": null,
1823
      "grid_row": null,
1824
      "grid_template_areas": null,
1825
      "grid_template_columns": null,
1826
      "grid_template_rows": null,
1827
      "height": null,
1828
      "justify_content": null,
1829
      "justify_items": null,
1830
      "left": null,
1831
      "margin": null,
1832
      "max_height": null,
1833
      "max_width": null,
1834
      "min_height": null,
1835
      "min_width": null,
1836
      "object_fit": null,
1837
      "object_position": null,
1838
      "order": null,
1839
      "overflow": null,
1840
      "overflow_x": null,
1841
      "overflow_y": null,
1842
      "padding": null,
1843
      "right": null,
1844
      "top": null,
1845
      "visibility": null,
1846
      "width": null
1847
     }
1848
    },
1849
    "6141b5fc12d64ba39384e7671064367b": {
1850
     "model_module": "@jupyter-widgets/controls",
1851
     "model_module_version": "1.5.0",
1852
     "model_name": "FloatProgressModel",
1853
     "state": {
1854
      "_dom_classes": [],
1855
      "_model_module": "@jupyter-widgets/controls",
1856
      "_model_module_version": "1.5.0",
1857
      "_model_name": "FloatProgressModel",
1858
      "_view_count": null,
1859
      "_view_module": "@jupyter-widgets/controls",
1860
      "_view_module_version": "1.5.0",
1861
      "_view_name": "ProgressView",
1862
      "bar_style": "success",
1863
      "description": "",
1864
      "description_tooltip": null,
1865
      "layout": "IPY_MODEL_688fd77e3534437089879241cf20539d",
1866
      "max": 729755983,
1867
      "min": 0,
1868
      "orientation": "horizontal",
1869
      "style": "IPY_MODEL_44ef0c37a1044795ad82737cab5afef2",
1870
      "value": 729755983
1871
     }
1872
    },
1873
    "61de9fc4d5db4a31a03883f94f1cebb8": {
1874
     "model_module": "@jupyter-widgets/controls",
1875
     "model_module_version": "1.5.0",
1876
     "model_name": "HTMLModel",
1877
     "state": {
1878
      "_dom_classes": [],
1879
      "_model_module": "@jupyter-widgets/controls",
1880
      "_model_module_version": "1.5.0",
1881
      "_model_name": "HTMLModel",
1882
      "_view_count": null,
1883
      "_view_module": "@jupyter-widgets/controls",
1884
      "_view_module_version": "1.5.0",
1885
      "_view_name": "HTMLView",
1886
      "description": "",
1887
      "description_tooltip": null,
1888
      "layout": "IPY_MODEL_9bb6237888d742c097de9672389a6c59",
1889
      "placeholder": "​",
1890
      "style": "IPY_MODEL_c0bfbd4c1500490696794eb1bf725f3c",
1891
      "value": "special_tokens_map.json: 100%"
1892
     }
1893
    },
1894
    "63aac006e86b46e28a6c47d132bb81e0": {
1895
     "model_module": "@jupyter-widgets/controls",
1896
     "model_module_version": "1.5.0",
1897
     "model_name": "HTMLModel",
1898
     "state": {
1899
      "_dom_classes": [],
1900
      "_model_module": "@jupyter-widgets/controls",
1901
      "_model_module_version": "1.5.0",
1902
      "_model_name": "HTMLModel",
1903
      "_view_count": null,
1904
      "_view_module": "@jupyter-widgets/controls",
1905
      "_view_module_version": "1.5.0",
1906
      "_view_name": "HTMLView",
1907
      "description": "",
1908
      "description_tooltip": null,
1909
      "layout": "IPY_MODEL_50e0d00dafe44c96a6c36e2070f24b42",
1910
      "placeholder": "​",
1911
      "style": "IPY_MODEL_8a6838cc45d84163b7038c29207374d9",
1912
      "value": "config.json: 100%"
1913
     }
1914
    },
1915
    "65baf28dd9bb4d87973132b07f91c379": {
1916
     "model_module": "@jupyter-widgets/controls",
1917
     "model_module_version": "1.5.0",
1918
     "model_name": "HBoxModel",
1919
     "state": {
1920
      "_dom_classes": [],
1921
      "_model_module": "@jupyter-widgets/controls",
1922
      "_model_module_version": "1.5.0",
1923
      "_model_name": "HBoxModel",
1924
      "_view_count": null,
1925
      "_view_module": "@jupyter-widgets/controls",
1926
      "_view_module_version": "1.5.0",
1927
      "_view_name": "HBoxView",
1928
      "box_style": "",
1929
      "children": [
1930
       "IPY_MODEL_d3dbb6ba73ab4c98a463e31d02d95c1c",
1931
       "IPY_MODEL_8cc808a50b5f40dab504b0208ea0daf2",
1932
       "IPY_MODEL_b8535a45f2f8400986ac913bc2f27c7d"
1933
      ],
1934
      "layout": "IPY_MODEL_442522d125be4059aa33b759a4bb9206"
1935
     }
1936
    },
1937
    "65eac83c51a24e5285a14332ba883057": {
1938
     "model_module": "@jupyter-widgets/base",
1939
     "model_module_version": "1.2.0",
1940
     "model_name": "LayoutModel",
1941
     "state": {
1942
      "_model_module": "@jupyter-widgets/base",
1943
      "_model_module_version": "1.2.0",
1944
      "_model_name": "LayoutModel",
1945
      "_view_count": null,
1946
      "_view_module": "@jupyter-widgets/base",
1947
      "_view_module_version": "1.2.0",
1948
      "_view_name": "LayoutView",
1949
      "align_content": null,
1950
      "align_items": null,
1951
      "align_self": null,
1952
      "border": null,
1953
      "bottom": null,
1954
      "display": null,
1955
      "flex": null,
1956
      "flex_flow": null,
1957
      "grid_area": null,
1958
      "grid_auto_columns": null,
1959
      "grid_auto_flow": null,
1960
      "grid_auto_rows": null,
1961
      "grid_column": null,
1962
      "grid_gap": null,
1963
      "grid_row": null,
1964
      "grid_template_areas": null,
1965
      "grid_template_columns": null,
1966
      "grid_template_rows": null,
1967
      "height": null,
1968
      "justify_content": null,
1969
      "justify_items": null,
1970
      "left": null,
1971
      "margin": null,
1972
      "max_height": null,
1973
      "max_width": null,
1974
      "min_height": null,
1975
      "min_width": null,
1976
      "object_fit": null,
1977
      "object_position": null,
1978
      "order": null,
1979
      "overflow": null,
1980
      "overflow_x": null,
1981
      "overflow_y": null,
1982
      "padding": null,
1983
      "right": null,
1984
      "top": null,
1985
      "visibility": null,
1986
      "width": null
1987
     }
1988
    },
1989
    "667578ec940a46f8bb087ca21bafa6fb": {
1990
     "model_module": "@jupyter-widgets/controls",
1991
     "model_module_version": "1.5.0",
1992
     "model_name": "DescriptionStyleModel",
1993
     "state": {
1994
      "_model_module": "@jupyter-widgets/controls",
1995
      "_model_module_version": "1.5.0",
1996
      "_model_name": "DescriptionStyleModel",
1997
      "_view_count": null,
1998
      "_view_module": "@jupyter-widgets/base",
1999
      "_view_module_version": "1.2.0",
2000
      "_view_name": "StyleView",
2001
      "description_width": ""
2002
     }
2003
    },
2004
    "684910dc324b41009f6756befb06af55": {
2005
     "model_module": "@jupyter-widgets/base",
2006
     "model_module_version": "1.2.0",
2007
     "model_name": "LayoutModel",
2008
     "state": {
2009
      "_model_module": "@jupyter-widgets/base",
2010
      "_model_module_version": "1.2.0",
2011
      "_model_name": "LayoutModel",
2012
      "_view_count": null,
2013
      "_view_module": "@jupyter-widgets/base",
2014
      "_view_module_version": "1.2.0",
2015
      "_view_name": "LayoutView",
2016
      "align_content": null,
2017
      "align_items": null,
2018
      "align_self": null,
2019
      "border": null,
2020
      "bottom": null,
2021
      "display": null,
2022
      "flex": null,
2023
      "flex_flow": null,
2024
      "grid_area": null,
2025
      "grid_auto_columns": null,
2026
      "grid_auto_flow": null,
2027
      "grid_auto_rows": null,
2028
      "grid_column": null,
2029
      "grid_gap": null,
2030
      "grid_row": null,
2031
      "grid_template_areas": null,
2032
      "grid_template_columns": null,
2033
      "grid_template_rows": null,
2034
      "height": null,
2035
      "justify_content": null,
2036
      "justify_items": null,
2037
      "left": null,
2038
      "margin": null,
2039
      "max_height": null,
2040
      "max_width": null,
2041
      "min_height": null,
2042
      "min_width": null,
2043
      "object_fit": null,
2044
      "object_position": null,
2045
      "order": null,
2046
      "overflow": null,
2047
      "overflow_x": null,
2048
      "overflow_y": null,
2049
      "padding": null,
2050
      "right": null,
2051
      "top": null,
2052
      "visibility": null,
2053
      "width": null
2054
     }
2055
    },
2056
    "688fd77e3534437089879241cf20539d": {
2057
     "model_module": "@jupyter-widgets/base",
2058
     "model_module_version": "1.2.0",
2059
     "model_name": "LayoutModel",
2060
     "state": {
2061
      "_model_module": "@jupyter-widgets/base",
2062
      "_model_module_version": "1.2.0",
2063
      "_model_name": "LayoutModel",
2064
      "_view_count": null,
2065
      "_view_module": "@jupyter-widgets/base",
2066
      "_view_module_version": "1.2.0",
2067
      "_view_name": "LayoutView",
2068
      "align_content": null,
2069
      "align_items": null,
2070
      "align_self": null,
2071
      "border": null,
2072
      "bottom": null,
2073
      "display": null,
2074
      "flex": null,
2075
      "flex_flow": null,
2076
      "grid_area": null,
2077
      "grid_auto_columns": null,
2078
      "grid_auto_flow": null,
2079
      "grid_auto_rows": null,
2080
      "grid_column": null,
2081
      "grid_gap": null,
2082
      "grid_row": null,
2083
      "grid_template_areas": null,
2084
      "grid_template_columns": null,
2085
      "grid_template_rows": null,
2086
      "height": null,
2087
      "justify_content": null,
2088
      "justify_items": null,
2089
      "left": null,
2090
      "margin": null,
2091
      "max_height": null,
2092
      "max_width": null,
2093
      "min_height": null,
2094
      "min_width": null,
2095
      "object_fit": null,
2096
      "object_position": null,
2097
      "order": null,
2098
      "overflow": null,
2099
      "overflow_x": null,
2100
      "overflow_y": null,
2101
      "padding": null,
2102
      "right": null,
2103
      "top": null,
2104
      "visibility": null,
2105
      "width": null
2106
     }
2107
    },
2108
    "691d4e80ba6d42ad9c7a43b715e4dd4d": {
2109
     "model_module": "@jupyter-widgets/controls",
2110
     "model_module_version": "1.5.0",
2111
     "model_name": "HTMLModel",
2112
     "state": {
2113
      "_dom_classes": [],
2114
      "_model_module": "@jupyter-widgets/controls",
2115
      "_model_module_version": "1.5.0",
2116
      "_model_name": "HTMLModel",
2117
      "_view_count": null,
2118
      "_view_module": "@jupyter-widgets/controls",
2119
      "_view_module_version": "1.5.0",
2120
      "_view_name": "HTMLView",
2121
      "description": "",
2122
      "description_tooltip": null,
2123
      "layout": "IPY_MODEL_e34c27a5193a4f559f97b8b79afe6ca8",
2124
      "placeholder": "​",
2125
      "style": "IPY_MODEL_2a549eb965d94231a8b0d20e43911b4b",
2126
      "value": " 347/347 [00:00<00:00, 19.1kB/s]"
2127
     }
2128
    },
2129
    "6b8fc92abe3b49cb85f5d74d58f39a43": {
2130
     "model_module": "@jupyter-widgets/controls",
2131
     "model_module_version": "1.5.0",
2132
     "model_name": "FloatProgressModel",
2133
     "state": {
2134
      "_dom_classes": [],
2135
      "_model_module": "@jupyter-widgets/controls",
2136
      "_model_module_version": "1.5.0",
2137
      "_model_name": "FloatProgressModel",
2138
      "_view_count": null,
2139
      "_view_module": "@jupyter-widgets/controls",
2140
      "_view_module_version": "1.5.0",
2141
      "_view_name": "ProgressView",
2142
      "bar_style": "success",
2143
      "description": "",
2144
      "description_tooltip": null,
2145
      "layout": "IPY_MODEL_d8154d6697c64a4ab429e6c93b2a1c12",
2146
      "max": 1153,
2147
      "min": 0,
2148
      "orientation": "horizontal",
2149
      "style": "IPY_MODEL_0771588e95944c86986d6d5a35ecac25",
2150
      "value": 1153
2151
     }
2152
    },
2153
    "6bf97b846a484a96ab3e81e7aedb35c7": {
2154
     "model_module": "@jupyter-widgets/controls",
2155
     "model_module_version": "1.5.0",
2156
     "model_name": "HBoxModel",
2157
     "state": {
2158
      "_dom_classes": [],
2159
      "_model_module": "@jupyter-widgets/controls",
2160
      "_model_module_version": "1.5.0",
2161
      "_model_name": "HBoxModel",
2162
      "_view_count": null,
2163
      "_view_module": "@jupyter-widgets/controls",
2164
      "_view_module_version": "1.5.0",
2165
      "_view_name": "HBoxView",
2166
      "box_style": "",
2167
      "children": [
2168
       "IPY_MODEL_f7deae62ecb74badbf681e7fa5337938",
2169
       "IPY_MODEL_0c5ceaf63a5c4fd59be7408d986878a5",
2170
       "IPY_MODEL_1d7b6a791f3d4464a2592b2c51710767"
2171
      ],
2172
      "layout": "IPY_MODEL_15b469c156ea4e3fb405f11135dfd823"
2173
     }
2174
    },
2175
    "7115fde92da24ca293d925a89aae3e75": {
2176
     "model_module": "@jupyter-widgets/base",
2177
     "model_module_version": "1.2.0",
2178
     "model_name": "LayoutModel",
2179
     "state": {
2180
      "_model_module": "@jupyter-widgets/base",
2181
      "_model_module_version": "1.2.0",
2182
      "_model_name": "LayoutModel",
2183
      "_view_count": null,
2184
      "_view_module": "@jupyter-widgets/base",
2185
      "_view_module_version": "1.2.0",
2186
      "_view_name": "LayoutView",
2187
      "align_content": null,
2188
      "align_items": null,
2189
      "align_self": null,
2190
      "border": null,
2191
      "bottom": null,
2192
      "display": null,
2193
      "flex": null,
2194
      "flex_flow": null,
2195
      "grid_area": null,
2196
      "grid_auto_columns": null,
2197
      "grid_auto_flow": null,
2198
      "grid_auto_rows": null,
2199
      "grid_column": null,
2200
      "grid_gap": null,
2201
      "grid_row": null,
2202
      "grid_template_areas": null,
2203
      "grid_template_columns": null,
2204
      "grid_template_rows": null,
2205
      "height": null,
2206
      "justify_content": null,
2207
      "justify_items": null,
2208
      "left": null,
2209
      "margin": null,
2210
      "max_height": null,
2211
      "max_width": null,
2212
      "min_height": null,
2213
      "min_width": null,
2214
      "object_fit": null,
2215
      "object_position": null,
2216
      "order": null,
2217
      "overflow": null,
2218
      "overflow_x": null,
2219
      "overflow_y": null,
2220
      "padding": null,
2221
      "right": null,
2222
      "top": null,
2223
      "visibility": null,
2224
      "width": null
2225
     }
2226
    },
2227
    "7162fa2ea2db484292ab8e6661e736cc": {
2228
     "model_module": "@jupyter-widgets/controls",
2229
     "model_module_version": "1.5.0",
2230
     "model_name": "ProgressStyleModel",
2231
     "state": {
2232
      "_model_module": "@jupyter-widgets/controls",
2233
      "_model_module_version": "1.5.0",
2234
      "_model_name": "ProgressStyleModel",
2235
      "_view_count": null,
2236
      "_view_module": "@jupyter-widgets/base",
2237
      "_view_module_version": "1.2.0",
2238
      "_view_name": "StyleView",
2239
      "bar_color": null,
2240
      "description_width": ""
2241
     }
2242
    },
2243
    "73a70b686fde42298c79b08e7733e26c": {
2244
     "model_module": "@jupyter-widgets/base",
2245
     "model_module_version": "1.2.0",
2246
     "model_name": "LayoutModel",
2247
     "state": {
2248
      "_model_module": "@jupyter-widgets/base",
2249
      "_model_module_version": "1.2.0",
2250
      "_model_name": "LayoutModel",
2251
      "_view_count": null,
2252
      "_view_module": "@jupyter-widgets/base",
2253
      "_view_module_version": "1.2.0",
2254
      "_view_name": "LayoutView",
2255
      "align_content": null,
2256
      "align_items": null,
2257
      "align_self": null,
2258
      "border": null,
2259
      "bottom": null,
2260
      "display": null,
2261
      "flex": null,
2262
      "flex_flow": null,
2263
      "grid_area": null,
2264
      "grid_auto_columns": null,
2265
      "grid_auto_flow": null,
2266
      "grid_auto_rows": null,
2267
      "grid_column": null,
2268
      "grid_gap": null,
2269
      "grid_row": null,
2270
      "grid_template_areas": null,
2271
      "grid_template_columns": null,
2272
      "grid_template_rows": null,
2273
      "height": null,
2274
      "justify_content": null,
2275
      "justify_items": null,
2276
      "left": null,
2277
      "margin": null,
2278
      "max_height": null,
2279
      "max_width": null,
2280
      "min_height": null,
2281
      "min_width": null,
2282
      "object_fit": null,
2283
      "object_position": null,
2284
      "order": null,
2285
      "overflow": null,
2286
      "overflow_x": null,
2287
      "overflow_y": null,
2288
      "padding": null,
2289
      "right": null,
2290
      "top": null,
2291
      "visibility": null,
2292
      "width": null
2293
     }
2294
    },
2295
    "758d6d03b7924c0ba4664ad70e39b30a": {
2296
     "model_module": "@jupyter-widgets/controls",
2297
     "model_module_version": "1.5.0",
2298
     "model_name": "DescriptionStyleModel",
2299
     "state": {
2300
      "_model_module": "@jupyter-widgets/controls",
2301
      "_model_module_version": "1.5.0",
2302
      "_model_name": "DescriptionStyleModel",
2303
      "_view_count": null,
2304
      "_view_module": "@jupyter-widgets/base",
2305
      "_view_module_version": "1.2.0",
2306
      "_view_name": "StyleView",
2307
      "description_width": ""
2308
     }
2309
    },
2310
    "76fbafb1de36478a8b59c02820f58549": {
2311
     "model_module": "@jupyter-widgets/controls",
2312
     "model_module_version": "1.5.0",
2313
     "model_name": "ProgressStyleModel",
2314
     "state": {
2315
      "_model_module": "@jupyter-widgets/controls",
2316
      "_model_module_version": "1.5.0",
2317
      "_model_name": "ProgressStyleModel",
2318
      "_view_count": null,
2319
      "_view_module": "@jupyter-widgets/base",
2320
      "_view_module_version": "1.2.0",
2321
      "_view_name": "StyleView",
2322
      "bar_color": null,
2323
      "description_width": ""
2324
     }
2325
    },
2326
    "7bc77b2d4db14828ba29757618ae4d53": {
2327
     "model_module": "@jupyter-widgets/base",
2328
     "model_module_version": "1.2.0",
2329
     "model_name": "LayoutModel",
2330
     "state": {
2331
      "_model_module": "@jupyter-widgets/base",
2332
      "_model_module_version": "1.2.0",
2333
      "_model_name": "LayoutModel",
2334
      "_view_count": null,
2335
      "_view_module": "@jupyter-widgets/base",
2336
      "_view_module_version": "1.2.0",
2337
      "_view_name": "LayoutView",
2338
      "align_content": null,
2339
      "align_items": null,
2340
      "align_self": null,
2341
      "border": null,
2342
      "bottom": null,
2343
      "display": null,
2344
      "flex": null,
2345
      "flex_flow": null,
2346
      "grid_area": null,
2347
      "grid_auto_columns": null,
2348
      "grid_auto_flow": null,
2349
      "grid_auto_rows": null,
2350
      "grid_column": null,
2351
      "grid_gap": null,
2352
      "grid_row": null,
2353
      "grid_template_areas": null,
2354
      "grid_template_columns": null,
2355
      "grid_template_rows": null,
2356
      "height": null,
2357
      "justify_content": null,
2358
      "justify_items": null,
2359
      "left": null,
2360
      "margin": null,
2361
      "max_height": null,
2362
      "max_width": null,
2363
      "min_height": null,
2364
      "min_width": null,
2365
      "object_fit": null,
2366
      "object_position": null,
2367
      "order": null,
2368
      "overflow": null,
2369
      "overflow_x": null,
2370
      "overflow_y": null,
2371
      "padding": null,
2372
      "right": null,
2373
      "top": null,
2374
      "visibility": null,
2375
      "width": null
2376
     }
2377
    },
2378
    "7e165f1afa19471e8d389f2c614a1a27": {
2379
     "model_module": "@jupyter-widgets/controls",
2380
     "model_module_version": "1.5.0",
2381
     "model_name": "DescriptionStyleModel",
2382
     "state": {
2383
      "_model_module": "@jupyter-widgets/controls",
2384
      "_model_module_version": "1.5.0",
2385
      "_model_name": "DescriptionStyleModel",
2386
      "_view_count": null,
2387
      "_view_module": "@jupyter-widgets/base",
2388
      "_view_module_version": "1.2.0",
2389
      "_view_name": "StyleView",
2390
      "description_width": ""
2391
     }
2392
    },
2393
    "7e372bec7e1048399e47c874f0b55ddb": {
2394
     "model_module": "@jupyter-widgets/base",
2395
     "model_module_version": "1.2.0",
2396
     "model_name": "LayoutModel",
2397
     "state": {
2398
      "_model_module": "@jupyter-widgets/base",
2399
      "_model_module_version": "1.2.0",
2400
      "_model_name": "LayoutModel",
2401
      "_view_count": null,
2402
      "_view_module": "@jupyter-widgets/base",
2403
      "_view_module_version": "1.2.0",
2404
      "_view_name": "LayoutView",
2405
      "align_content": null,
2406
      "align_items": null,
2407
      "align_self": null,
2408
      "border": null,
2409
      "bottom": null,
2410
      "display": null,
2411
      "flex": null,
2412
      "flex_flow": null,
2413
      "grid_area": null,
2414
      "grid_auto_columns": null,
2415
      "grid_auto_flow": null,
2416
      "grid_auto_rows": null,
2417
      "grid_column": null,
2418
      "grid_gap": null,
2419
      "grid_row": null,
2420
      "grid_template_areas": null,
2421
      "grid_template_columns": null,
2422
      "grid_template_rows": null,
2423
      "height": null,
2424
      "justify_content": null,
2425
      "justify_items": null,
2426
      "left": null,
2427
      "margin": null,
2428
      "max_height": null,
2429
      "max_width": null,
2430
      "min_height": null,
2431
      "min_width": null,
2432
      "object_fit": null,
2433
      "object_position": null,
2434
      "order": null,
2435
      "overflow": null,
2436
      "overflow_x": null,
2437
      "overflow_y": null,
2438
      "padding": null,
2439
      "right": null,
2440
      "top": null,
2441
      "visibility": null,
2442
      "width": null
2443
     }
2444
    },
2445
    "7f3b564be0764374a90b059e9108ae4b": {
2446
     "model_module": "@jupyter-widgets/controls",
2447
     "model_module_version": "1.5.0",
2448
     "model_name": "DescriptionStyleModel",
2449
     "state": {
2450
      "_model_module": "@jupyter-widgets/controls",
2451
      "_model_module_version": "1.5.0",
2452
      "_model_name": "DescriptionStyleModel",
2453
      "_view_count": null,
2454
      "_view_module": "@jupyter-widgets/base",
2455
      "_view_module_version": "1.2.0",
2456
      "_view_name": "StyleView",
2457
      "description_width": ""
2458
     }
2459
    },
2460
    "80f4206228ca4e2b819a66791cb54b66": {
2461
     "model_module": "@jupyter-widgets/controls",
2462
     "model_module_version": "1.5.0",
2463
     "model_name": "HTMLModel",
2464
     "state": {
2465
      "_dom_classes": [],
2466
      "_model_module": "@jupyter-widgets/controls",
2467
      "_model_module_version": "1.5.0",
2468
      "_model_name": "HTMLModel",
2469
      "_view_count": null,
2470
      "_view_module": "@jupyter-widgets/controls",
2471
      "_view_module_version": "1.5.0",
2472
      "_view_name": "HTMLView",
2473
      "description": "",
2474
      "description_tooltip": null,
2475
      "layout": "IPY_MODEL_73a70b686fde42298c79b08e7733e26c",
2476
      "placeholder": "​",
2477
      "style": "IPY_MODEL_b24783445f0c44188633222c832e2b16",
2478
      "value": "tokenizer.model: 100%"
2479
     }
2480
    },
2481
    "836ee20b46184f16adfb0eeec1a7d571": {
2482
     "model_module": "@jupyter-widgets/controls",
2483
     "model_module_version": "1.5.0",
2484
     "model_name": "DescriptionStyleModel",
2485
     "state": {
2486
      "_model_module": "@jupyter-widgets/controls",
2487
      "_model_module_version": "1.5.0",
2488
      "_model_name": "DescriptionStyleModel",
2489
      "_view_count": null,
2490
      "_view_module": "@jupyter-widgets/base",
2491
      "_view_module_version": "1.2.0",
2492
      "_view_name": "StyleView",
2493
      "description_width": ""
2494
     }
2495
    },
2496
    "8589f5b5f43443f5a6f6687005f82677": {
2497
     "model_module": "@jupyter-widgets/controls",
2498
     "model_module_version": "1.5.0",
2499
     "model_name": "DescriptionStyleModel",
2500
     "state": {
2501
      "_model_module": "@jupyter-widgets/controls",
2502
      "_model_module_version": "1.5.0",
2503
      "_model_name": "DescriptionStyleModel",
2504
      "_view_count": null,
2505
      "_view_module": "@jupyter-widgets/base",
2506
      "_view_module_version": "1.2.0",
2507
      "_view_name": "StyleView",
2508
      "description_width": ""
2509
     }
2510
    },
2511
    "85fc45e17855497db9799d4a189b7a05": {
2512
     "model_module": "@jupyter-widgets/controls",
2513
     "model_module_version": "1.5.0",
2514
     "model_name": "HBoxModel",
2515
     "state": {
2516
      "_dom_classes": [],
2517
      "_model_module": "@jupyter-widgets/controls",
2518
      "_model_module_version": "1.5.0",
2519
      "_model_name": "HBoxModel",
2520
      "_view_count": null,
2521
      "_view_module": "@jupyter-widgets/controls",
2522
      "_view_module_version": "1.5.0",
2523
      "_view_name": "HBoxView",
2524
      "box_style": "",
2525
      "children": [
2526
       "IPY_MODEL_c079c52f99974fb7ba51684dc9020868",
2527
       "IPY_MODEL_6b8fc92abe3b49cb85f5d74d58f39a43",
2528
       "IPY_MODEL_8ffab94c76af471e887218f27d43bdc8"
2529
      ],
2530
      "layout": "IPY_MODEL_1534438d29e74dd3b93d6140c416c549"
2531
     }
2532
    },
2533
    "875b6a477e144a1d8557b7a141b439ed": {
2534
     "model_module": "@jupyter-widgets/base",
2535
     "model_module_version": "1.2.0",
2536
     "model_name": "LayoutModel",
2537
     "state": {
2538
      "_model_module": "@jupyter-widgets/base",
2539
      "_model_module_version": "1.2.0",
2540
      "_model_name": "LayoutModel",
2541
      "_view_count": null,
2542
      "_view_module": "@jupyter-widgets/base",
2543
      "_view_module_version": "1.2.0",
2544
      "_view_name": "LayoutView",
2545
      "align_content": null,
2546
      "align_items": null,
2547
      "align_self": null,
2548
      "border": null,
2549
      "bottom": null,
2550
      "display": null,
2551
      "flex": null,
2552
      "flex_flow": null,
2553
      "grid_area": null,
2554
      "grid_auto_columns": null,
2555
      "grid_auto_flow": null,
2556
      "grid_auto_rows": null,
2557
      "grid_column": null,
2558
      "grid_gap": null,
2559
      "grid_row": null,
2560
      "grid_template_areas": null,
2561
      "grid_template_columns": null,
2562
      "grid_template_rows": null,
2563
      "height": null,
2564
      "justify_content": null,
2565
      "justify_items": null,
2566
      "left": null,
2567
      "margin": null,
2568
      "max_height": null,
2569
      "max_width": null,
2570
      "min_height": null,
2571
      "min_width": null,
2572
      "object_fit": null,
2573
      "object_position": null,
2574
      "order": null,
2575
      "overflow": null,
2576
      "overflow_x": null,
2577
      "overflow_y": null,
2578
      "padding": null,
2579
      "right": null,
2580
      "top": null,
2581
      "visibility": null,
2582
      "width": null
2583
     }
2584
    },
2585
    "8834a01292b64791bdf7dd162bac96a4": {
2586
     "model_module": "@jupyter-widgets/base",
2587
     "model_module_version": "1.2.0",
2588
     "model_name": "LayoutModel",
2589
     "state": {
2590
      "_model_module": "@jupyter-widgets/base",
2591
      "_model_module_version": "1.2.0",
2592
      "_model_name": "LayoutModel",
2593
      "_view_count": null,
2594
      "_view_module": "@jupyter-widgets/base",
2595
      "_view_module_version": "1.2.0",
2596
      "_view_name": "LayoutView",
2597
      "align_content": null,
2598
      "align_items": null,
2599
      "align_self": null,
2600
      "border": null,
2601
      "bottom": null,
2602
      "display": null,
2603
      "flex": null,
2604
      "flex_flow": null,
2605
      "grid_area": null,
2606
      "grid_auto_columns": null,
2607
      "grid_auto_flow": null,
2608
      "grid_auto_rows": null,
2609
      "grid_column": null,
2610
      "grid_gap": null,
2611
      "grid_row": null,
2612
      "grid_template_areas": null,
2613
      "grid_template_columns": null,
2614
      "grid_template_rows": null,
2615
      "height": null,
2616
      "justify_content": null,
2617
      "justify_items": null,
2618
      "left": null,
2619
      "margin": null,
2620
      "max_height": null,
2621
      "max_width": null,
2622
      "min_height": null,
2623
      "min_width": null,
2624
      "object_fit": null,
2625
      "object_position": null,
2626
      "order": null,
2627
      "overflow": null,
2628
      "overflow_x": null,
2629
      "overflow_y": null,
2630
      "padding": null,
2631
      "right": null,
2632
      "top": null,
2633
      "visibility": null,
2634
      "width": null
2635
     }
2636
    },
2637
    "89bb92d1044d461082ee2c6b35663302": {
2638
     "model_module": "@jupyter-widgets/controls",
2639
     "model_module_version": "1.5.0",
2640
     "model_name": "HTMLModel",
2641
     "state": {
2642
      "_dom_classes": [],
2643
      "_model_module": "@jupyter-widgets/controls",
2644
      "_model_module_version": "1.5.0",
2645
      "_model_name": "HTMLModel",
2646
      "_view_count": null,
2647
      "_view_module": "@jupyter-widgets/controls",
2648
      "_view_module_version": "1.5.0",
2649
      "_view_name": "HTMLView",
2650
      "description": "",
2651
      "description_tooltip": null,
2652
      "layout": "IPY_MODEL_c090549dcb2a4c94993e00291dd18f5c",
2653
      "placeholder": "​",
2654
      "style": "IPY_MODEL_95791a07defc44068cc1beacb1cca9d6",
2655
      "value": "tokenizer.json: 100%"
2656
     }
2657
    },
2658
    "8a6838cc45d84163b7038c29207374d9": {
2659
     "model_module": "@jupyter-widgets/controls",
2660
     "model_module_version": "1.5.0",
2661
     "model_name": "DescriptionStyleModel",
2662
     "state": {
2663
      "_model_module": "@jupyter-widgets/controls",
2664
      "_model_module_version": "1.5.0",
2665
      "_model_name": "DescriptionStyleModel",
2666
      "_view_count": null,
2667
      "_view_module": "@jupyter-widgets/base",
2668
      "_view_module_version": "1.2.0",
2669
      "_view_name": "StyleView",
2670
      "description_width": ""
2671
     }
2672
    },
2673
    "8cc808a50b5f40dab504b0208ea0daf2": {
2674
     "model_module": "@jupyter-widgets/controls",
2675
     "model_module_version": "1.5.0",
2676
     "model_name": "FloatProgressModel",
2677
     "state": {
2678
      "_dom_classes": [],
2679
      "_model_module": "@jupyter-widgets/controls",
2680
      "_model_module_version": "1.5.0",
2681
      "_model_name": "FloatProgressModel",
2682
      "_view_count": null,
2683
      "_view_module": "@jupyter-widgets/controls",
2684
      "_view_module_version": "1.5.0",
2685
      "_view_name": "ProgressView",
2686
      "bar_style": "success",
2687
      "description": "",
2688
      "description_tooltip": null,
2689
      "layout": "IPY_MODEL_5a46885958a24056a8c55f65eccd0ee3",
2690
      "max": 126891,
2691
      "min": 0,
2692
      "orientation": "horizontal",
2693
      "style": "IPY_MODEL_455ca675f2e84b18ac24ee769f321870",
2694
      "value": 126891
2695
     }
2696
    },
2697
    "8ffab94c76af471e887218f27d43bdc8": {
2698
     "model_module": "@jupyter-widgets/controls",
2699
     "model_module_version": "1.5.0",
2700
     "model_name": "HTMLModel",
2701
     "state": {
2702
      "_dom_classes": [],
2703
      "_model_module": "@jupyter-widgets/controls",
2704
      "_model_module_version": "1.5.0",
2705
      "_model_name": "HTMLModel",
2706
      "_view_count": null,
2707
      "_view_module": "@jupyter-widgets/controls",
2708
      "_view_module_version": "1.5.0",
2709
      "_view_name": "HTMLView",
2710
      "description": "",
2711
      "description_tooltip": null,
2712
      "layout": "IPY_MODEL_ab6a687c37974a91b58535d6323c0c67",
2713
      "placeholder": "​",
2714
      "style": "IPY_MODEL_836ee20b46184f16adfb0eeec1a7d571",
2715
      "value": " 1.15k/1.15k [00:00<00:00, 51.3kB/s]"
2716
     }
2717
    },
2718
    "913d9e276eb74b4a9c137a48cdf5c776": {
2719
     "model_module": "@jupyter-widgets/base",
2720
     "model_module_version": "1.2.0",
2721
     "model_name": "LayoutModel",
2722
     "state": {
2723
      "_model_module": "@jupyter-widgets/base",
2724
      "_model_module_version": "1.2.0",
2725
      "_model_name": "LayoutModel",
2726
      "_view_count": null,
2727
      "_view_module": "@jupyter-widgets/base",
2728
      "_view_module_version": "1.2.0",
2729
      "_view_name": "LayoutView",
2730
      "align_content": null,
2731
      "align_items": null,
2732
      "align_self": null,
2733
      "border": null,
2734
      "bottom": null,
2735
      "display": null,
2736
      "flex": null,
2737
      "flex_flow": null,
2738
      "grid_area": null,
2739
      "grid_auto_columns": null,
2740
      "grid_auto_flow": null,
2741
      "grid_auto_rows": null,
2742
      "grid_column": null,
2743
      "grid_gap": null,
2744
      "grid_row": null,
2745
      "grid_template_areas": null,
2746
      "grid_template_columns": null,
2747
      "grid_template_rows": null,
2748
      "height": null,
2749
      "justify_content": null,
2750
      "justify_items": null,
2751
      "left": null,
2752
      "margin": null,
2753
      "max_height": null,
2754
      "max_width": null,
2755
      "min_height": null,
2756
      "min_width": null,
2757
      "object_fit": null,
2758
      "object_position": null,
2759
      "order": null,
2760
      "overflow": null,
2761
      "overflow_x": null,
2762
      "overflow_y": null,
2763
      "padding": null,
2764
      "right": null,
2765
      "top": null,
2766
      "visibility": null,
2767
      "width": null
2768
     }
2769
    },
2770
    "9295a5e2175240e698457ea13ecb2901": {
2771
     "model_module": "@jupyter-widgets/controls",
2772
     "model_module_version": "1.5.0",
2773
     "model_name": "ProgressStyleModel",
2774
     "state": {
2775
      "_model_module": "@jupyter-widgets/controls",
2776
      "_model_module_version": "1.5.0",
2777
      "_model_name": "ProgressStyleModel",
2778
      "_view_count": null,
2779
      "_view_module": "@jupyter-widgets/base",
2780
      "_view_module_version": "1.2.0",
2781
      "_view_name": "StyleView",
2782
      "bar_color": null,
2783
      "description_width": ""
2784
     }
2785
    },
2786
    "94e316bb41b440bfa0549d542b0bb605": {
2787
     "model_module": "@jupyter-widgets/base",
2788
     "model_module_version": "1.2.0",
2789
     "model_name": "LayoutModel",
2790
     "state": {
2791
      "_model_module": "@jupyter-widgets/base",
2792
      "_model_module_version": "1.2.0",
2793
      "_model_name": "LayoutModel",
2794
      "_view_count": null,
2795
      "_view_module": "@jupyter-widgets/base",
2796
      "_view_module_version": "1.2.0",
2797
      "_view_name": "LayoutView",
2798
      "align_content": null,
2799
      "align_items": null,
2800
      "align_self": null,
2801
      "border": null,
2802
      "bottom": null,
2803
      "display": null,
2804
      "flex": null,
2805
      "flex_flow": null,
2806
      "grid_area": null,
2807
      "grid_auto_columns": null,
2808
      "grid_auto_flow": null,
2809
      "grid_auto_rows": null,
2810
      "grid_column": null,
2811
      "grid_gap": null,
2812
      "grid_row": null,
2813
      "grid_template_areas": null,
2814
      "grid_template_columns": null,
2815
      "grid_template_rows": null,
2816
      "height": null,
2817
      "justify_content": null,
2818
      "justify_items": null,
2819
      "left": null,
2820
      "margin": null,
2821
      "max_height": null,
2822
      "max_width": null,
2823
      "min_height": null,
2824
      "min_width": null,
2825
      "object_fit": null,
2826
      "object_position": null,
2827
      "order": null,
2828
      "overflow": null,
2829
      "overflow_x": null,
2830
      "overflow_y": null,
2831
      "padding": null,
2832
      "right": null,
2833
      "top": null,
2834
      "visibility": null,
2835
      "width": null
2836
     }
2837
    },
2838
    "95791a07defc44068cc1beacb1cca9d6": {
2839
     "model_module": "@jupyter-widgets/controls",
2840
     "model_module_version": "1.5.0",
2841
     "model_name": "DescriptionStyleModel",
2842
     "state": {
2843
      "_model_module": "@jupyter-widgets/controls",
2844
      "_model_module_version": "1.5.0",
2845
      "_model_name": "DescriptionStyleModel",
2846
      "_view_count": null,
2847
      "_view_module": "@jupyter-widgets/base",
2848
      "_view_module_version": "1.2.0",
2849
      "_view_name": "StyleView",
2850
      "description_width": ""
2851
     }
2852
    },
2853
    "95fbe85b69a549cfb14ef69099c63c4c": {
2854
     "model_module": "@jupyter-widgets/controls",
2855
     "model_module_version": "1.5.0",
2856
     "model_name": "HTMLModel",
2857
     "state": {
2858
      "_dom_classes": [],
2859
      "_model_module": "@jupyter-widgets/controls",
2860
      "_model_module_version": "1.5.0",
2861
      "_model_name": "HTMLModel",
2862
      "_view_count": null,
2863
      "_view_module": "@jupyter-widgets/controls",
2864
      "_view_module_version": "1.5.0",
2865
      "_view_name": "HTMLView",
2866
      "description": "",
2867
      "description_tooltip": null,
2868
      "layout": "IPY_MODEL_913d9e276eb74b4a9c137a48cdf5c776",
2869
      "placeholder": "​",
2870
      "style": "IPY_MODEL_e2f350d6d9334022a92ad7779c3b2f32",
2871
      "value": " 730M/730M [00:08<00:00, 86.5MB/s]"
2872
     }
2873
    },
2874
    "9835e1c26702495e8f372a5a123c0a30": {
2875
     "model_module": "@jupyter-widgets/controls",
2876
     "model_module_version": "1.5.0",
2877
     "model_name": "DescriptionStyleModel",
2878
     "state": {
2879
      "_model_module": "@jupyter-widgets/controls",
2880
      "_model_module_version": "1.5.0",
2881
      "_model_name": "DescriptionStyleModel",
2882
      "_view_count": null,
2883
      "_view_module": "@jupyter-widgets/base",
2884
      "_view_module_version": "1.2.0",
2885
      "_view_name": "StyleView",
2886
      "description_width": ""
2887
     }
2888
    },
2889
    "9a17b052a43b465d895a46b6f3133285": {
2890
     "model_module": "@jupyter-widgets/controls",
2891
     "model_module_version": "1.5.0",
2892
     "model_name": "DescriptionStyleModel",
2893
     "state": {
2894
      "_model_module": "@jupyter-widgets/controls",
2895
      "_model_module_version": "1.5.0",
2896
      "_model_name": "DescriptionStyleModel",
2897
      "_view_count": null,
2898
      "_view_module": "@jupyter-widgets/base",
2899
      "_view_module_version": "1.2.0",
2900
      "_view_name": "StyleView",
2901
      "description_width": ""
2902
     }
2903
    },
2904
    "9bb6237888d742c097de9672389a6c59": {
2905
     "model_module": "@jupyter-widgets/base",
2906
     "model_module_version": "1.2.0",
2907
     "model_name": "LayoutModel",
2908
     "state": {
2909
      "_model_module": "@jupyter-widgets/base",
2910
      "_model_module_version": "1.2.0",
2911
      "_model_name": "LayoutModel",
2912
      "_view_count": null,
2913
      "_view_module": "@jupyter-widgets/base",
2914
      "_view_module_version": "1.2.0",
2915
      "_view_name": "LayoutView",
2916
      "align_content": null,
2917
      "align_items": null,
2918
      "align_self": null,
2919
      "border": null,
2920
      "bottom": null,
2921
      "display": null,
2922
      "flex": null,
2923
      "flex_flow": null,
2924
      "grid_area": null,
2925
      "grid_auto_columns": null,
2926
      "grid_auto_flow": null,
2927
      "grid_auto_rows": null,
2928
      "grid_column": null,
2929
      "grid_gap": null,
2930
      "grid_row": null,
2931
      "grid_template_areas": null,
2932
      "grid_template_columns": null,
2933
      "grid_template_rows": null,
2934
      "height": null,
2935
      "justify_content": null,
2936
      "justify_items": null,
2937
      "left": null,
2938
      "margin": null,
2939
      "max_height": null,
2940
      "max_width": null,
2941
      "min_height": null,
2942
      "min_width": null,
2943
      "object_fit": null,
2944
      "object_position": null,
2945
      "order": null,
2946
      "overflow": null,
2947
      "overflow_x": null,
2948
      "overflow_y": null,
2949
      "padding": null,
2950
      "right": null,
2951
      "top": null,
2952
      "visibility": null,
2953
      "width": null
2954
     }
2955
    },
2956
    "9c4ef2376344430297d3edb0141dfdf8": {
2957
     "model_module": "@jupyter-widgets/controls",
2958
     "model_module_version": "1.5.0",
2959
     "model_name": "ProgressStyleModel",
2960
     "state": {
2961
      "_model_module": "@jupyter-widgets/controls",
2962
      "_model_module_version": "1.5.0",
2963
      "_model_name": "ProgressStyleModel",
2964
      "_view_count": null,
2965
      "_view_module": "@jupyter-widgets/base",
2966
      "_view_module_version": "1.2.0",
2967
      "_view_name": "StyleView",
2968
      "bar_color": null,
2969
      "description_width": ""
2970
     }
2971
    },
2972
    "a536bb5024be45df8f7c636765bf1dd3": {
2973
     "model_module": "@jupyter-widgets/controls",
2974
     "model_module_version": "1.5.0",
2975
     "model_name": "DescriptionStyleModel",
2976
     "state": {
2977
      "_model_module": "@jupyter-widgets/controls",
2978
      "_model_module_version": "1.5.0",
2979
      "_model_name": "DescriptionStyleModel",
2980
      "_view_count": null,
2981
      "_view_module": "@jupyter-widgets/base",
2982
      "_view_module_version": "1.2.0",
2983
      "_view_name": "StyleView",
2984
      "description_width": ""
2985
     }
2986
    },
2987
    "a68b98d1aab243449e93d9e604e81110": {
2988
     "model_module": "@jupyter-widgets/controls",
2989
     "model_module_version": "1.5.0",
2990
     "model_name": "ProgressStyleModel",
2991
     "state": {
2992
      "_model_module": "@jupyter-widgets/controls",
2993
      "_model_module_version": "1.5.0",
2994
      "_model_name": "ProgressStyleModel",
2995
      "_view_count": null,
2996
      "_view_module": "@jupyter-widgets/base",
2997
      "_view_module_version": "1.2.0",
2998
      "_view_name": "StyleView",
2999
      "bar_color": null,
3000
      "description_width": ""
3001
     }
3002
    },
3003
    "ab6a687c37974a91b58535d6323c0c67": {
3004
     "model_module": "@jupyter-widgets/base",
3005
     "model_module_version": "1.2.0",
3006
     "model_name": "LayoutModel",
3007
     "state": {
3008
      "_model_module": "@jupyter-widgets/base",
3009
      "_model_module_version": "1.2.0",
3010
      "_model_name": "LayoutModel",
3011
      "_view_count": null,
3012
      "_view_module": "@jupyter-widgets/base",
3013
      "_view_module_version": "1.2.0",
3014
      "_view_name": "LayoutView",
3015
      "align_content": null,
3016
      "align_items": null,
3017
      "align_self": null,
3018
      "border": null,
3019
      "bottom": null,
3020
      "display": null,
3021
      "flex": null,
3022
      "flex_flow": null,
3023
      "grid_area": null,
3024
      "grid_auto_columns": null,
3025
      "grid_auto_flow": null,
3026
      "grid_auto_rows": null,
3027
      "grid_column": null,
3028
      "grid_gap": null,
3029
      "grid_row": null,
3030
      "grid_template_areas": null,
3031
      "grid_template_columns": null,
3032
      "grid_template_rows": null,
3033
      "height": null,
3034
      "justify_content": null,
3035
      "justify_items": null,
3036
      "left": null,
3037
      "margin": null,
3038
      "max_height": null,
3039
      "max_width": null,
3040
      "min_height": null,
3041
      "min_width": null,
3042
      "object_fit": null,
3043
      "object_position": null,
3044
      "order": null,
3045
      "overflow": null,
3046
      "overflow_x": null,
3047
      "overflow_y": null,
3048
      "padding": null,
3049
      "right": null,
3050
      "top": null,
3051
      "visibility": null,
3052
      "width": null
3053
     }
3054
    },
3055
    "af1f9ed1a0464042acb7899728c3d58c": {
3056
     "model_module": "@jupyter-widgets/controls",
3057
     "model_module_version": "1.5.0",
3058
     "model_name": "ProgressStyleModel",
3059
     "state": {
3060
      "_model_module": "@jupyter-widgets/controls",
3061
      "_model_module_version": "1.5.0",
3062
      "_model_name": "ProgressStyleModel",
3063
      "_view_count": null,
3064
      "_view_module": "@jupyter-widgets/base",
3065
      "_view_module_version": "1.2.0",
3066
      "_view_name": "StyleView",
3067
      "bar_color": null,
3068
      "description_width": ""
3069
     }
3070
    },
3071
    "b0042291309d4ca6869e666e771e6dba": {
3072
     "model_module": "@jupyter-widgets/base",
3073
     "model_module_version": "1.2.0",
3074
     "model_name": "LayoutModel",
3075
     "state": {
3076
      "_model_module": "@jupyter-widgets/base",
3077
      "_model_module_version": "1.2.0",
3078
      "_model_name": "LayoutModel",
3079
      "_view_count": null,
3080
      "_view_module": "@jupyter-widgets/base",
3081
      "_view_module_version": "1.2.0",
3082
      "_view_name": "LayoutView",
3083
      "align_content": null,
3084
      "align_items": null,
3085
      "align_self": null,
3086
      "border": null,
3087
      "bottom": null,
3088
      "display": null,
3089
      "flex": null,
3090
      "flex_flow": null,
3091
      "grid_area": null,
3092
      "grid_auto_columns": null,
3093
      "grid_auto_flow": null,
3094
      "grid_auto_rows": null,
3095
      "grid_column": null,
3096
      "grid_gap": null,
3097
      "grid_row": null,
3098
      "grid_template_areas": null,
3099
      "grid_template_columns": null,
3100
      "grid_template_rows": null,
3101
      "height": null,
3102
      "justify_content": null,
3103
      "justify_items": null,
3104
      "left": null,
3105
      "margin": null,
3106
      "max_height": null,
3107
      "max_width": null,
3108
      "min_height": null,
3109
      "min_width": null,
3110
      "object_fit": null,
3111
      "object_position": null,
3112
      "order": null,
3113
      "overflow": null,
3114
      "overflow_x": null,
3115
      "overflow_y": null,
3116
      "padding": null,
3117
      "right": null,
3118
      "top": null,
3119
      "visibility": null,
3120
      "width": null
3121
     }
3122
    },
3123
    "b0febb0d20764e22a9fa28a88585d84a": {
3124
     "model_module": "@jupyter-widgets/base",
3125
     "model_module_version": "1.2.0",
3126
     "model_name": "LayoutModel",
3127
     "state": {
3128
      "_model_module": "@jupyter-widgets/base",
3129
      "_model_module_version": "1.2.0",
3130
      "_model_name": "LayoutModel",
3131
      "_view_count": null,
3132
      "_view_module": "@jupyter-widgets/base",
3133
      "_view_module_version": "1.2.0",
3134
      "_view_name": "LayoutView",
3135
      "align_content": null,
3136
      "align_items": null,
3137
      "align_self": null,
3138
      "border": null,
3139
      "bottom": null,
3140
      "display": null,
3141
      "flex": null,
3142
      "flex_flow": null,
3143
      "grid_area": null,
3144
      "grid_auto_columns": null,
3145
      "grid_auto_flow": null,
3146
      "grid_auto_rows": null,
3147
      "grid_column": null,
3148
      "grid_gap": null,
3149
      "grid_row": null,
3150
      "grid_template_areas": null,
3151
      "grid_template_columns": null,
3152
      "grid_template_rows": null,
3153
      "height": null,
3154
      "justify_content": null,
3155
      "justify_items": null,
3156
      "left": null,
3157
      "margin": null,
3158
      "max_height": null,
3159
      "max_width": null,
3160
      "min_height": null,
3161
      "min_width": null,
3162
      "object_fit": null,
3163
      "object_position": null,
3164
      "order": null,
3165
      "overflow": null,
3166
      "overflow_x": null,
3167
      "overflow_y": null,
3168
      "padding": null,
3169
      "right": null,
3170
      "top": null,
3171
      "visibility": null,
3172
      "width": null
3173
     }
3174
    },
3175
    "b24783445f0c44188633222c832e2b16": {
3176
     "model_module": "@jupyter-widgets/controls",
3177
     "model_module_version": "1.5.0",
3178
     "model_name": "DescriptionStyleModel",
3179
     "state": {
3180
      "_model_module": "@jupyter-widgets/controls",
3181
      "_model_module_version": "1.5.0",
3182
      "_model_name": "DescriptionStyleModel",
3183
      "_view_count": null,
3184
      "_view_module": "@jupyter-widgets/base",
3185
      "_view_module_version": "1.2.0",
3186
      "_view_name": "StyleView",
3187
      "description_width": ""
3188
     }
3189
    },
3190
    "b386ec5c08ee44f1833d80d8f06cf0e6": {
3191
     "model_module": "@jupyter-widgets/controls",
3192
     "model_module_version": "1.5.0",
3193
     "model_name": "DescriptionStyleModel",
3194
     "state": {
3195
      "_model_module": "@jupyter-widgets/controls",
3196
      "_model_module_version": "1.5.0",
3197
      "_model_name": "DescriptionStyleModel",
3198
      "_view_count": null,
3199
      "_view_module": "@jupyter-widgets/base",
3200
      "_view_module_version": "1.2.0",
3201
      "_view_name": "StyleView",
3202
      "description_width": ""
3203
     }
3204
    },
3205
    "b5025c4c7f4145e987f30197173e9aeb": {
3206
     "model_module": "@jupyter-widgets/controls",
3207
     "model_module_version": "1.5.0",
3208
     "model_name": "HTMLModel",
3209
     "state": {
3210
      "_dom_classes": [],
3211
      "_model_module": "@jupyter-widgets/controls",
3212
      "_model_module_version": "1.5.0",
3213
      "_model_name": "HTMLModel",
3214
      "_view_count": null,
3215
      "_view_module": "@jupyter-widgets/controls",
3216
      "_view_module_version": "1.5.0",
3217
      "_view_name": "HTMLView",
3218
      "description": "",
3219
      "description_tooltip": null,
3220
      "layout": "IPY_MODEL_eef1da12d4244427b8e517533c78122d",
3221
      "placeholder": "​",
3222
      "style": "IPY_MODEL_4ae75c50f11b4fcc8c6d6a030ff901e6",
3223
      "value": "special_tokens_map.json: 100%"
3224
     }
3225
    },
3226
    "b7c5f656a9e14e96bb250813588c8262": {
3227
     "model_module": "@jupyter-widgets/base",
3228
     "model_module_version": "1.2.0",
3229
     "model_name": "LayoutModel",
3230
     "state": {
3231
      "_model_module": "@jupyter-widgets/base",
3232
      "_model_module_version": "1.2.0",
3233
      "_model_name": "LayoutModel",
3234
      "_view_count": null,
3235
      "_view_module": "@jupyter-widgets/base",
3236
      "_view_module_version": "1.2.0",
3237
      "_view_name": "LayoutView",
3238
      "align_content": null,
3239
      "align_items": null,
3240
      "align_self": null,
3241
      "border": null,
3242
      "bottom": null,
3243
      "display": null,
3244
      "flex": null,
3245
      "flex_flow": null,
3246
      "grid_area": null,
3247
      "grid_auto_columns": null,
3248
      "grid_auto_flow": null,
3249
      "grid_auto_rows": null,
3250
      "grid_column": null,
3251
      "grid_gap": null,
3252
      "grid_row": null,
3253
      "grid_template_areas": null,
3254
      "grid_template_columns": null,
3255
      "grid_template_rows": null,
3256
      "height": null,
3257
      "justify_content": null,
3258
      "justify_items": null,
3259
      "left": null,
3260
      "margin": null,
3261
      "max_height": null,
3262
      "max_width": null,
3263
      "min_height": null,
3264
      "min_width": null,
3265
      "object_fit": null,
3266
      "object_position": null,
3267
      "order": null,
3268
      "overflow": null,
3269
      "overflow_x": null,
3270
      "overflow_y": null,
3271
      "padding": null,
3272
      "right": null,
3273
      "top": null,
3274
      "visibility": null,
3275
      "width": null
3276
     }
3277
    },
3278
    "b7e54838ca064bf48ea82af0ea5d1d20": {
3279
     "model_module": "@jupyter-widgets/base",
3280
     "model_module_version": "1.2.0",
3281
     "model_name": "LayoutModel",
3282
     "state": {
3283
      "_model_module": "@jupyter-widgets/base",
3284
      "_model_module_version": "1.2.0",
3285
      "_model_name": "LayoutModel",
3286
      "_view_count": null,
3287
      "_view_module": "@jupyter-widgets/base",
3288
      "_view_module_version": "1.2.0",
3289
      "_view_name": "LayoutView",
3290
      "align_content": null,
3291
      "align_items": null,
3292
      "align_self": null,
3293
      "border": null,
3294
      "bottom": null,
3295
      "display": null,
3296
      "flex": null,
3297
      "flex_flow": null,
3298
      "grid_area": null,
3299
      "grid_auto_columns": null,
3300
      "grid_auto_flow": null,
3301
      "grid_auto_rows": null,
3302
      "grid_column": null,
3303
      "grid_gap": null,
3304
      "grid_row": null,
3305
      "grid_template_areas": null,
3306
      "grid_template_columns": null,
3307
      "grid_template_rows": null,
3308
      "height": null,
3309
      "justify_content": null,
3310
      "justify_items": null,
3311
      "left": null,
3312
      "margin": null,
3313
      "max_height": null,
3314
      "max_width": null,
3315
      "min_height": null,
3316
      "min_width": null,
3317
      "object_fit": null,
3318
      "object_position": null,
3319
      "order": null,
3320
      "overflow": null,
3321
      "overflow_x": null,
3322
      "overflow_y": null,
3323
      "padding": null,
3324
      "right": null,
3325
      "top": null,
3326
      "visibility": null,
3327
      "width": null
3328
     }
3329
    },
3330
    "b8535a45f2f8400986ac913bc2f27c7d": {
3331
     "model_module": "@jupyter-widgets/controls",
3332
     "model_module_version": "1.5.0",
3333
     "model_name": "HTMLModel",
3334
     "state": {
3335
      "_dom_classes": [],
3336
      "_model_module": "@jupyter-widgets/controls",
3337
      "_model_module_version": "1.5.0",
3338
      "_model_name": "HTMLModel",
3339
      "_view_count": null,
3340
      "_view_module": "@jupyter-widgets/controls",
3341
      "_view_module_version": "1.5.0",
3342
      "_view_name": "HTMLView",
3343
      "description": "",
3344
      "description_tooltip": null,
3345
      "layout": "IPY_MODEL_5f7262dbbbb14fa8b240409c0ddd210c",
3346
      "placeholder": "​",
3347
      "style": "IPY_MODEL_fbde4292b94e464899becf798abfe598",
3348
      "value": " 127k/127k [00:00<00:00, 2.24MB/s]"
3349
     }
3350
    },
3351
    "b91e0b11e4084e86a0d63fd8a65eba21": {
3352
     "model_module": "@jupyter-widgets/controls",
3353
     "model_module_version": "1.5.0",
3354
     "model_name": "HBoxModel",
3355
     "state": {
3356
      "_dom_classes": [],
3357
      "_model_module": "@jupyter-widgets/controls",
3358
      "_model_module_version": "1.5.0",
3359
      "_model_name": "HBoxModel",
3360
      "_view_count": null,
3361
      "_view_module": "@jupyter-widgets/controls",
3362
      "_view_module_version": "1.5.0",
3363
      "_view_name": "HBoxView",
3364
      "box_style": "",
3365
      "children": [
3366
       "IPY_MODEL_4e957edcca3f42a0a1aa4a42028b34b5",
3367
       "IPY_MODEL_6141b5fc12d64ba39384e7671064367b",
3368
       "IPY_MODEL_95fbe85b69a549cfb14ef69099c63c4c"
3369
      ],
3370
      "layout": "IPY_MODEL_e397c24a0f4a4153bb94b3676d496a58"
3371
     }
3372
    },
3373
    "bc46a70706bb4541b4aa5d3092a2e710": {
3374
     "model_module": "@jupyter-widgets/controls",
3375
     "model_module_version": "1.5.0",
3376
     "model_name": "FloatProgressModel",
3377
     "state": {
3378
      "_dom_classes": [],
3379
      "_model_module": "@jupyter-widgets/controls",
3380
      "_model_module_version": "1.5.0",
3381
      "_model_name": "FloatProgressModel",
3382
      "_view_count": null,
3383
      "_view_module": "@jupyter-widgets/controls",
3384
      "_view_module_version": "1.5.0",
3385
      "_view_name": "ProgressView",
3386
      "bar_style": "success",
3387
      "description": "",
3388
      "description_tooltip": null,
3389
      "layout": "IPY_MODEL_1243eb4a12014a448916560cc953a833",
3390
      "max": 772,
3391
      "min": 0,
3392
      "orientation": "horizontal",
3393
      "style": "IPY_MODEL_7162fa2ea2db484292ab8e6661e736cc",
3394
      "value": 772
3395
     }
3396
    },
3397
    "c079c52f99974fb7ba51684dc9020868": {
3398
     "model_module": "@jupyter-widgets/controls",
3399
     "model_module_version": "1.5.0",
3400
     "model_name": "HTMLModel",
3401
     "state": {
3402
      "_dom_classes": [],
3403
      "_model_module": "@jupyter-widgets/controls",
3404
      "_model_module_version": "1.5.0",
3405
      "_model_name": "HTMLModel",
3406
      "_view_count": null,
3407
      "_view_module": "@jupyter-widgets/controls",
3408
      "_view_module_version": "1.5.0",
3409
      "_view_name": "HTMLView",
3410
      "description": "",
3411
      "description_tooltip": null,
3412
      "layout": "IPY_MODEL_11dd6ad7a71a4b658a4b43b8c23b8540",
3413
      "placeholder": "​",
3414
      "style": "IPY_MODEL_30536fb6fc8344e5b557e06771aa4408",
3415
      "value": "tokenizer_config.json: 100%"
3416
     }
3417
    },
3418
    "c090549dcb2a4c94993e00291dd18f5c": {
3419
     "model_module": "@jupyter-widgets/base",
3420
     "model_module_version": "1.2.0",
3421
     "model_name": "LayoutModel",
3422
     "state": {
3423
      "_model_module": "@jupyter-widgets/base",
3424
      "_model_module_version": "1.2.0",
3425
      "_model_name": "LayoutModel",
3426
      "_view_count": null,
3427
      "_view_module": "@jupyter-widgets/base",
3428
      "_view_module_version": "1.2.0",
3429
      "_view_name": "LayoutView",
3430
      "align_content": null,
3431
      "align_items": null,
3432
      "align_self": null,
3433
      "border": null,
3434
      "bottom": null,
3435
      "display": null,
3436
      "flex": null,
3437
      "flex_flow": null,
3438
      "grid_area": null,
3439
      "grid_auto_columns": null,
3440
      "grid_auto_flow": null,
3441
      "grid_auto_rows": null,
3442
      "grid_column": null,
3443
      "grid_gap": null,
3444
      "grid_row": null,
3445
      "grid_template_areas": null,
3446
      "grid_template_columns": null,
3447
      "grid_template_rows": null,
3448
      "height": null,
3449
      "justify_content": null,
3450
      "justify_items": null,
3451
      "left": null,
3452
      "margin": null,
3453
      "max_height": null,
3454
      "max_width": null,
3455
      "min_height": null,
3456
      "min_width": null,
3457
      "object_fit": null,
3458
      "object_position": null,
3459
      "order": null,
3460
      "overflow": null,
3461
      "overflow_x": null,
3462
      "overflow_y": null,
3463
      "padding": null,
3464
      "right": null,
3465
      "top": null,
3466
      "visibility": null,
3467
      "width": null
3468
     }
3469
    },
3470
    "c0bfbd4c1500490696794eb1bf725f3c": {
3471
     "model_module": "@jupyter-widgets/controls",
3472
     "model_module_version": "1.5.0",
3473
     "model_name": "DescriptionStyleModel",
3474
     "state": {
3475
      "_model_module": "@jupyter-widgets/controls",
3476
      "_model_module_version": "1.5.0",
3477
      "_model_name": "DescriptionStyleModel",
3478
      "_view_count": null,
3479
      "_view_module": "@jupyter-widgets/base",
3480
      "_view_module_version": "1.2.0",
3481
      "_view_name": "StyleView",
3482
      "description_width": ""
3483
     }
3484
    },
3485
    "c21b941735604fbc836f7f53ef5d3b68": {
3486
     "model_module": "@jupyter-widgets/base",
3487
     "model_module_version": "1.2.0",
3488
     "model_name": "LayoutModel",
3489
     "state": {
3490
      "_model_module": "@jupyter-widgets/base",
3491
      "_model_module_version": "1.2.0",
3492
      "_model_name": "LayoutModel",
3493
      "_view_count": null,
3494
      "_view_module": "@jupyter-widgets/base",
3495
      "_view_module_version": "1.2.0",
3496
      "_view_name": "LayoutView",
3497
      "align_content": null,
3498
      "align_items": null,
3499
      "align_self": null,
3500
      "border": null,
3501
      "bottom": null,
3502
      "display": null,
3503
      "flex": null,
3504
      "flex_flow": null,
3505
      "grid_area": null,
3506
      "grid_auto_columns": null,
3507
      "grid_auto_flow": null,
3508
      "grid_auto_rows": null,
3509
      "grid_column": null,
3510
      "grid_gap": null,
3511
      "grid_row": null,
3512
      "grid_template_areas": null,
3513
      "grid_template_columns": null,
3514
      "grid_template_rows": null,
3515
      "height": null,
3516
      "justify_content": null,
3517
      "justify_items": null,
3518
      "left": null,
3519
      "margin": null,
3520
      "max_height": null,
3521
      "max_width": null,
3522
      "min_height": null,
3523
      "min_width": null,
3524
      "object_fit": null,
3525
      "object_position": null,
3526
      "order": null,
3527
      "overflow": null,
3528
      "overflow_x": null,
3529
      "overflow_y": null,
3530
      "padding": null,
3531
      "right": null,
3532
      "top": null,
3533
      "visibility": null,
3534
      "width": null
3535
     }
3536
    },
3537
    "c290d1db43f54a7fa842c867a83c307b": {
3538
     "model_module": "@jupyter-widgets/controls",
3539
     "model_module_version": "1.5.0",
3540
     "model_name": "HTMLModel",
3541
     "state": {
3542
      "_dom_classes": [],
3543
      "_model_module": "@jupyter-widgets/controls",
3544
      "_model_module_version": "1.5.0",
3545
      "_model_name": "HTMLModel",
3546
      "_view_count": null,
3547
      "_view_module": "@jupyter-widgets/controls",
3548
      "_view_module_version": "1.5.0",
3549
      "_view_name": "HTMLView",
3550
      "description": "",
3551
      "description_tooltip": null,
3552
      "layout": "IPY_MODEL_f9bc2d11f0164e0c81bf797a9c217311",
3553
      "placeholder": "​",
3554
      "style": "IPY_MODEL_7f3b564be0764374a90b059e9108ae4b",
3555
      "value": "generation_config.json: 100%"
3556
     }
3557
    },
3558
    "c86258719deb4f9ab7260ba3f6764c0e": {
3559
     "model_module": "@jupyter-widgets/base",
3560
     "model_module_version": "1.2.0",
3561
     "model_name": "LayoutModel",
3562
     "state": {
3563
      "_model_module": "@jupyter-widgets/base",
3564
      "_model_module_version": "1.2.0",
3565
      "_model_name": "LayoutModel",
3566
      "_view_count": null,
3567
      "_view_module": "@jupyter-widgets/base",
3568
      "_view_module_version": "1.2.0",
3569
      "_view_name": "LayoutView",
3570
      "align_content": null,
3571
      "align_items": null,
3572
      "align_self": null,
3573
      "border": null,
3574
      "bottom": null,
3575
      "display": null,
3576
      "flex": null,
3577
      "flex_flow": null,
3578
      "grid_area": null,
3579
      "grid_auto_columns": null,
3580
      "grid_auto_flow": null,
3581
      "grid_auto_rows": null,
3582
      "grid_column": null,
3583
      "grid_gap": null,
3584
      "grid_row": null,
3585
      "grid_template_areas": null,
3586
      "grid_template_columns": null,
3587
      "grid_template_rows": null,
3588
      "height": null,
3589
      "justify_content": null,
3590
      "justify_items": null,
3591
      "left": null,
3592
      "margin": null,
3593
      "max_height": null,
3594
      "max_width": null,
3595
      "min_height": null,
3596
      "min_width": null,
3597
      "object_fit": null,
3598
      "object_position": null,
3599
      "order": null,
3600
      "overflow": null,
3601
      "overflow_x": null,
3602
      "overflow_y": null,
3603
      "padding": null,
3604
      "right": null,
3605
      "top": null,
3606
      "visibility": null,
3607
      "width": null
3608
     }
3609
    },
3610
    "c919b9323ca942d0af3e4d09c0a2c7fc": {
3611
     "model_module": "@jupyter-widgets/controls",
3612
     "model_module_version": "1.5.0",
3613
     "model_name": "ProgressStyleModel",
3614
     "state": {
3615
      "_model_module": "@jupyter-widgets/controls",
3616
      "_model_module_version": "1.5.0",
3617
      "_model_name": "ProgressStyleModel",
3618
      "_view_count": null,
3619
      "_view_module": "@jupyter-widgets/base",
3620
      "_view_module_version": "1.2.0",
3621
      "_view_name": "StyleView",
3622
      "bar_color": null,
3623
      "description_width": ""
3624
     }
3625
    },
3626
    "ca27338c07fb4f28b34c43253918af67": {
3627
     "model_module": "@jupyter-widgets/controls",
3628
     "model_module_version": "1.5.0",
3629
     "model_name": "DescriptionStyleModel",
3630
     "state": {
3631
      "_model_module": "@jupyter-widgets/controls",
3632
      "_model_module_version": "1.5.0",
3633
      "_model_name": "DescriptionStyleModel",
3634
      "_view_count": null,
3635
      "_view_module": "@jupyter-widgets/base",
3636
      "_view_module_version": "1.2.0",
3637
      "_view_name": "StyleView",
3638
      "description_width": ""
3639
     }
3640
    },
3641
    "cc58dc90382549c180073149d16d3bfe": {
3642
     "model_module": "@jupyter-widgets/controls",
3643
     "model_module_version": "1.5.0",
3644
     "model_name": "ProgressStyleModel",
3645
     "state": {
3646
      "_model_module": "@jupyter-widgets/controls",
3647
      "_model_module_version": "1.5.0",
3648
      "_model_name": "ProgressStyleModel",
3649
      "_view_count": null,
3650
      "_view_module": "@jupyter-widgets/base",
3651
      "_view_module_version": "1.2.0",
3652
      "_view_name": "StyleView",
3653
      "bar_color": null,
3654
      "description_width": ""
3655
     }
3656
    },
3657
    "d0d8d4274bac444ca279d0a612a41ac4": {
3658
     "model_module": "@jupyter-widgets/controls",
3659
     "model_module_version": "1.5.0",
3660
     "model_name": "DescriptionStyleModel",
3661
     "state": {
3662
      "_model_module": "@jupyter-widgets/controls",
3663
      "_model_module_version": "1.5.0",
3664
      "_model_name": "DescriptionStyleModel",
3665
      "_view_count": null,
3666
      "_view_module": "@jupyter-widgets/base",
3667
      "_view_module_version": "1.2.0",
3668
      "_view_name": "StyleView",
3669
      "description_width": ""
3670
     }
3671
    },
3672
    "d355d78ab0f84305986f1f6011639c31": {
3673
     "model_module": "@jupyter-widgets/controls",
3674
     "model_module_version": "1.5.0",
3675
     "model_name": "FloatProgressModel",
3676
     "state": {
3677
      "_dom_classes": [],
3678
      "_model_module": "@jupyter-widgets/controls",
3679
      "_model_module_version": "1.5.0",
3680
      "_model_name": "FloatProgressModel",
3681
      "_view_count": null,
3682
      "_view_module": "@jupyter-widgets/controls",
3683
      "_view_module_version": "1.5.0",
3684
      "_view_name": "ProgressView",
3685
      "bar_style": "success",
3686
      "description": "",
3687
      "description_tooltip": null,
3688
      "layout": "IPY_MODEL_dd5778ac53414a3296524470673cf078",
3689
      "max": 1467,
3690
      "min": 0,
3691
      "orientation": "horizontal",
3692
      "style": "IPY_MODEL_171eea3f8abd4a949f3dae61a68c8ef1",
3693
      "value": 1467
3694
     }
3695
    },
3696
    "d3dbb6ba73ab4c98a463e31d02d95c1c": {
3697
     "model_module": "@jupyter-widgets/controls",
3698
     "model_module_version": "1.5.0",
3699
     "model_name": "HTMLModel",
3700
     "state": {
3701
      "_dom_classes": [],
3702
      "_model_module": "@jupyter-widgets/controls",
3703
      "_model_module_version": "1.5.0",
3704
      "_model_name": "HTMLModel",
3705
      "_view_count": null,
3706
      "_view_module": "@jupyter-widgets/controls",
3707
      "_view_module_version": "1.5.0",
3708
      "_view_name": "HTMLView",
3709
      "description": "",
3710
      "description_tooltip": null,
3711
      "layout": "IPY_MODEL_4d40dbe61d9f4b4fb15b0a3a611afc42",
3712
      "placeholder": "​",
3713
      "style": "IPY_MODEL_a536bb5024be45df8f7c636765bf1dd3",
3714
      "value": "vocab.json: 100%"
3715
     }
3716
    },
3717
    "d47d04ae9e3342fd81280c3ec0b984f7": {
3718
     "model_module": "@jupyter-widgets/base",
3719
     "model_module_version": "1.2.0",
3720
     "model_name": "LayoutModel",
3721
     "state": {
3722
      "_model_module": "@jupyter-widgets/base",
3723
      "_model_module_version": "1.2.0",
3724
      "_model_name": "LayoutModel",
3725
      "_view_count": null,
3726
      "_view_module": "@jupyter-widgets/base",
3727
      "_view_module_version": "1.2.0",
3728
      "_view_name": "LayoutView",
3729
      "align_content": null,
3730
      "align_items": null,
3731
      "align_self": null,
3732
      "border": null,
3733
      "bottom": null,
3734
      "display": null,
3735
      "flex": null,
3736
      "flex_flow": null,
3737
      "grid_area": null,
3738
      "grid_auto_columns": null,
3739
      "grid_auto_flow": null,
3740
      "grid_auto_rows": null,
3741
      "grid_column": null,
3742
      "grid_gap": null,
3743
      "grid_row": null,
3744
      "grid_template_areas": null,
3745
      "grid_template_columns": null,
3746
      "grid_template_rows": null,
3747
      "height": null,
3748
      "justify_content": null,
3749
      "justify_items": null,
3750
      "left": null,
3751
      "margin": null,
3752
      "max_height": null,
3753
      "max_width": null,
3754
      "min_height": null,
3755
      "min_width": null,
3756
      "object_fit": null,
3757
      "object_position": null,
3758
      "order": null,
3759
      "overflow": null,
3760
      "overflow_x": null,
3761
      "overflow_y": null,
3762
      "padding": null,
3763
      "right": null,
3764
      "top": null,
3765
      "visibility": null,
3766
      "width": null
3767
     }
3768
    },
3769
    "d673fe93a1c6487ba1371a736cf975ef": {
3770
     "model_module": "@jupyter-widgets/controls",
3771
     "model_module_version": "1.5.0",
3772
     "model_name": "FloatProgressModel",
3773
     "state": {
3774
      "_dom_classes": [],
3775
      "_model_module": "@jupyter-widgets/controls",
3776
      "_model_module_version": "1.5.0",
3777
      "_model_name": "FloatProgressModel",
3778
      "_view_count": null,
3779
      "_view_module": "@jupyter-widgets/controls",
3780
      "_view_module_version": "1.5.0",
3781
      "_view_name": "ProgressView",
3782
      "bar_style": "success",
3783
      "description": "",
3784
      "description_tooltip": null,
3785
      "layout": "IPY_MODEL_e04a5b827e994eb6a416c7c579a2c5e9",
3786
      "max": 72,
3787
      "min": 0,
3788
      "orientation": "horizontal",
3789
      "style": "IPY_MODEL_af1f9ed1a0464042acb7899728c3d58c",
3790
      "value": 72
3791
     }
3792
    },
3793
    "d8154d6697c64a4ab429e6c93b2a1c12": {
3794
     "model_module": "@jupyter-widgets/base",
3795
     "model_module_version": "1.2.0",
3796
     "model_name": "LayoutModel",
3797
     "state": {
3798
      "_model_module": "@jupyter-widgets/base",
3799
      "_model_module_version": "1.2.0",
3800
      "_model_name": "LayoutModel",
3801
      "_view_count": null,
3802
      "_view_module": "@jupyter-widgets/base",
3803
      "_view_module_version": "1.2.0",
3804
      "_view_name": "LayoutView",
3805
      "align_content": null,
3806
      "align_items": null,
3807
      "align_self": null,
3808
      "border": null,
3809
      "bottom": null,
3810
      "display": null,
3811
      "flex": null,
3812
      "flex_flow": null,
3813
      "grid_area": null,
3814
      "grid_auto_columns": null,
3815
      "grid_auto_flow": null,
3816
      "grid_auto_rows": null,
3817
      "grid_column": null,
3818
      "grid_gap": null,
3819
      "grid_row": null,
3820
      "grid_template_areas": null,
3821
      "grid_template_columns": null,
3822
      "grid_template_rows": null,
3823
      "height": null,
3824
      "justify_content": null,
3825
      "justify_items": null,
3826
      "left": null,
3827
      "margin": null,
3828
      "max_height": null,
3829
      "max_width": null,
3830
      "min_height": null,
3831
      "min_width": null,
3832
      "object_fit": null,
3833
      "object_position": null,
3834
      "order": null,
3835
      "overflow": null,
3836
      "overflow_x": null,
3837
      "overflow_y": null,
3838
      "padding": null,
3839
      "right": null,
3840
      "top": null,
3841
      "visibility": null,
3842
      "width": null
3843
     }
3844
    },
3845
    "d8c20e4105434f58aa921a7a29056c6a": {
3846
     "model_module": "@jupyter-widgets/controls",
3847
     "model_module_version": "1.5.0",
3848
     "model_name": "HBoxModel",
3849
     "state": {
3850
      "_dom_classes": [],
3851
      "_model_module": "@jupyter-widgets/controls",
3852
      "_model_module_version": "1.5.0",
3853
      "_model_name": "HBoxModel",
3854
      "_view_count": null,
3855
      "_view_module": "@jupyter-widgets/controls",
3856
      "_view_module_version": "1.5.0",
3857
      "_view_name": "HBoxView",
3858
      "box_style": "",
3859
      "children": [
3860
       "IPY_MODEL_b5025c4c7f4145e987f30197173e9aeb",
3861
       "IPY_MODEL_bc46a70706bb4541b4aa5d3092a2e710",
3862
       "IPY_MODEL_2dbd11bec15b46f6a065cede6d92ff86"
3863
      ],
3864
      "layout": "IPY_MODEL_f8d486114f08487ea37738b4b307a230"
3865
     }
3866
    },
3867
    "daeb2a1614a0420b87d218f99fad678a": {
3868
     "model_module": "@jupyter-widgets/controls",
3869
     "model_module_version": "1.5.0",
3870
     "model_name": "HTMLModel",
3871
     "state": {
3872
      "_dom_classes": [],
3873
      "_model_module": "@jupyter-widgets/controls",
3874
      "_model_module_version": "1.5.0",
3875
      "_model_name": "HTMLModel",
3876
      "_view_count": null,
3877
      "_view_module": "@jupyter-widgets/controls",
3878
      "_view_module_version": "1.5.0",
3879
      "_view_name": "HTMLView",
3880
      "description": "",
3881
      "description_tooltip": null,
3882
      "layout": "IPY_MODEL_b7e54838ca064bf48ea82af0ea5d1d20",
3883
      "placeholder": "​",
3884
      "style": "IPY_MODEL_b386ec5c08ee44f1833d80d8f06cf0e6",
3885
      "value": "tokenizer_config.json: 100%"
3886
     }
3887
    },
3888
    "dd5778ac53414a3296524470673cf078": {
3889
     "model_module": "@jupyter-widgets/base",
3890
     "model_module_version": "1.2.0",
3891
     "model_name": "LayoutModel",
3892
     "state": {
3893
      "_model_module": "@jupyter-widgets/base",
3894
      "_model_module_version": "1.2.0",
3895
      "_model_name": "LayoutModel",
3896
      "_view_count": null,
3897
      "_view_module": "@jupyter-widgets/base",
3898
      "_view_module_version": "1.2.0",
3899
      "_view_name": "LayoutView",
3900
      "align_content": null,
3901
      "align_items": null,
3902
      "align_self": null,
3903
      "border": null,
3904
      "bottom": null,
3905
      "display": null,
3906
      "flex": null,
3907
      "flex_flow": null,
3908
      "grid_area": null,
3909
      "grid_auto_columns": null,
3910
      "grid_auto_flow": null,
3911
      "grid_auto_rows": null,
3912
      "grid_column": null,
3913
      "grid_gap": null,
3914
      "grid_row": null,
3915
      "grid_template_areas": null,
3916
      "grid_template_columns": null,
3917
      "grid_template_rows": null,
3918
      "height": null,
3919
      "justify_content": null,
3920
      "justify_items": null,
3921
      "left": null,
3922
      "margin": null,
3923
      "max_height": null,
3924
      "max_width": null,
3925
      "min_height": null,
3926
      "min_width": null,
3927
      "object_fit": null,
3928
      "object_position": null,
3929
      "order": null,
3930
      "overflow": null,
3931
      "overflow_x": null,
3932
      "overflow_y": null,
3933
      "padding": null,
3934
      "right": null,
3935
      "top": null,
3936
      "visibility": null,
3937
      "width": null
3938
     }
3939
    },
3940
    "de1a2ad2f84e4efa915b795f6dbcacca": {
3941
     "model_module": "@jupyter-widgets/controls",
3942
     "model_module_version": "1.5.0",
3943
     "model_name": "HTMLModel",
3944
     "state": {
3945
      "_dom_classes": [],
3946
      "_model_module": "@jupyter-widgets/controls",
3947
      "_model_module_version": "1.5.0",
3948
      "_model_name": "HTMLModel",
3949
      "_view_count": null,
3950
      "_view_module": "@jupyter-widgets/controls",
3951
      "_view_module_version": "1.5.0",
3952
      "_view_name": "HTMLView",
3953
      "description": "",
3954
      "description_tooltip": null,
3955
      "layout": "IPY_MODEL_65eac83c51a24e5285a14332ba883057",
3956
      "placeholder": "​",
3957
      "style": "IPY_MODEL_9835e1c26702495e8f372a5a123c0a30",
3958
      "value": "tokenizer.json: 100%"
3959
     }
3960
    },
3961
    "debcedb280614b89aff83ea258a37cae": {
3962
     "model_module": "@jupyter-widgets/base",
3963
     "model_module_version": "1.2.0",
3964
     "model_name": "LayoutModel",
3965
     "state": {
3966
      "_model_module": "@jupyter-widgets/base",
3967
      "_model_module_version": "1.2.0",
3968
      "_model_name": "LayoutModel",
3969
      "_view_count": null,
3970
      "_view_module": "@jupyter-widgets/base",
3971
      "_view_module_version": "1.2.0",
3972
      "_view_name": "LayoutView",
3973
      "align_content": null,
3974
      "align_items": null,
3975
      "align_self": null,
3976
      "border": null,
3977
      "bottom": null,
3978
      "display": null,
3979
      "flex": null,
3980
      "flex_flow": null,
3981
      "grid_area": null,
3982
      "grid_auto_columns": null,
3983
      "grid_auto_flow": null,
3984
      "grid_auto_rows": null,
3985
      "grid_column": null,
3986
      "grid_gap": null,
3987
      "grid_row": null,
3988
      "grid_template_areas": null,
3989
      "grid_template_columns": null,
3990
      "grid_template_rows": null,
3991
      "height": null,
3992
      "justify_content": null,
3993
      "justify_items": null,
3994
      "left": null,
3995
      "margin": null,
3996
      "max_height": null,
3997
      "max_width": null,
3998
      "min_height": null,
3999
      "min_width": null,
4000
      "object_fit": null,
4001
      "object_position": null,
4002
      "order": null,
4003
      "overflow": null,
4004
      "overflow_x": null,
4005
      "overflow_y": null,
4006
      "padding": null,
4007
      "right": null,
4008
      "top": null,
4009
      "visibility": null,
4010
      "width": null
4011
     }
4012
    },
4013
    "e04a5b827e994eb6a416c7c579a2c5e9": {
4014
     "model_module": "@jupyter-widgets/base",
4015
     "model_module_version": "1.2.0",
4016
     "model_name": "LayoutModel",
4017
     "state": {
4018
      "_model_module": "@jupyter-widgets/base",
4019
      "_model_module_version": "1.2.0",
4020
      "_model_name": "LayoutModel",
4021
      "_view_count": null,
4022
      "_view_module": "@jupyter-widgets/base",
4023
      "_view_module_version": "1.2.0",
4024
      "_view_name": "LayoutView",
4025
      "align_content": null,
4026
      "align_items": null,
4027
      "align_self": null,
4028
      "border": null,
4029
      "bottom": null,
4030
      "display": null,
4031
      "flex": null,
4032
      "flex_flow": null,
4033
      "grid_area": null,
4034
      "grid_auto_columns": null,
4035
      "grid_auto_flow": null,
4036
      "grid_auto_rows": null,
4037
      "grid_column": null,
4038
      "grid_gap": null,
4039
      "grid_row": null,
4040
      "grid_template_areas": null,
4041
      "grid_template_columns": null,
4042
      "grid_template_rows": null,
4043
      "height": null,
4044
      "justify_content": null,
4045
      "justify_items": null,
4046
      "left": null,
4047
      "margin": null,
4048
      "max_height": null,
4049
      "max_width": null,
4050
      "min_height": null,
4051
      "min_width": null,
4052
      "object_fit": null,
4053
      "object_position": null,
4054
      "order": null,
4055
      "overflow": null,
4056
      "overflow_x": null,
4057
      "overflow_y": null,
4058
      "padding": null,
4059
      "right": null,
4060
      "top": null,
4061
      "visibility": null,
4062
      "width": null
4063
     }
4064
    },
4065
    "e1f671dbdd434669bccd04ae4b219c0b": {
4066
     "model_module": "@jupyter-widgets/controls",
4067
     "model_module_version": "1.5.0",
4068
     "model_name": "FloatProgressModel",
4069
     "state": {
4070
      "_dom_classes": [],
4071
      "_model_module": "@jupyter-widgets/controls",
4072
      "_model_module_version": "1.5.0",
4073
      "_model_name": "FloatProgressModel",
4074
      "_view_count": null,
4075
      "_view_module": "@jupyter-widgets/controls",
4076
      "_view_module_version": "1.5.0",
4077
      "_view_name": "ProgressView",
4078
      "bar_style": "success",
4079
      "description": "",
4080
      "description_tooltip": null,
4081
      "layout": "IPY_MODEL_583cd7f93f15499cb82100e387260340",
4082
      "max": 1795303,
4083
      "min": 0,
4084
      "orientation": "horizontal",
4085
      "style": "IPY_MODEL_9c4ef2376344430297d3edb0141dfdf8",
4086
      "value": 1795303
4087
     }
4088
    },
4089
    "e2f350d6d9334022a92ad7779c3b2f32": {
4090
     "model_module": "@jupyter-widgets/controls",
4091
     "model_module_version": "1.5.0",
4092
     "model_name": "DescriptionStyleModel",
4093
     "state": {
4094
      "_model_module": "@jupyter-widgets/controls",
4095
      "_model_module_version": "1.5.0",
4096
      "_model_name": "DescriptionStyleModel",
4097
      "_view_count": null,
4098
      "_view_module": "@jupyter-widgets/base",
4099
      "_view_module_version": "1.2.0",
4100
      "_view_name": "StyleView",
4101
      "description_width": ""
4102
     }
4103
    },
4104
    "e34c27a5193a4f559f97b8b79afe6ca8": {
4105
     "model_module": "@jupyter-widgets/base",
4106
     "model_module_version": "1.2.0",
4107
     "model_name": "LayoutModel",
4108
     "state": {
4109
      "_model_module": "@jupyter-widgets/base",
4110
      "_model_module_version": "1.2.0",
4111
      "_model_name": "LayoutModel",
4112
      "_view_count": null,
4113
      "_view_module": "@jupyter-widgets/base",
4114
      "_view_module_version": "1.2.0",
4115
      "_view_name": "LayoutView",
4116
      "align_content": null,
4117
      "align_items": null,
4118
      "align_self": null,
4119
      "border": null,
4120
      "bottom": null,
4121
      "display": null,
4122
      "flex": null,
4123
      "flex_flow": null,
4124
      "grid_area": null,
4125
      "grid_auto_columns": null,
4126
      "grid_auto_flow": null,
4127
      "grid_auto_rows": null,
4128
      "grid_column": null,
4129
      "grid_gap": null,
4130
      "grid_row": null,
4131
      "grid_template_areas": null,
4132
      "grid_template_columns": null,
4133
      "grid_template_rows": null,
4134
      "height": null,
4135
      "justify_content": null,
4136
      "justify_items": null,
4137
      "left": null,
4138
      "margin": null,
4139
      "max_height": null,
4140
      "max_width": null,
4141
      "min_height": null,
4142
      "min_width": null,
4143
      "object_fit": null,
4144
      "object_position": null,
4145
      "order": null,
4146
      "overflow": null,
4147
      "overflow_x": null,
4148
      "overflow_y": null,
4149
      "padding": null,
4150
      "right": null,
4151
      "top": null,
4152
      "visibility": null,
4153
      "width": null
4154
     }
4155
    },
4156
    "e397c24a0f4a4153bb94b3676d496a58": {
4157
     "model_module": "@jupyter-widgets/base",
4158
     "model_module_version": "1.2.0",
4159
     "model_name": "LayoutModel",
4160
     "state": {
4161
      "_model_module": "@jupyter-widgets/base",
4162
      "_model_module_version": "1.2.0",
4163
      "_model_name": "LayoutModel",
4164
      "_view_count": null,
4165
      "_view_module": "@jupyter-widgets/base",
4166
      "_view_module_version": "1.2.0",
4167
      "_view_name": "LayoutView",
4168
      "align_content": null,
4169
      "align_items": null,
4170
      "align_self": null,
4171
      "border": null,
4172
      "bottom": null,
4173
      "display": null,
4174
      "flex": null,
4175
      "flex_flow": null,
4176
      "grid_area": null,
4177
      "grid_auto_columns": null,
4178
      "grid_auto_flow": null,
4179
      "grid_auto_rows": null,
4180
      "grid_column": null,
4181
      "grid_gap": null,
4182
      "grid_row": null,
4183
      "grid_template_areas": null,
4184
      "grid_template_columns": null,
4185
      "grid_template_rows": null,
4186
      "height": null,
4187
      "justify_content": null,
4188
      "justify_items": null,
4189
      "left": null,
4190
      "margin": null,
4191
      "max_height": null,
4192
      "max_width": null,
4193
      "min_height": null,
4194
      "min_width": null,
4195
      "object_fit": null,
4196
      "object_position": null,
4197
      "order": null,
4198
      "overflow": null,
4199
      "overflow_x": null,
4200
      "overflow_y": null,
4201
      "padding": null,
4202
      "right": null,
4203
      "top": null,
4204
      "visibility": null,
4205
      "width": null
4206
     }
4207
    },
4208
    "e46eb1e5eb084ca998dd5826d54fbc8e": {
4209
     "model_module": "@jupyter-widgets/controls",
4210
     "model_module_version": "1.5.0",
4211
     "model_name": "HTMLModel",
4212
     "state": {
4213
      "_dom_classes": [],
4214
      "_model_module": "@jupyter-widgets/controls",
4215
      "_model_module_version": "1.5.0",
4216
      "_model_name": "HTMLModel",
4217
      "_view_count": null,
4218
      "_view_module": "@jupyter-widgets/controls",
4219
      "_view_module_version": "1.5.0",
4220
      "_view_name": "HTMLView",
4221
      "description": "",
4222
      "description_tooltip": null,
4223
      "layout": "IPY_MODEL_1fc1f4992fa14a60bccaee9dc593a96b",
4224
      "placeholder": "​",
4225
      "style": "IPY_MODEL_d0d8d4274bac444ca279d0a612a41ac4",
4226
      "value": " 1.57k/1.57k [00:00<00:00, 24.2kB/s]"
4227
     }
4228
    },
4229
    "e55beb09972f4fd1b98f6a76e765c3d8": {
4230
     "model_module": "@jupyter-widgets/base",
4231
     "model_module_version": "1.2.0",
4232
     "model_name": "LayoutModel",
4233
     "state": {
4234
      "_model_module": "@jupyter-widgets/base",
4235
      "_model_module_version": "1.2.0",
4236
      "_model_name": "LayoutModel",
4237
      "_view_count": null,
4238
      "_view_module": "@jupyter-widgets/base",
4239
      "_view_module_version": "1.2.0",
4240
      "_view_name": "LayoutView",
4241
      "align_content": null,
4242
      "align_items": null,
4243
      "align_self": null,
4244
      "border": null,
4245
      "bottom": null,
4246
      "display": null,
4247
      "flex": null,
4248
      "flex_flow": null,
4249
      "grid_area": null,
4250
      "grid_auto_columns": null,
4251
      "grid_auto_flow": null,
4252
      "grid_auto_rows": null,
4253
      "grid_column": null,
4254
      "grid_gap": null,
4255
      "grid_row": null,
4256
      "grid_template_areas": null,
4257
      "grid_template_columns": null,
4258
      "grid_template_rows": null,
4259
      "height": null,
4260
      "justify_content": null,
4261
      "justify_items": null,
4262
      "left": null,
4263
      "margin": null,
4264
      "max_height": null,
4265
      "max_width": null,
4266
      "min_height": null,
4267
      "min_width": null,
4268
      "object_fit": null,
4269
      "object_position": null,
4270
      "order": null,
4271
      "overflow": null,
4272
      "overflow_x": null,
4273
      "overflow_y": null,
4274
      "padding": null,
4275
      "right": null,
4276
      "top": null,
4277
      "visibility": null,
4278
      "width": null
4279
     }
4280
    },
4281
    "e5f3050fe1874189b451640c04e14e76": {
4282
     "model_module": "@jupyter-widgets/controls",
4283
     "model_module_version": "1.5.0",
4284
     "model_name": "DescriptionStyleModel",
4285
     "state": {
4286
      "_model_module": "@jupyter-widgets/controls",
4287
      "_model_module_version": "1.5.0",
4288
      "_model_name": "DescriptionStyleModel",
4289
      "_view_count": null,
4290
      "_view_module": "@jupyter-widgets/base",
4291
      "_view_module_version": "1.2.0",
4292
      "_view_name": "StyleView",
4293
      "description_width": ""
4294
     }
4295
    },
4296
    "e6456786bde04d44bbaa8ea32f1f7029": {
4297
     "model_module": "@jupyter-widgets/base",
4298
     "model_module_version": "1.2.0",
4299
     "model_name": "LayoutModel",
4300
     "state": {
4301
      "_model_module": "@jupyter-widgets/base",
4302
      "_model_module_version": "1.2.0",
4303
      "_model_name": "LayoutModel",
4304
      "_view_count": null,
4305
      "_view_module": "@jupyter-widgets/base",
4306
      "_view_module_version": "1.2.0",
4307
      "_view_name": "LayoutView",
4308
      "align_content": null,
4309
      "align_items": null,
4310
      "align_self": null,
4311
      "border": null,
4312
      "bottom": null,
4313
      "display": null,
4314
      "flex": null,
4315
      "flex_flow": null,
4316
      "grid_area": null,
4317
      "grid_auto_columns": null,
4318
      "grid_auto_flow": null,
4319
      "grid_auto_rows": null,
4320
      "grid_column": null,
4321
      "grid_gap": null,
4322
      "grid_row": null,
4323
      "grid_template_areas": null,
4324
      "grid_template_columns": null,
4325
      "grid_template_rows": null,
4326
      "height": null,
4327
      "justify_content": null,
4328
      "justify_items": null,
4329
      "left": null,
4330
      "margin": null,
4331
      "max_height": null,
4332
      "max_width": null,
4333
      "min_height": null,
4334
      "min_width": null,
4335
      "object_fit": null,
4336
      "object_position": null,
4337
      "order": null,
4338
      "overflow": null,
4339
      "overflow_x": null,
4340
      "overflow_y": null,
4341
      "padding": null,
4342
      "right": null,
4343
      "top": null,
4344
      "visibility": null,
4345
      "width": null
4346
     }
4347
    },
4348
    "e6e073856eb44a819c579a634e4aebca": {
4349
     "model_module": "@jupyter-widgets/controls",
4350
     "model_module_version": "1.5.0",
4351
     "model_name": "HBoxModel",
4352
     "state": {
4353
      "_dom_classes": [],
4354
      "_model_module": "@jupyter-widgets/controls",
4355
      "_model_module_version": "1.5.0",
4356
      "_model_name": "HBoxModel",
4357
      "_view_count": null,
4358
      "_view_module": "@jupyter-widgets/controls",
4359
      "_view_module_version": "1.5.0",
4360
      "_view_name": "HBoxView",
4361
      "box_style": "",
4362
      "children": [
4363
       "IPY_MODEL_63aac006e86b46e28a6c47d132bb81e0",
4364
       "IPY_MODEL_15138e8fcb7f4ecca0726a0efde0aec4",
4365
       "IPY_MODEL_e46eb1e5eb084ca998dd5826d54fbc8e"
4366
      ],
4367
      "layout": "IPY_MODEL_504dedf42c6342438c95605f781ef034"
4368
     }
4369
    },
4370
    "e93a50457e1e4b87aae6a38b88501b18": {
4371
     "model_module": "@jupyter-widgets/controls",
4372
     "model_module_version": "1.5.0",
4373
     "model_name": "HTMLModel",
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_d47d04ae9e3342fd81280c3ec0b984f7",
4386
      "placeholder": "​",
4387
      "style": "IPY_MODEL_417c541a6fed4d0883be77c22965d171",
4388
      "value": " 493k/493k [00:00<00:00, 7.86MB/s]"
4389
     }
4390
    },
4391
    "ea3e0df3f60c44e5addd8fe77d9afdac": {
4392
     "model_module": "@jupyter-widgets/controls",
4393
     "model_module_version": "1.5.0",
4394
     "model_name": "FloatProgressModel",
4395
     "state": {
4396
      "_dom_classes": [],
4397
      "_model_module": "@jupyter-widgets/controls",
4398
      "_model_module_version": "1.5.0",
4399
      "_model_name": "FloatProgressModel",
4400
      "_view_count": null,
4401
      "_view_module": "@jupyter-widgets/controls",
4402
      "_view_module_version": "1.5.0",
4403
      "_view_name": "ProgressView",
4404
      "bar_style": "success",
4405
      "description": "",
4406
      "description_tooltip": null,
4407
      "layout": "IPY_MODEL_4f4b603d723849a0a4d7b713cf267f06",
4408
      "max": 347,
4409
      "min": 0,
4410
      "orientation": "horizontal",
4411
      "style": "IPY_MODEL_76fbafb1de36478a8b59c02820f58549",
4412
      "value": 347
4413
     }
4414
    },
4415
    "ec8e2371e6584e218fb8e5f92de1b0d7": {
4416
     "model_module": "@jupyter-widgets/base",
4417
     "model_module_version": "1.2.0",
4418
     "model_name": "LayoutModel",
4419
     "state": {
4420
      "_model_module": "@jupyter-widgets/base",
4421
      "_model_module_version": "1.2.0",
4422
      "_model_name": "LayoutModel",
4423
      "_view_count": null,
4424
      "_view_module": "@jupyter-widgets/base",
4425
      "_view_module_version": "1.2.0",
4426
      "_view_name": "LayoutView",
4427
      "align_content": null,
4428
      "align_items": null,
4429
      "align_self": null,
4430
      "border": null,
4431
      "bottom": null,
4432
      "display": null,
4433
      "flex": null,
4434
      "flex_flow": null,
4435
      "grid_area": null,
4436
      "grid_auto_columns": null,
4437
      "grid_auto_flow": null,
4438
      "grid_auto_rows": null,
4439
      "grid_column": null,
4440
      "grid_gap": null,
4441
      "grid_row": null,
4442
      "grid_template_areas": null,
4443
      "grid_template_columns": null,
4444
      "grid_template_rows": null,
4445
      "height": null,
4446
      "justify_content": null,
4447
      "justify_items": null,
4448
      "left": null,
4449
      "margin": null,
4450
      "max_height": null,
4451
      "max_width": null,
4452
      "min_height": null,
4453
      "min_width": null,
4454
      "object_fit": null,
4455
      "object_position": null,
4456
      "order": null,
4457
      "overflow": null,
4458
      "overflow_x": null,
4459
      "overflow_y": null,
4460
      "padding": null,
4461
      "right": null,
4462
      "top": null,
4463
      "visibility": null,
4464
      "width": null
4465
     }
4466
    },
4467
    "ecda349c0d80416f8614e17a5a9ee964": {
4468
     "model_module": "@jupyter-widgets/controls",
4469
     "model_module_version": "1.5.0",
4470
     "model_name": "DescriptionStyleModel",
4471
     "state": {
4472
      "_model_module": "@jupyter-widgets/controls",
4473
      "_model_module_version": "1.5.0",
4474
      "_model_name": "DescriptionStyleModel",
4475
      "_view_count": null,
4476
      "_view_module": "@jupyter-widgets/base",
4477
      "_view_module_version": "1.2.0",
4478
      "_view_name": "StyleView",
4479
      "description_width": ""
4480
     }
4481
    },
4482
    "eef1da12d4244427b8e517533c78122d": {
4483
     "model_module": "@jupyter-widgets/base",
4484
     "model_module_version": "1.2.0",
4485
     "model_name": "LayoutModel",
4486
     "state": {
4487
      "_model_module": "@jupyter-widgets/base",
4488
      "_model_module_version": "1.2.0",
4489
      "_model_name": "LayoutModel",
4490
      "_view_count": null,
4491
      "_view_module": "@jupyter-widgets/base",
4492
      "_view_module_version": "1.2.0",
4493
      "_view_name": "LayoutView",
4494
      "align_content": null,
4495
      "align_items": null,
4496
      "align_self": null,
4497
      "border": null,
4498
      "bottom": null,
4499
      "display": null,
4500
      "flex": null,
4501
      "flex_flow": null,
4502
      "grid_area": null,
4503
      "grid_auto_columns": null,
4504
      "grid_auto_flow": null,
4505
      "grid_auto_rows": null,
4506
      "grid_column": null,
4507
      "grid_gap": null,
4508
      "grid_row": null,
4509
      "grid_template_areas": null,
4510
      "grid_template_columns": null,
4511
      "grid_template_rows": null,
4512
      "height": null,
4513
      "justify_content": null,
4514
      "justify_items": null,
4515
      "left": null,
4516
      "margin": null,
4517
      "max_height": null,
4518
      "max_width": null,
4519
      "min_height": null,
4520
      "min_width": null,
4521
      "object_fit": null,
4522
      "object_position": null,
4523
      "order": null,
4524
      "overflow": null,
4525
      "overflow_x": null,
4526
      "overflow_y": null,
4527
      "padding": null,
4528
      "right": null,
4529
      "top": null,
4530
      "visibility": null,
4531
      "width": null
4532
     }
4533
    },
4534
    "f2473b54d1b141668c6c786ce1f82293": {
4535
     "model_module": "@jupyter-widgets/controls",
4536
     "model_module_version": "1.5.0",
4537
     "model_name": "DescriptionStyleModel",
4538
     "state": {
4539
      "_model_module": "@jupyter-widgets/controls",
4540
      "_model_module_version": "1.5.0",
4541
      "_model_name": "DescriptionStyleModel",
4542
      "_view_count": null,
4543
      "_view_module": "@jupyter-widgets/base",
4544
      "_view_module_version": "1.2.0",
4545
      "_view_name": "StyleView",
4546
      "description_width": ""
4547
     }
4548
    },
4549
    "f60776b8884b40f0b6f45ecd74db4d40": {
4550
     "model_module": "@jupyter-widgets/controls",
4551
     "model_module_version": "1.5.0",
4552
     "model_name": "ProgressStyleModel",
4553
     "state": {
4554
      "_model_module": "@jupyter-widgets/controls",
4555
      "_model_module_version": "1.5.0",
4556
      "_model_name": "ProgressStyleModel",
4557
      "_view_count": null,
4558
      "_view_module": "@jupyter-widgets/base",
4559
      "_view_module_version": "1.2.0",
4560
      "_view_name": "StyleView",
4561
      "bar_color": null,
4562
      "description_width": ""
4563
     }
4564
    },
4565
    "f7deae62ecb74badbf681e7fa5337938": {
4566
     "model_module": "@jupyter-widgets/controls",
4567
     "model_module_version": "1.5.0",
4568
     "model_name": "HTMLModel",
4569
     "state": {
4570
      "_dom_classes": [],
4571
      "_model_module": "@jupyter-widgets/controls",
4572
      "_model_module_version": "1.5.0",
4573
      "_model_name": "HTMLModel",
4574
      "_view_count": null,
4575
      "_view_module": "@jupyter-widgets/controls",
4576
      "_view_module_version": "1.5.0",
4577
      "_view_name": "HTMLView",
4578
      "description": "",
4579
      "description_tooltip": null,
4580
      "layout": "IPY_MODEL_0bdbd16a1a324d0e9544f0b222b22f58",
4581
      "placeholder": "​",
4582
      "style": "IPY_MODEL_7e165f1afa19471e8d389f2c614a1a27",
4583
      "value": "added_tokens.json: 100%"
4584
     }
4585
    },
4586
    "f85918578cea472c900772971e8eb150": {
4587
     "model_module": "@jupyter-widgets/base",
4588
     "model_module_version": "1.2.0",
4589
     "model_name": "LayoutModel",
4590
     "state": {
4591
      "_model_module": "@jupyter-widgets/base",
4592
      "_model_module_version": "1.2.0",
4593
      "_model_name": "LayoutModel",
4594
      "_view_count": null,
4595
      "_view_module": "@jupyter-widgets/base",
4596
      "_view_module_version": "1.2.0",
4597
      "_view_name": "LayoutView",
4598
      "align_content": null,
4599
      "align_items": null,
4600
      "align_self": null,
4601
      "border": null,
4602
      "bottom": null,
4603
      "display": null,
4604
      "flex": null,
4605
      "flex_flow": null,
4606
      "grid_area": null,
4607
      "grid_auto_columns": null,
4608
      "grid_auto_flow": null,
4609
      "grid_auto_rows": null,
4610
      "grid_column": null,
4611
      "grid_gap": null,
4612
      "grid_row": null,
4613
      "grid_template_areas": null,
4614
      "grid_template_columns": null,
4615
      "grid_template_rows": null,
4616
      "height": null,
4617
      "justify_content": null,
4618
      "justify_items": null,
4619
      "left": null,
4620
      "margin": null,
4621
      "max_height": null,
4622
      "max_width": null,
4623
      "min_height": null,
4624
      "min_width": null,
4625
      "object_fit": null,
4626
      "object_position": null,
4627
      "order": null,
4628
      "overflow": null,
4629
      "overflow_x": null,
4630
      "overflow_y": null,
4631
      "padding": null,
4632
      "right": null,
4633
      "top": null,
4634
      "visibility": null,
4635
      "width": null
4636
     }
4637
    },
4638
    "f8d486114f08487ea37738b4b307a230": {
4639
     "model_module": "@jupyter-widgets/base",
4640
     "model_module_version": "1.2.0",
4641
     "model_name": "LayoutModel",
4642
     "state": {
4643
      "_model_module": "@jupyter-widgets/base",
4644
      "_model_module_version": "1.2.0",
4645
      "_model_name": "LayoutModel",
4646
      "_view_count": null,
4647
      "_view_module": "@jupyter-widgets/base",
4648
      "_view_module_version": "1.2.0",
4649
      "_view_name": "LayoutView",
4650
      "align_content": null,
4651
      "align_items": null,
4652
      "align_self": null,
4653
      "border": null,
4654
      "bottom": null,
4655
      "display": null,
4656
      "flex": null,
4657
      "flex_flow": null,
4658
      "grid_area": null,
4659
      "grid_auto_columns": null,
4660
      "grid_auto_flow": null,
4661
      "grid_auto_rows": null,
4662
      "grid_column": null,
4663
      "grid_gap": null,
4664
      "grid_row": null,
4665
      "grid_template_areas": null,
4666
      "grid_template_columns": null,
4667
      "grid_template_rows": null,
4668
      "height": null,
4669
      "justify_content": null,
4670
      "justify_items": null,
4671
      "left": null,
4672
      "margin": null,
4673
      "max_height": null,
4674
      "max_width": null,
4675
      "min_height": null,
4676
      "min_width": null,
4677
      "object_fit": null,
4678
      "object_position": null,
4679
      "order": null,
4680
      "overflow": null,
4681
      "overflow_x": null,
4682
      "overflow_y": null,
4683
      "padding": null,
4684
      "right": null,
4685
      "top": null,
4686
      "visibility": null,
4687
      "width": null
4688
     }
4689
    },
4690
    "f9bc2d11f0164e0c81bf797a9c217311": {
4691
     "model_module": "@jupyter-widgets/base",
4692
     "model_module_version": "1.2.0",
4693
     "model_name": "LayoutModel",
4694
     "state": {
4695
      "_model_module": "@jupyter-widgets/base",
4696
      "_model_module_version": "1.2.0",
4697
      "_model_name": "LayoutModel",
4698
      "_view_count": null,
4699
      "_view_module": "@jupyter-widgets/base",
4700
      "_view_module_version": "1.2.0",
4701
      "_view_name": "LayoutView",
4702
      "align_content": null,
4703
      "align_items": null,
4704
      "align_self": null,
4705
      "border": null,
4706
      "bottom": null,
4707
      "display": null,
4708
      "flex": null,
4709
      "flex_flow": null,
4710
      "grid_area": null,
4711
      "grid_auto_columns": null,
4712
      "grid_auto_flow": null,
4713
      "grid_auto_rows": null,
4714
      "grid_column": null,
4715
      "grid_gap": null,
4716
      "grid_row": null,
4717
      "grid_template_areas": null,
4718
      "grid_template_columns": null,
4719
      "grid_template_rows": null,
4720
      "height": null,
4721
      "justify_content": null,
4722
      "justify_items": null,
4723
      "left": null,
4724
      "margin": null,
4725
      "max_height": null,
4726
      "max_width": null,
4727
      "min_height": null,
4728
      "min_width": null,
4729
      "object_fit": null,
4730
      "object_position": null,
4731
      "order": null,
4732
      "overflow": null,
4733
      "overflow_x": null,
4734
      "overflow_y": null,
4735
      "padding": null,
4736
      "right": null,
4737
      "top": null,
4738
      "visibility": null,
4739
      "width": null
4740
     }
4741
    },
4742
    "fbde4292b94e464899becf798abfe598": {
4743
     "model_module": "@jupyter-widgets/controls",
4744
     "model_module_version": "1.5.0",
4745
     "model_name": "DescriptionStyleModel",
4746
     "state": {
4747
      "_model_module": "@jupyter-widgets/controls",
4748
      "_model_module_version": "1.5.0",
4749
      "_model_name": "DescriptionStyleModel",
4750
      "_view_count": null,
4751
      "_view_module": "@jupyter-widgets/base",
4752
      "_view_module_version": "1.2.0",
4753
      "_view_name": "StyleView",
4754
      "description_width": ""
4755
     }
4756
    },
4757
    "ff19d544bdbc4d2aa302835bf8962526": {
4758
     "model_module": "@jupyter-widgets/controls",
4759
     "model_module_version": "1.5.0",
4760
     "model_name": "HBoxModel",
4761
     "state": {
4762
      "_dom_classes": [],
4763
      "_model_module": "@jupyter-widgets/controls",
4764
      "_model_module_version": "1.5.0",
4765
      "_model_name": "HBoxModel",
4766
      "_view_count": null,
4767
      "_view_module": "@jupyter-widgets/controls",
4768
      "_view_module_version": "1.5.0",
4769
      "_view_name": "HBoxView",
4770
      "box_style": "",
4771
      "children": [
4772
       "IPY_MODEL_34159407c6b04e01a9e34ca9f2bda1e5",
4773
       "IPY_MODEL_2e20b43c72e54205bffa8f2e8aac4c44",
4774
       "IPY_MODEL_493778bf95e645d8b303a4f7eeda436a"
4775
      ],
4776
      "layout": "IPY_MODEL_e6456786bde04d44bbaa8ea32f1f7029"
4777
     }
4778
    }
4779
   }
4780
  }
4781
 },
4782
 "nbformat": 4,
4783
 "nbformat_minor": 4
4784
}
4785

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

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

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

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