Switch to unified view

a b/LLM-Zero-shot_approach/generate_annotations.ipynb
1
{
2
  "cells": [
3
    {
4
      "cell_type": "markdown",
5
      "metadata": {
6
        "id": "view-in-github",
7
        "colab_type": "text"
8
      },
9
      "source": [
10
        "<a href=\"https://colab.research.google.com/github/jlopetegui98/NER-ClinicalTrials-Elegibility-Criteria/blob/main/LLM-Zero-shot_approach/generate_annotations.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
11
      ]
12
    },
13
    {
14
      "cell_type": "markdown",
15
      "metadata": {
16
        "id": "h2dngSJ8J1h8"
17
      },
18
      "source": [
19
        "### Annotations for the CHIA dataset using mistral-7B"
20
      ]
21
    },
22
    {
23
      "cell_type": "code",
24
      "execution_count": 1,
25
      "metadata": {
26
        "colab": {
27
          "base_uri": "https://localhost:8080/"
28
        },
29
        "id": "y6X9ot2qJ1h-",
30
        "outputId": "7cd81d9a-d713-4ecb-c84a-8b452bb05301"
31
      },
32
      "outputs": [
33
        {
34
          "output_type": "stream",
35
          "name": "stdout",
36
          "text": [
37
            "  Installing build dependencies ... \u001b[?25l\u001b[?25hdone\n",
38
            "  Getting requirements to build wheel ... \u001b[?25l\u001b[?25hdone\n",
39
            "  Preparing metadata (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n",
40
            "  Building wheel for transformers (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n",
41
            "\u001b[2K     \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m105.0/105.0 MB\u001b[0m \u001b[31m8.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
42
            "\u001b[?25h  Installing build dependencies ... \u001b[?25l\u001b[?25hdone\n",
43
            "  Getting requirements to build wheel ... \u001b[?25l\u001b[?25hdone\n",
44
            "  Preparing metadata (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n",
45
            "\u001b[2K     \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m279.7/279.7 kB\u001b[0m \u001b[31m6.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
46
            "\u001b[?25h  Building wheel for peft (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n",
47
            "  Installing build dependencies ... \u001b[?25l\u001b[?25hdone\n",
48
            "  Getting requirements to build wheel ... \u001b[?25l\u001b[?25hdone\n",
49
            "  Preparing metadata (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n",
50
            "  Building wheel for accelerate (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n"
51
          ]
52
        }
53
      ],
54
      "source": [
55
        "!pip install -q -U git+https://github.com/huggingface/transformers.git\n",
56
        "!pip install -q -U bitsandbytes\n",
57
        "!pip install -q -U git+https://github.com/huggingface/peft.git\n",
58
        "!pip install -q -U git+https://github.com/huggingface/accelerate.git"
59
      ]
60
    },
61
    {
62
      "cell_type": "code",
63
      "source": [
64
        "from google.colab import drive\n",
65
        "drive.mount('/content/drive')"
66
      ],
67
      "metadata": {
68
        "colab": {
69
          "base_uri": "https://localhost:8080/"
70
        },
71
        "id": "fEbMdJLLKCwX",
72
        "outputId": "23871af7-1e63-4d17-9b84-c659be597f11"
73
      },
74
      "execution_count": 2,
75
      "outputs": [
76
        {
77
          "output_type": "stream",
78
          "name": "stdout",
79
          "text": [
80
            "Mounted at /content/drive\n"
81
          ]
82
        }
83
      ]
84
    },
85
    {
86
      "cell_type": "code",
87
      "source": [
88
        "from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig, TextGenerationPipeline\n",
89
        "import torch\n",
90
        "import os\n",
91
        "from utils import *"
92
      ],
93
      "metadata": {
94
        "id": "yxdJkCNNKaem"
95
      },
96
      "execution_count": 7,
97
      "outputs": []
98
    },
99
    {
100
      "cell_type": "code",
101
      "source": [
102
        "model_name = \"mistralai/Mistral-7B-v0.1\""
103
      ],
104
      "metadata": {
105
        "id": "12ZiQ6jMKhTU"
106
      },
107
      "execution_count": 4,
108
      "outputs": []
109
    },
110
    {
111
      "cell_type": "code",
112
      "source": [
113
        "# Load base model(Mistral 7B)\n",
114
        "bnb_config = BitsAndBytesConfig(\n",
115
        "    load_in_4bit= True,\n",
116
        "    bnb_4bit_quant_type= \"nf4\",\n",
117
        "    bnb_4bit_compute_dtype= torch.bfloat16,\n",
118
        "    bnb_4bit_use_double_quant= False,\n",
119
        ")\n",
120
        "model = AutoModelForCausalLM.from_pretrained(\n",
121
        "   model_name,\n",
122
        "    quantization_config=bnb_config,\n",
123
        "    device_map={\"\": 0}\n",
124
        ")"
125
      ],
126
      "metadata": {
127
        "colab": {
128
          "base_uri": "https://localhost:8080/",
129
          "height": 368,
130
          "referenced_widgets": [
131
            "623351d84656420faa70ae4889536f78",
132
            "6e8db672b53f4ca3b65e861a8977e7f1",
133
            "c626b5aa49ba4a8ab4364d4a299baa1f",
134
            "d9a04c47e5aa4ccdafcff20d276bbbb1",
135
            "8d274858eef7465b8cb32b2556f65afb",
136
            "8665bd0d3d4d425786bbb64bdc57a36b",
137
            "ee3d9951387948089cd9360d9a9871ba",
138
            "b6269fd3f5324daa812c212b368ff0ad",
139
            "55b69b66ea004214b3d66af7843a7c99",
140
            "01e179ba9b6d4989bb908266137fab42",
141
            "51aacda23c324a9db4730410989c33e8",
142
            "f23ed67b7458460a86bc4c010542675a",
143
            "df6e7f48e48647cf9085a5143f7afd3c",
144
            "fca53ddc2b39498087fb8d76d4ccba83",
145
            "495a05fbb4984421897ee2beea733c63",
146
            "4290143e54344798bc7c79236338da91",
147
            "f3df546b544a4086a93e835f52f1374a",
148
            "044f3fdb95394ed4909e52d58761f60a",
149
            "44a254651d6d4d2f96627de75bc5e7dd",
150
            "a86ef33bb25644a5a313f1387bfab6e0",
151
            "39ea441013f94dd1b79abca45f7aa4e5",
152
            "f10d1774aa89441e9bbf7bd48633eeea",
153
            "2382371f37a74c86888483132a686039",
154
            "62c9043d2fb949998931c38ef6a84d66",
155
            "f549d20a326b4eeaa9e8f8694afc0f9d",
156
            "e6c39c8ec6d147e2b4376bf0a442ed1b",
157
            "8f2db049d8d24fc0b804a451b97f38b1",
158
            "cf2f5777aaa943218c01002705ad49a4",
159
            "a1d585f864ec4f96a1facb1c8fd1f228",
160
            "32fbb6cf09ae4485b5e800d739a11ef9",
161
            "4e98e5b117bd4a90866bc9bf8d397365",
162
            "6fa04422b4f2473ebed8cc51bfb8bbf9",
163
            "ebe4f4facd81490aaae3d9df1f84ef7a",
164
            "d5f20cf2d1354e54916a41d01958d663",
165
            "3f28950c5a1b433fad59457f3bfd0986",
166
            "060d6ac506cb40d4a01202a1f43773a0",
167
            "6718ab690cbd471a80b04df221148ccb",
168
            "d0a90bebc6ba424193998f6aa2871161",
169
            "630bbfdad2514be7bd6480610ed94aae",
170
            "61ced3c82e3d4299ac96838fee912cf7",
171
            "6b6cad15707a4fc4b9a6798d25ab0fec",
172
            "922a346ec1c443ce8c5082015e3b771d",
173
            "d54b32439cf5402b8f0a5a2a71d23ffb",
174
            "7867c50a7a46448a85e733a08a14074d",
175
            "ad18e4416984499686863f51bc363a75",
176
            "7c623e92720348ad8be453d2f9c8c10e",
177
            "67f9b070448648698e34ba6dce2140e4",
178
            "98c3b7b7483d40a7a92de523fa972dd0",
179
            "9ee6cee7294d45cb955f70fb1d7ec588",
180
            "c4040a2d270a4738b80e25d49db207d4",
181
            "c49a18d373fa4949b3be1c9ab15e99fd",
182
            "84d4c96405f945a58f3cbb6bd524ba08",
183
            "6f3ae0267d954f26bc961f6d645f2b9a",
184
            "972e6dc2d6e54a948e5e4690cc9b93ab",
185
            "d7db41f69a624e79bc57b15e9d2f9696",
186
            "91eebcebff2847dd923301c7722e2c99",
187
            "271682b7217b4205b43dfd89e801efe2",
188
            "b25a6da9b9cb48ebb01d8f1e8577cbd6",
189
            "1590c52cba7a41388b30be59b8225a3d",
190
            "aeb3fb1572034a84927e8df385126915",
191
            "a35ab30440bc40b7a6cb4262d6289c2c",
192
            "548e397f8e3a47a9bcaa7ba2c1f4ae48",
193
            "56fb139dd067428696acafeb2a9ee5e2",
194
            "7462a3aac96d442e9d6b93af57dc0be9",
195
            "4621e0960953441c9012a40de237e416",
196
            "4517f87fdc9e44aa9b8426d11613e76a",
197
            "d08ce15ed7ad4efb828b74f915784ec3",
198
            "7a99db0f716544448a19210f8690f9b0",
199
            "4ae5f91a5ddb47e6ad710dbba9e80187",
200
            "7d800a2659d44bec977835eb3db4326e",
201
            "81d1f7011258462699d12ee5b0a70a5d",
202
            "206fc938b0334936adb194547cfb7cc5",
203
            "72abe3b940ab473c82ba6b903530af65",
204
            "e56a79bf5c7f440c978478e88a26e0f2",
205
            "9c77ea2e33874b9e81d0d397a4662b43",
206
            "8772b2b1134a45bba71734c4400fa2c0",
207
            "8c914abb6ac5489e9c13046b66a7dd5d"
208
          ]
209
        },
210
        "id": "-lQ8vJ4sKiNh",
211
        "outputId": "0e0cbe37-d56f-4cef-da0d-c38fc06682f9"
212
      },
213
      "execution_count": 5,
214
      "outputs": [
215
        {
216
          "output_type": "stream",
217
          "name": "stderr",
218
          "text": [
219
            "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_token.py:88: UserWarning: \n",
220
            "The secret `HF_TOKEN` does not exist in your Colab secrets.\n",
221
            "To authenticate with the Hugging Face Hub, create a token in your settings tab (https://huggingface.co/settings/tokens), set it as secret in your Google Colab and restart your session.\n",
222
            "You will be able to reuse this secret in all of your notebooks.\n",
223
            "Please note that authentication is recommended but still optional to access public models or datasets.\n",
224
            "  warnings.warn(\n"
225
          ]
226
        },
227
        {
228
          "output_type": "display_data",
229
          "data": {
230
            "text/plain": [
231
              "config.json:   0%|          | 0.00/571 [00:00<?, ?B/s]"
232
            ],
233
            "application/vnd.jupyter.widget-view+json": {
234
              "version_major": 2,
235
              "version_minor": 0,
236
              "model_id": "623351d84656420faa70ae4889536f78"
237
            }
238
          },
239
          "metadata": {}
240
        },
241
        {
242
          "output_type": "display_data",
243
          "data": {
244
            "text/plain": [
245
              "model.safetensors.index.json:   0%|          | 0.00/25.1k [00:00<?, ?B/s]"
246
            ],
247
            "application/vnd.jupyter.widget-view+json": {
248
              "version_major": 2,
249
              "version_minor": 0,
250
              "model_id": "f23ed67b7458460a86bc4c010542675a"
251
            }
252
          },
253
          "metadata": {}
254
        },
255
        {
256
          "output_type": "display_data",
257
          "data": {
258
            "text/plain": [
259
              "Downloading shards:   0%|          | 0/2 [00:00<?, ?it/s]"
260
            ],
261
            "application/vnd.jupyter.widget-view+json": {
262
              "version_major": 2,
263
              "version_minor": 0,
264
              "model_id": "2382371f37a74c86888483132a686039"
265
            }
266
          },
267
          "metadata": {}
268
        },
269
        {
270
          "output_type": "display_data",
271
          "data": {
272
            "text/plain": [
273
              "model-00001-of-00002.safetensors:   0%|          | 0.00/9.94G [00:00<?, ?B/s]"
274
            ],
275
            "application/vnd.jupyter.widget-view+json": {
276
              "version_major": 2,
277
              "version_minor": 0,
278
              "model_id": "d5f20cf2d1354e54916a41d01958d663"
279
            }
280
          },
281
          "metadata": {}
282
        },
283
        {
284
          "output_type": "display_data",
285
          "data": {
286
            "text/plain": [
287
              "model-00002-of-00002.safetensors:   0%|          | 0.00/4.54G [00:00<?, ?B/s]"
288
            ],
289
            "application/vnd.jupyter.widget-view+json": {
290
              "version_major": 2,
291
              "version_minor": 0,
292
              "model_id": "ad18e4416984499686863f51bc363a75"
293
            }
294
          },
295
          "metadata": {}
296
        },
297
        {
298
          "output_type": "display_data",
299
          "data": {
300
            "text/plain": [
301
              "Loading checkpoint shards:   0%|          | 0/2 [00:00<?, ?it/s]"
302
            ],
303
            "application/vnd.jupyter.widget-view+json": {
304
              "version_major": 2,
305
              "version_minor": 0,
306
              "model_id": "91eebcebff2847dd923301c7722e2c99"
307
            }
308
          },
309
          "metadata": {}
310
        },
311
        {
312
          "output_type": "display_data",
313
          "data": {
314
            "text/plain": [
315
              "generation_config.json:   0%|          | 0.00/116 [00:00<?, ?B/s]"
316
            ],
317
            "application/vnd.jupyter.widget-view+json": {
318
              "version_major": 2,
319
              "version_minor": 0,
320
              "model_id": "d08ce15ed7ad4efb828b74f915784ec3"
321
            }
322
          },
323
          "metadata": {}
324
        }
325
      ]
326
    },
327
    {
328
      "cell_type": "code",
329
      "source": [
330
        "# import tokenizer for mistral-7B\n",
331
        "tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)\n",
332
        "tokenizer.padding_side = 'left'\n",
333
        "tokenizer.pad_token = tokenizer.eos_token\n",
334
        "tokenizer.add_eos_token = True\n",
335
        "tokenizer.add_bos_token, tokenizer.add_eos_token"
336
      ],
337
      "metadata": {
338
        "colab": {
339
          "base_uri": "https://localhost:8080/",
340
          "height": 163,
341
          "referenced_widgets": [
342
            "8ccdaa53fd4d44f6bebcc8b1daf613a7",
343
            "b9cdb24813514050adf15d3af2b9589b",
344
            "edb1863c025142908849cd8ce20505b1",
345
            "c971ffea2e4743b493ec3680261e0ff0",
346
            "551e6c40db8f430c880a57a3ab405f5b",
347
            "81630071ac784f72a7a0b27f8cf50ffa",
348
            "ff26ca039b0847a29502b2a73205ca21",
349
            "717f84e23b4147419344cdedb6be4fd1",
350
            "184db58f8d5241e7b2faf1e1bba700e0",
351
            "107fd3f5b956480197b8795ac5129734",
352
            "369133b2991542d68ef645538f353788",
353
            "24d9c53181ce49c2b91760bc386366b5",
354
            "ee1412a55f3d40e191083b2776650ac5",
355
            "a9cdbf1e2cd5499c9c9804eb55bc7da4",
356
            "a556a867bc7742f9b6810e6f63d216d7",
357
            "d1845140817b4118955f0c538e9a778e",
358
            "84891cf5bd124727bea560163935294a",
359
            "508144a592e54e2f9eb970a3418cbe2b",
360
            "775d8e4eb8fe4758b2b876d5538ad8eb",
361
            "a7c91bd72b65470db54b8461fba77a38",
362
            "e0a3b0edba7a4e54bb6ab892c7171113",
363
            "ae43479a1daa49d19d6d544accdc3124",
364
            "d7cdc98280e04394a80ba62d7b883cc2",
365
            "3fed97d8526d4a6195dc8c70c99eb3a3",
366
            "871a8f47d8bf4c0e957f575788a4a05a",
367
            "0c868554bdf64a43bf31571fe5a4e80a",
368
            "29618477f8e146c78ad6aaa4b61f6882",
369
            "0b789d08ba774ea89b9d79e3fec96fe4",
370
            "f74b8384258d4eba8ea0be83fcbd8a2b",
371
            "f68dd87f254a4136971047e6804964a2",
372
            "ead331636cf745d7b17a5d764939f5ed",
373
            "0388b415e4ba4afa8b7add0398afb5c1",
374
            "223b2343afde4167a53283fb6e9869c9",
375
            "e358fec2f71c418caac8d129444abcee",
376
            "f324f86a03924d538d4e394cb71219fb",
377
            "f6aad53167db4c4f90f560b28b35d7f0",
378
            "fefc941bdc1d4115a3d3a1f1dfc56fda",
379
            "2b0f02229d824c45a797d11a5b4c1703",
380
            "fee2d946671c4609b9e7c92725717e1c",
381
            "3c1fdeeae60d4ef5aa2997dce8614e67",
382
            "6568a690061d4f7d8127c63ce02bcbad",
383
            "e463325b65b643069760c4e9a15ec74d",
384
            "39a2137807ae4613a7b856765af6246c",
385
            "a91a6a026da94952b612ef0b21297f30"
386
          ]
387
        },
388
        "id": "l7lmarKbKnVg",
389
        "outputId": "cd2cd4af-0639-4813-f670-4f0cfddbcd4b"
390
      },
391
      "execution_count": 6,
392
      "outputs": [
393
        {
394
          "output_type": "display_data",
395
          "data": {
396
            "text/plain": [
397
              "tokenizer_config.json:   0%|          | 0.00/967 [00:00<?, ?B/s]"
398
            ],
399
            "application/vnd.jupyter.widget-view+json": {
400
              "version_major": 2,
401
              "version_minor": 0,
402
              "model_id": "8ccdaa53fd4d44f6bebcc8b1daf613a7"
403
            }
404
          },
405
          "metadata": {}
406
        },
407
        {
408
          "output_type": "display_data",
409
          "data": {
410
            "text/plain": [
411
              "tokenizer.model:   0%|          | 0.00/493k [00:00<?, ?B/s]"
412
            ],
413
            "application/vnd.jupyter.widget-view+json": {
414
              "version_major": 2,
415
              "version_minor": 0,
416
              "model_id": "24d9c53181ce49c2b91760bc386366b5"
417
            }
418
          },
419
          "metadata": {}
420
        },
421
        {
422
          "output_type": "display_data",
423
          "data": {
424
            "text/plain": [
425
              "tokenizer.json:   0%|          | 0.00/1.80M [00:00<?, ?B/s]"
426
            ],
427
            "application/vnd.jupyter.widget-view+json": {
428
              "version_major": 2,
429
              "version_minor": 0,
430
              "model_id": "d7cdc98280e04394a80ba62d7b883cc2"
431
            }
432
          },
433
          "metadata": {}
434
        },
435
        {
436
          "output_type": "display_data",
437
          "data": {
438
            "text/plain": [
439
              "special_tokens_map.json:   0%|          | 0.00/72.0 [00:00<?, ?B/s]"
440
            ],
441
            "application/vnd.jupyter.widget-view+json": {
442
              "version_major": 2,
443
              "version_minor": 0,
444
              "model_id": "e358fec2f71c418caac8d129444abcee"
445
            }
446
          },
447
          "metadata": {}
448
        },
449
        {
450
          "output_type": "execute_result",
451
          "data": {
452
            "text/plain": [
453
              "(True, True)"
454
            ]
455
          },
456
          "metadata": {},
457
          "execution_count": 6
458
        }
459
      ]
460
    },
461
    {
462
      "cell_type": "code",
463
      "source": [
464
        "pipe  = TextGenerationPipeline(model = model, tokenizer = tokenizer)"
465
      ],
466
      "metadata": {
467
        "id": "H1KZjewRKq4T"
468
      },
469
      "execution_count": 8,
470
      "outputs": []
471
    },
472
    {
473
      "cell_type": "code",
474
      "source": [
475
        "# load dataset for annotation (To make the model better for generalization we can generate a class that receive\n",
476
        "# the dataset in BIO format as input and make all parsing process and annotations)\n",
477
        "data_path = \"./drive/MyDrive/HandsOn-NLP/data/chia_criteria_texts/\""
478
      ],
479
      "metadata": {
480
        "id": "OQZxg3rLL4ZV"
481
      },
482
      "execution_count": 9,
483
      "outputs": []
484
    },
485
    {
486
      "cell_type": "code",
487
      "source": [
488
        "# get the list of files in the dataset\n",
489
        "files = os.listdir(data_path)\n",
490
        "files[:5]"
491
      ],
492
      "metadata": {
493
        "colab": {
494
          "base_uri": "https://localhost:8080/"
495
        },
496
        "id": "qJr3yMlCMwHL",
497
        "outputId": "fa0d19cd-7aec-4579-81c7-f2af42cce75d"
498
      },
499
      "execution_count": 12,
500
      "outputs": [
501
        {
502
          "output_type": "execute_result",
503
          "data": {
504
            "text/plain": [
505
              "['NCT03264911_inc.bio.txt',\n",
506
              " 'NCT03134378_inc.bio.txt',\n",
507
              " 'NCT02924090_exc.bio.txt',\n",
508
              " 'NCT02555163_inc.bio.txt',\n",
509
              " 'NCT02952378_exc.bio.txt']"
510
            ]
511
          },
512
          "metadata": {},
513
          "execution_count": 12
514
        }
515
      ]
516
    },
517
    {
518
      "cell_type": "code",
519
      "source": [
520
        "# example of input using first prompt\n",
521
        "with open(f\"{data_path}{files[1]}\", 'r+') as fd:\n",
522
        "  first_sentence = fd.readlines()[0]\n",
523
        "print(f\"Source sentence: {first_sentence}\")\n",
524
        "print(\"First prompt:\")\n",
525
        "print(build_prompt(first_sentence, 1))"
526
      ],
527
      "metadata": {
528
        "colab": {
529
          "base_uri": "https://localhost:8080/"
530
        },
531
        "id": "-99WLDuHM_Wn",
532
        "outputId": "48fb2fb8-b0e4-44b6-bb38-4fa7540efa30"
533
      },
534
      "execution_count": 20,
535
      "outputs": [
536
        {
537
          "output_type": "stream",
538
          "name": "stdout",
539
          "text": [
540
            "Source sentence: 18 years or older patients who are proven to be infected by Helicobacter pylori based on positive in Urea Breath Test or positive in histopathologic examination of biopsy in antrum and corpus of gaster through esophagoduodenoscopy .\n",
541
            "\n",
542
            "First prompt:\n",
543
            "I need to perform a named entity recognition task on a  text related with inclusion criteria in clinical trials.\n",
544
            "    The entities you need to recognize are: Condition, Value, Drug, Procedure, Measurement, Temporal, Observation, Person, Mood, Device and Pregnancy_considerations.\n",
545
            "    Particularly you have to produce the ouput in the BIO format. I will show you an example of the expected output.\n",
546
            "    Input text: Patients with symptomatic CNS metastases or leptomeningeal involvement\n",
547
            "    Output:\n",
548
            "    Patients O\n",
549
            "    with O\n",
550
            "    symptomatic O\n",
551
            "    CNS B-Condition\n",
552
            "    metastases I-Condition\n",
553
            "    or O\n",
554
            "    leptomeningeal B-Condition\n",
555
            "    involvement I-Condition\n",
556
            "\n",
557
            "    You can see that tokens without any entity are labeled as O, and the tokens that are part of an entity are labeled as B-<entity> or I-<entity> depending on if they are the beginning or the inside of the entity.\n",
558
            "    Please, just answer the question for this specific example and stop writting after that.\n",
559
            "    Input text: 18 years or older patients who are proven to be infected by Helicobacter pylori based on positive in Urea Breath Test or positive in histopathologic examination of biopsy in antrum and corpus of gaster through esophagoduodenoscopy .\n",
560
            "\n"
561
          ]
562
        }
563
      ]
564
    },
565
    {
566
      "cell_type": "code",
567
      "source": [
568
        "print(\"Second prompt:\")\n",
569
        "print(build_prompt(first_sentence, 2))"
570
      ],
571
      "metadata": {
572
        "colab": {
573
          "base_uri": "https://localhost:8080/"
574
        },
575
        "id": "n8X0eXX4PXwz",
576
        "outputId": "20374009-1ba6-4ed1-c057-0ca60257a776"
577
      },
578
      "execution_count": 21,
579
      "outputs": [
580
        {
581
          "output_type": "stream",
582
          "name": "stdout",
583
          "text": [
584
            "Second prompt:\n",
585
            "I am working on a named entity recognition problem, in the context of clinical\n",
586
            "    trials eligibility criteria. I will show you the list of entities:\n",
587
            "    - Condition\n",
588
            "    - Value\n",
589
            "    - Drug\n",
590
            "    - Procedure\n",
591
            "    - Measurement\n",
592
            "    - Temporal\n",
593
            "    - Observation\n",
594
            "    - Person\n",
595
            "    - Mood\n",
596
            "    - Device\n",
597
            "\n",
598
            "    Your task consists in annotate the named entities in a given sentence in the format I will explain you.\n",
599
            "    I will explain you with some examples:\n",
600
            "\n",
601
            "    Example 1:\n",
602
            "    Input: Patients who have received prior chemotherapy for unresectable disease.\n",
603
            "    Output: Patients who have received prior <Procedure>chemotherapy</Procedure> for <Condition>unresectable disease</Condition>.\n",
604
            "\n",
605
            "    Example 2:\n",
606
            "    Input: Patients with any other severe concurrent disease, which in the judgment of the investigator, would make the patient inappropriate for entry into this study.\n",
607
            "    Ouput: Patients with any other severe <Condition>concurrent disease</Condition>, which in the judgment of the investigator, would make the patient <Mood>inappropriate for <Observation>entry into this study</Observation>.\n",
608
            "\n",
609
            "    As you can see, in each example, the extracted entities are enclosed using the sintax: <ENT>text of the entity</ENT>.\n",
610
            "\n",
611
            "    Please now annotate as explained before the following sentence:\n",
612
            "\n",
613
            "    Input: 18 years or older patients who are proven to be infected by Helicobacter pylori based on positive in Urea Breath Test or positive in histopathologic examination of biopsy in antrum and corpus of gaster through esophagoduodenoscopy .\n",
614
            "\n"
615
          ]
616
        }
617
      ]
618
    },
619
    {
620
      "cell_type": "code",
621
      "source": [
622
        "from tqdm import tqdm"
623
      ],
624
      "metadata": {
625
        "id": "igfJpR5SVevy"
626
      },
627
      "execution_count": 27,
628
      "outputs": []
629
    },
630
    {
631
      "cell_type": "code",
632
      "source": [
633
        "# generate annotations for first prompt\n",
634
        "for file in tqdm(files[:20]):\n",
635
        "  sentences = []\n",
636
        "  with open(f\"{data_path}{file}\", 'r+', encoding='utf-8') as fd:\n",
637
        "    sentences = fd.readlines()\n",
638
        "  annotated_sentences = []\n",
639
        "  for sentence in sentences:\n",
640
        "    if len(sentence) == 0:\n",
641
        "      continue\n",
642
        "    input = build_prompt(sentence, 1)\n",
643
        "    output = pipe(input, max_new_tokens = 500, return_full_text = False, handle_long_generation = \"hole\")[0]['generated_text']\n",
644
        "    output = output.split('\\n\\n')[0]#to get just the first sentence in the ouput and avoid noise\n",
645
        "    annotated_sentences.append(output)\n",
646
        "  with open(f\"./drive/MyDrive/HandsOn-NLP/data/Annotations_Mistral_Prompt_1/{file}\", 'w+', encoding='utf-8') as fd:\n",
647
        "    fd.write('\\n\\n'.join(annotated_sentences))"
648
      ],
649
      "metadata": {
650
        "colab": {
651
          "base_uri": "https://localhost:8080/"
652
        },
653
        "id": "AVdymoJWQD0P",
654
        "outputId": "f7f0af37-04cb-4f51-874d-31e23dc1f79d"
655
      },
656
      "execution_count": 32,
657
      "outputs": [
658
        {
659
          "output_type": "stream",
660
          "name": "stderr",
661
          "text": [
662
            "\r  0%|          | 0/6 [00:00<?, ?it/s]/usr/local/lib/python3.10/dist-packages/transformers/pipelines/base.py:1157: UserWarning: You seem to be using the pipelines sequentially on GPU. In order to maximize efficiency please use a dataset\n",
663
            "  warnings.warn(\n",
664
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
665
            " 17%|█▋        | 1/6 [00:42<03:34, 42.80s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
666
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
667
            " 33%|███▎      | 2/6 [02:06<04:28, 67.01s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
668
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
669
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
670
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
671
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
672
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
673
            " 50%|█████     | 3/6 [06:16<07:31, 150.43s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
674
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
675
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
676
            " 67%|██████▋   | 4/6 [08:20<04:39, 139.84s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
677
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
678
            " 83%|████████▎ | 5/6 [09:42<01:59, 119.14s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
679
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
680
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
681
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
682
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
683
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
684
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
685
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
686
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
687
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
688
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
689
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
690
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
691
            "100%|██████████| 6/6 [18:36<00:00, 186.02s/it]\n"
692
          ]
693
        }
694
      ]
695
    },
696
    {
697
      "cell_type": "code",
698
      "source": [
699
        "# generate annotations for second prompt\n",
700
        "for file in tqdm(files[:20]):\n",
701
        "  print(file)\n",
702
        "  sentences = []\n",
703
        "  with open(f\"{data_path}{file}\", 'r+', encoding='utf-8') as fd:\n",
704
        "    sentences = fd.readlines()\n",
705
        "  annotated_sentences = []\n",
706
        "  for sentence in sentences:\n",
707
        "    if len(sentence) == 0:\n",
708
        "      continue\n",
709
        "    input = build_prompt(sentence, 2)\n",
710
        "    input += '\\noutput: '\n",
711
        "    output = pipe(input, max_new_tokens = 500, return_full_text = False, handle_long_generation = \"hole\")[0]['generated_text']\n",
712
        "    output = output.split('\\n')[0] + '.' #to get just the first sentence in the ouput and avoid noise\n",
713
        "    annotated_sentences.append(output)\n",
714
        "  with open(f\"./drive/MyDrive/HandsOn-NLP/data/Annotations_Mistral_Prompt_2/{file}\", 'w+', encoding='utf-8') as fd:\n",
715
        "    fd.write('\\n\\n'.join(annotated_sentences))"
716
      ],
717
      "metadata": {
718
        "colab": {
719
          "base_uri": "https://localhost:8080/"
720
        },
721
        "id": "3f539-JBSoJO",
722
        "outputId": "98db5051-f142-4ff2-ccdc-881b1952aa86"
723
      },
724
      "execution_count": 40,
725
      "outputs": [
726
        {
727
          "output_type": "stream",
728
          "name": "stderr",
729
          "text": [
730
            "\r  0%|          | 0/20 [00:00<?, ?it/s]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
731
          ]
732
        },
733
        {
734
          "output_type": "stream",
735
          "name": "stdout",
736
          "text": [
737
            "NCT03264911_inc.bio.txt\n"
738
          ]
739
        },
740
        {
741
          "output_type": "stream",
742
          "name": "stderr",
743
          "text": [
744
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
745
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
746
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
747
            "  5%|▌         | 1/20 [02:48<53:28, 168.89s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
748
          ]
749
        },
750
        {
751
          "output_type": "stream",
752
          "name": "stdout",
753
          "text": [
754
            "NCT03134378_inc.bio.txt\n"
755
          ]
756
        },
757
        {
758
          "output_type": "stream",
759
          "name": "stderr",
760
          "text": [
761
            "\r 10%|█         | 2/20 [03:30<28:15, 94.20s/it] Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
762
          ]
763
        },
764
        {
765
          "output_type": "stream",
766
          "name": "stdout",
767
          "text": [
768
            "NCT02924090_exc.bio.txt\n"
769
          ]
770
        },
771
        {
772
          "output_type": "stream",
773
          "name": "stderr",
774
          "text": [
775
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
776
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
777
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
778
            " 15%|█▌        | 3/20 [06:17<36:00, 127.09s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
779
          ]
780
        },
781
        {
782
          "output_type": "stream",
783
          "name": "stdout",
784
          "text": [
785
            "NCT02555163_inc.bio.txt\n"
786
          ]
787
        },
788
        {
789
          "output_type": "stream",
790
          "name": "stderr",
791
          "text": [
792
            "\r 20%|██        | 4/20 [06:58<24:53, 93.31s/it] Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
793
          ]
794
        },
795
        {
796
          "output_type": "stream",
797
          "name": "stdout",
798
          "text": [
799
            "NCT02952378_exc.bio.txt\n"
800
          ]
801
        },
802
        {
803
          "output_type": "stream",
804
          "name": "stderr",
805
          "text": [
806
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
807
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
808
            " 25%|██▌       | 5/20 [09:02<26:07, 104.50s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
809
          ]
810
        },
811
        {
812
          "output_type": "stream",
813
          "name": "stdout",
814
          "text": [
815
            "NCT02918409_inc.bio.txt\n"
816
          ]
817
        },
818
        {
819
          "output_type": "stream",
820
          "name": "stderr",
821
          "text": [
822
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
823
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
824
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
825
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
826
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
827
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
828
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
829
            " 30%|███       | 6/20 [14:35<42:27, 182.00s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
830
          ]
831
        },
832
        {
833
          "output_type": "stream",
834
          "name": "stdout",
835
          "text": [
836
            "NCT03193684_exc.bio.txt\n"
837
          ]
838
        },
839
        {
840
          "output_type": "stream",
841
          "name": "stderr",
842
          "text": [
843
            "\r 35%|███▌      | 7/20 [15:16<29:28, 136.01s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
844
          ]
845
        },
846
        {
847
          "output_type": "stream",
848
          "name": "stdout",
849
          "text": [
850
            "NCT03472495_inc.bio.txt\n"
851
          ]
852
        },
853
        {
854
          "output_type": "stream",
855
          "name": "stderr",
856
          "text": [
857
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
858
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
859
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
860
            " 40%|████      | 8/20 [18:02<29:04, 145.38s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
861
          ]
862
        },
863
        {
864
          "output_type": "stream",
865
          "name": "stdout",
866
          "text": [
867
            "NCT01942109_inc.bio.txt\n"
868
          ]
869
        },
870
        {
871
          "output_type": "stream",
872
          "name": "stderr",
873
          "text": [
874
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
875
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
876
            " 45%|████▌     | 9/20 [20:06<25:26, 138.81s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
877
          ]
878
        },
879
        {
880
          "output_type": "stream",
881
          "name": "stdout",
882
          "text": [
883
            "NCT03187639_exc.bio.txt\n"
884
          ]
885
        },
886
        {
887
          "output_type": "stream",
888
          "name": "stderr",
889
          "text": [
890
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
891
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
892
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
893
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
894
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
895
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
896
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
897
            " 50%|█████     | 10/20 [25:39<33:07, 198.70s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
898
          ]
899
        },
900
        {
901
          "output_type": "stream",
902
          "name": "stdout",
903
          "text": [
904
            "NCT03193684_inc.bio.txt\n"
905
          ]
906
        },
907
        {
908
          "output_type": "stream",
909
          "name": "stderr",
910
          "text": [
911
            "\r 55%|█████▌    | 11/20 [26:21<22:36, 150.69s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
912
          ]
913
        },
914
        {
915
          "output_type": "stream",
916
          "name": "stdout",
917
          "text": [
918
            "NCT02339844_exc.bio.txt\n"
919
          ]
920
        },
921
        {
922
          "output_type": "stream",
923
          "name": "stderr",
924
          "text": [
925
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
926
            " 60%|██████    | 12/20 [27:31<16:50, 126.37s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
927
          ]
928
        },
929
        {
930
          "output_type": "stream",
931
          "name": "stdout",
932
          "text": [
933
            "NCT02102243_exc.bio.txt\n"
934
          ]
935
        },
936
        {
937
          "output_type": "stream",
938
          "name": "stderr",
939
          "text": [
940
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
941
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
942
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
943
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
944
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
945
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
946
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
947
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
948
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
949
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
950
            " 65%|██████▌   | 13/20 [35:06<26:20, 225.76s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
951
          ]
952
        },
953
        {
954
          "output_type": "stream",
955
          "name": "stdout",
956
          "text": [
957
            "NCT03156855_inc.bio.txt\n"
958
          ]
959
        },
960
        {
961
          "output_type": "stream",
962
          "name": "stderr",
963
          "text": [
964
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
965
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
966
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
967
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
968
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
969
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
970
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
971
            " 70%|███████   | 14/20 [40:36<25:43, 257.33s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
972
          ]
973
        },
974
        {
975
          "output_type": "stream",
976
          "name": "stdout",
977
          "text": [
978
            "NCT02553226_inc.bio.txt\n"
979
          ]
980
        },
981
        {
982
          "output_type": "stream",
983
          "name": "stderr",
984
          "text": [
985
            "\r 75%|███████▌  | 15/20 [41:18<16:01, 192.30s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
986
          ]
987
        },
988
        {
989
          "output_type": "stream",
990
          "name": "stdout",
991
          "text": [
992
            "NCT02606565_exc.bio.txt\n"
993
          ]
994
        },
995
        {
996
          "output_type": "stream",
997
          "name": "stderr",
998
          "text": [
999
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1000
            " 80%|████████  | 16/20 [42:40<10:36, 159.14s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
1001
          ]
1002
        },
1003
        {
1004
          "output_type": "stream",
1005
          "name": "stdout",
1006
          "text": [
1007
            "NCT01857167_exc.bio.txt\n"
1008
          ]
1009
        },
1010
        {
1011
          "output_type": "stream",
1012
          "name": "stderr",
1013
          "text": [
1014
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1015
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1016
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1017
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1018
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1019
            " 85%|████████▌ | 17/20 [46:42<09:11, 183.96s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
1020
          ]
1021
        },
1022
        {
1023
          "output_type": "stream",
1024
          "name": "stdout",
1025
          "text": [
1026
            "NCT02939872_inc.bio.txt\n"
1027
          ]
1028
        },
1029
        {
1030
          "output_type": "stream",
1031
          "name": "stderr",
1032
          "text": [
1033
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1034
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1035
            " 90%|█████████ | 18/20 [48:46<05:31, 165.99s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
1036
          ]
1037
        },
1038
        {
1039
          "output_type": "stream",
1040
          "name": "stdout",
1041
          "text": [
1042
            "NCT02894372_inc.bio.txt\n"
1043
          ]
1044
        },
1045
        {
1046
          "output_type": "stream",
1047
          "name": "stderr",
1048
          "text": [
1049
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1050
            " 95%|█████████▌| 19/20 [50:08<02:21, 141.01s/it]Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n"
1051
          ]
1052
        },
1053
        {
1054
          "output_type": "stream",
1055
          "name": "stdout",
1056
          "text": [
1057
            "NCT00730301_inc.bio.txt\n"
1058
          ]
1059
        },
1060
        {
1061
          "output_type": "stream",
1062
          "name": "stderr",
1063
          "text": [
1064
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1065
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1066
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1067
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1068
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1069
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1070
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1071
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1072
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1073
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1074
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1075
            "Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.\n",
1076
            "100%|██████████| 20/20 [59:05<00:00, 177.28s/it]\n"
1077
          ]
1078
        }
1079
      ]
1080
    }
1081
  ],
1082
  "metadata": {
1083
    "kernelspec": {
1084
      "display_name": "Python 3",
1085
      "name": "python3"
1086
    },
1087
    "language_info": {
1088
      "codemirror_mode": {
1089
        "name": "ipython",
1090
        "version": 3
1091
      },
1092
      "file_extension": ".py",
1093
      "mimetype": "text/x-python",
1094
      "name": "python",
1095
      "nbconvert_exporter": "python",
1096
      "pygments_lexer": "ipython3",
1097
      "version": "3.10.13"
1098
    },
1099
    "colab": {
1100
      "provenance": [],
1101
      "gpuType": "T4",
1102
      "include_colab_link": true
1103
    },
1104
    "accelerator": "GPU",
1105
    "widgets": {
1106
      "application/vnd.jupyter.widget-state+json": {
1107
        "623351d84656420faa70ae4889536f78": {
1108
          "model_module": "@jupyter-widgets/controls",
1109
          "model_name": "HBoxModel",
1110
          "model_module_version": "1.5.0",
1111
          "state": {
1112
            "_dom_classes": [],
1113
            "_model_module": "@jupyter-widgets/controls",
1114
            "_model_module_version": "1.5.0",
1115
            "_model_name": "HBoxModel",
1116
            "_view_count": null,
1117
            "_view_module": "@jupyter-widgets/controls",
1118
            "_view_module_version": "1.5.0",
1119
            "_view_name": "HBoxView",
1120
            "box_style": "",
1121
            "children": [
1122
              "IPY_MODEL_6e8db672b53f4ca3b65e861a8977e7f1",
1123
              "IPY_MODEL_c626b5aa49ba4a8ab4364d4a299baa1f",
1124
              "IPY_MODEL_d9a04c47e5aa4ccdafcff20d276bbbb1"
1125
            ],
1126
            "layout": "IPY_MODEL_8d274858eef7465b8cb32b2556f65afb"
1127
          }
1128
        },
1129
        "6e8db672b53f4ca3b65e861a8977e7f1": {
1130
          "model_module": "@jupyter-widgets/controls",
1131
          "model_name": "HTMLModel",
1132
          "model_module_version": "1.5.0",
1133
          "state": {
1134
            "_dom_classes": [],
1135
            "_model_module": "@jupyter-widgets/controls",
1136
            "_model_module_version": "1.5.0",
1137
            "_model_name": "HTMLModel",
1138
            "_view_count": null,
1139
            "_view_module": "@jupyter-widgets/controls",
1140
            "_view_module_version": "1.5.0",
1141
            "_view_name": "HTMLView",
1142
            "description": "",
1143
            "description_tooltip": null,
1144
            "layout": "IPY_MODEL_8665bd0d3d4d425786bbb64bdc57a36b",
1145
            "placeholder": "​",
1146
            "style": "IPY_MODEL_ee3d9951387948089cd9360d9a9871ba",
1147
            "value": "config.json: 100%"
1148
          }
1149
        },
1150
        "c626b5aa49ba4a8ab4364d4a299baa1f": {
1151
          "model_module": "@jupyter-widgets/controls",
1152
          "model_name": "FloatProgressModel",
1153
          "model_module_version": "1.5.0",
1154
          "state": {
1155
            "_dom_classes": [],
1156
            "_model_module": "@jupyter-widgets/controls",
1157
            "_model_module_version": "1.5.0",
1158
            "_model_name": "FloatProgressModel",
1159
            "_view_count": null,
1160
            "_view_module": "@jupyter-widgets/controls",
1161
            "_view_module_version": "1.5.0",
1162
            "_view_name": "ProgressView",
1163
            "bar_style": "success",
1164
            "description": "",
1165
            "description_tooltip": null,
1166
            "layout": "IPY_MODEL_b6269fd3f5324daa812c212b368ff0ad",
1167
            "max": 571,
1168
            "min": 0,
1169
            "orientation": "horizontal",
1170
            "style": "IPY_MODEL_55b69b66ea004214b3d66af7843a7c99",
1171
            "value": 571
1172
          }
1173
        },
1174
        "d9a04c47e5aa4ccdafcff20d276bbbb1": {
1175
          "model_module": "@jupyter-widgets/controls",
1176
          "model_name": "HTMLModel",
1177
          "model_module_version": "1.5.0",
1178
          "state": {
1179
            "_dom_classes": [],
1180
            "_model_module": "@jupyter-widgets/controls",
1181
            "_model_module_version": "1.5.0",
1182
            "_model_name": "HTMLModel",
1183
            "_view_count": null,
1184
            "_view_module": "@jupyter-widgets/controls",
1185
            "_view_module_version": "1.5.0",
1186
            "_view_name": "HTMLView",
1187
            "description": "",
1188
            "description_tooltip": null,
1189
            "layout": "IPY_MODEL_01e179ba9b6d4989bb908266137fab42",
1190
            "placeholder": "​",
1191
            "style": "IPY_MODEL_51aacda23c324a9db4730410989c33e8",
1192
            "value": " 571/571 [00:00&lt;00:00, 42.2kB/s]"
1193
          }
1194
        },
1195
        "8d274858eef7465b8cb32b2556f65afb": {
1196
          "model_module": "@jupyter-widgets/base",
1197
          "model_name": "LayoutModel",
1198
          "model_module_version": "1.2.0",
1199
          "state": {
1200
            "_model_module": "@jupyter-widgets/base",
1201
            "_model_module_version": "1.2.0",
1202
            "_model_name": "LayoutModel",
1203
            "_view_count": null,
1204
            "_view_module": "@jupyter-widgets/base",
1205
            "_view_module_version": "1.2.0",
1206
            "_view_name": "LayoutView",
1207
            "align_content": null,
1208
            "align_items": null,
1209
            "align_self": null,
1210
            "border": null,
1211
            "bottom": null,
1212
            "display": null,
1213
            "flex": null,
1214
            "flex_flow": null,
1215
            "grid_area": null,
1216
            "grid_auto_columns": null,
1217
            "grid_auto_flow": null,
1218
            "grid_auto_rows": null,
1219
            "grid_column": null,
1220
            "grid_gap": null,
1221
            "grid_row": null,
1222
            "grid_template_areas": null,
1223
            "grid_template_columns": null,
1224
            "grid_template_rows": null,
1225
            "height": null,
1226
            "justify_content": null,
1227
            "justify_items": null,
1228
            "left": null,
1229
            "margin": null,
1230
            "max_height": null,
1231
            "max_width": null,
1232
            "min_height": null,
1233
            "min_width": null,
1234
            "object_fit": null,
1235
            "object_position": null,
1236
            "order": null,
1237
            "overflow": null,
1238
            "overflow_x": null,
1239
            "overflow_y": null,
1240
            "padding": null,
1241
            "right": null,
1242
            "top": null,
1243
            "visibility": null,
1244
            "width": null
1245
          }
1246
        },
1247
        "8665bd0d3d4d425786bbb64bdc57a36b": {
1248
          "model_module": "@jupyter-widgets/base",
1249
          "model_name": "LayoutModel",
1250
          "model_module_version": "1.2.0",
1251
          "state": {
1252
            "_model_module": "@jupyter-widgets/base",
1253
            "_model_module_version": "1.2.0",
1254
            "_model_name": "LayoutModel",
1255
            "_view_count": null,
1256
            "_view_module": "@jupyter-widgets/base",
1257
            "_view_module_version": "1.2.0",
1258
            "_view_name": "LayoutView",
1259
            "align_content": null,
1260
            "align_items": null,
1261
            "align_self": null,
1262
            "border": null,
1263
            "bottom": null,
1264
            "display": null,
1265
            "flex": null,
1266
            "flex_flow": null,
1267
            "grid_area": null,
1268
            "grid_auto_columns": null,
1269
            "grid_auto_flow": null,
1270
            "grid_auto_rows": null,
1271
            "grid_column": null,
1272
            "grid_gap": null,
1273
            "grid_row": null,
1274
            "grid_template_areas": null,
1275
            "grid_template_columns": null,
1276
            "grid_template_rows": null,
1277
            "height": null,
1278
            "justify_content": null,
1279
            "justify_items": null,
1280
            "left": null,
1281
            "margin": null,
1282
            "max_height": null,
1283
            "max_width": null,
1284
            "min_height": null,
1285
            "min_width": null,
1286
            "object_fit": null,
1287
            "object_position": null,
1288
            "order": null,
1289
            "overflow": null,
1290
            "overflow_x": null,
1291
            "overflow_y": null,
1292
            "padding": null,
1293
            "right": null,
1294
            "top": null,
1295
            "visibility": null,
1296
            "width": null
1297
          }
1298
        },
1299
        "ee3d9951387948089cd9360d9a9871ba": {
1300
          "model_module": "@jupyter-widgets/controls",
1301
          "model_name": "DescriptionStyleModel",
1302
          "model_module_version": "1.5.0",
1303
          "state": {
1304
            "_model_module": "@jupyter-widgets/controls",
1305
            "_model_module_version": "1.5.0",
1306
            "_model_name": "DescriptionStyleModel",
1307
            "_view_count": null,
1308
            "_view_module": "@jupyter-widgets/base",
1309
            "_view_module_version": "1.2.0",
1310
            "_view_name": "StyleView",
1311
            "description_width": ""
1312
          }
1313
        },
1314
        "b6269fd3f5324daa812c212b368ff0ad": {
1315
          "model_module": "@jupyter-widgets/base",
1316
          "model_name": "LayoutModel",
1317
          "model_module_version": "1.2.0",
1318
          "state": {
1319
            "_model_module": "@jupyter-widgets/base",
1320
            "_model_module_version": "1.2.0",
1321
            "_model_name": "LayoutModel",
1322
            "_view_count": null,
1323
            "_view_module": "@jupyter-widgets/base",
1324
            "_view_module_version": "1.2.0",
1325
            "_view_name": "LayoutView",
1326
            "align_content": null,
1327
            "align_items": null,
1328
            "align_self": null,
1329
            "border": null,
1330
            "bottom": null,
1331
            "display": null,
1332
            "flex": null,
1333
            "flex_flow": null,
1334
            "grid_area": null,
1335
            "grid_auto_columns": null,
1336
            "grid_auto_flow": null,
1337
            "grid_auto_rows": null,
1338
            "grid_column": null,
1339
            "grid_gap": null,
1340
            "grid_row": null,
1341
            "grid_template_areas": null,
1342
            "grid_template_columns": null,
1343
            "grid_template_rows": null,
1344
            "height": null,
1345
            "justify_content": null,
1346
            "justify_items": null,
1347
            "left": null,
1348
            "margin": null,
1349
            "max_height": null,
1350
            "max_width": null,
1351
            "min_height": null,
1352
            "min_width": null,
1353
            "object_fit": null,
1354
            "object_position": null,
1355
            "order": null,
1356
            "overflow": null,
1357
            "overflow_x": null,
1358
            "overflow_y": null,
1359
            "padding": null,
1360
            "right": null,
1361
            "top": null,
1362
            "visibility": null,
1363
            "width": null
1364
          }
1365
        },
1366
        "55b69b66ea004214b3d66af7843a7c99": {
1367
          "model_module": "@jupyter-widgets/controls",
1368
          "model_name": "ProgressStyleModel",
1369
          "model_module_version": "1.5.0",
1370
          "state": {
1371
            "_model_module": "@jupyter-widgets/controls",
1372
            "_model_module_version": "1.5.0",
1373
            "_model_name": "ProgressStyleModel",
1374
            "_view_count": null,
1375
            "_view_module": "@jupyter-widgets/base",
1376
            "_view_module_version": "1.2.0",
1377
            "_view_name": "StyleView",
1378
            "bar_color": null,
1379
            "description_width": ""
1380
          }
1381
        },
1382
        "01e179ba9b6d4989bb908266137fab42": {
1383
          "model_module": "@jupyter-widgets/base",
1384
          "model_name": "LayoutModel",
1385
          "model_module_version": "1.2.0",
1386
          "state": {
1387
            "_model_module": "@jupyter-widgets/base",
1388
            "_model_module_version": "1.2.0",
1389
            "_model_name": "LayoutModel",
1390
            "_view_count": null,
1391
            "_view_module": "@jupyter-widgets/base",
1392
            "_view_module_version": "1.2.0",
1393
            "_view_name": "LayoutView",
1394
            "align_content": null,
1395
            "align_items": null,
1396
            "align_self": null,
1397
            "border": null,
1398
            "bottom": null,
1399
            "display": null,
1400
            "flex": null,
1401
            "flex_flow": null,
1402
            "grid_area": null,
1403
            "grid_auto_columns": null,
1404
            "grid_auto_flow": null,
1405
            "grid_auto_rows": null,
1406
            "grid_column": null,
1407
            "grid_gap": null,
1408
            "grid_row": null,
1409
            "grid_template_areas": null,
1410
            "grid_template_columns": null,
1411
            "grid_template_rows": null,
1412
            "height": null,
1413
            "justify_content": null,
1414
            "justify_items": null,
1415
            "left": null,
1416
            "margin": null,
1417
            "max_height": null,
1418
            "max_width": null,
1419
            "min_height": null,
1420
            "min_width": null,
1421
            "object_fit": null,
1422
            "object_position": null,
1423
            "order": null,
1424
            "overflow": null,
1425
            "overflow_x": null,
1426
            "overflow_y": null,
1427
            "padding": null,
1428
            "right": null,
1429
            "top": null,
1430
            "visibility": null,
1431
            "width": null
1432
          }
1433
        },
1434
        "51aacda23c324a9db4730410989c33e8": {
1435
          "model_module": "@jupyter-widgets/controls",
1436
          "model_name": "DescriptionStyleModel",
1437
          "model_module_version": "1.5.0",
1438
          "state": {
1439
            "_model_module": "@jupyter-widgets/controls",
1440
            "_model_module_version": "1.5.0",
1441
            "_model_name": "DescriptionStyleModel",
1442
            "_view_count": null,
1443
            "_view_module": "@jupyter-widgets/base",
1444
            "_view_module_version": "1.2.0",
1445
            "_view_name": "StyleView",
1446
            "description_width": ""
1447
          }
1448
        },
1449
        "f23ed67b7458460a86bc4c010542675a": {
1450
          "model_module": "@jupyter-widgets/controls",
1451
          "model_name": "HBoxModel",
1452
          "model_module_version": "1.5.0",
1453
          "state": {
1454
            "_dom_classes": [],
1455
            "_model_module": "@jupyter-widgets/controls",
1456
            "_model_module_version": "1.5.0",
1457
            "_model_name": "HBoxModel",
1458
            "_view_count": null,
1459
            "_view_module": "@jupyter-widgets/controls",
1460
            "_view_module_version": "1.5.0",
1461
            "_view_name": "HBoxView",
1462
            "box_style": "",
1463
            "children": [
1464
              "IPY_MODEL_df6e7f48e48647cf9085a5143f7afd3c",
1465
              "IPY_MODEL_fca53ddc2b39498087fb8d76d4ccba83",
1466
              "IPY_MODEL_495a05fbb4984421897ee2beea733c63"
1467
            ],
1468
            "layout": "IPY_MODEL_4290143e54344798bc7c79236338da91"
1469
          }
1470
        },
1471
        "df6e7f48e48647cf9085a5143f7afd3c": {
1472
          "model_module": "@jupyter-widgets/controls",
1473
          "model_name": "HTMLModel",
1474
          "model_module_version": "1.5.0",
1475
          "state": {
1476
            "_dom_classes": [],
1477
            "_model_module": "@jupyter-widgets/controls",
1478
            "_model_module_version": "1.5.0",
1479
            "_model_name": "HTMLModel",
1480
            "_view_count": null,
1481
            "_view_module": "@jupyter-widgets/controls",
1482
            "_view_module_version": "1.5.0",
1483
            "_view_name": "HTMLView",
1484
            "description": "",
1485
            "description_tooltip": null,
1486
            "layout": "IPY_MODEL_f3df546b544a4086a93e835f52f1374a",
1487
            "placeholder": "​",
1488
            "style": "IPY_MODEL_044f3fdb95394ed4909e52d58761f60a",
1489
            "value": "model.safetensors.index.json: 100%"
1490
          }
1491
        },
1492
        "fca53ddc2b39498087fb8d76d4ccba83": {
1493
          "model_module": "@jupyter-widgets/controls",
1494
          "model_name": "FloatProgressModel",
1495
          "model_module_version": "1.5.0",
1496
          "state": {
1497
            "_dom_classes": [],
1498
            "_model_module": "@jupyter-widgets/controls",
1499
            "_model_module_version": "1.5.0",
1500
            "_model_name": "FloatProgressModel",
1501
            "_view_count": null,
1502
            "_view_module": "@jupyter-widgets/controls",
1503
            "_view_module_version": "1.5.0",
1504
            "_view_name": "ProgressView",
1505
            "bar_style": "success",
1506
            "description": "",
1507
            "description_tooltip": null,
1508
            "layout": "IPY_MODEL_44a254651d6d4d2f96627de75bc5e7dd",
1509
            "max": 25125,
1510
            "min": 0,
1511
            "orientation": "horizontal",
1512
            "style": "IPY_MODEL_a86ef33bb25644a5a313f1387bfab6e0",
1513
            "value": 25125
1514
          }
1515
        },
1516
        "495a05fbb4984421897ee2beea733c63": {
1517
          "model_module": "@jupyter-widgets/controls",
1518
          "model_name": "HTMLModel",
1519
          "model_module_version": "1.5.0",
1520
          "state": {
1521
            "_dom_classes": [],
1522
            "_model_module": "@jupyter-widgets/controls",
1523
            "_model_module_version": "1.5.0",
1524
            "_model_name": "HTMLModel",
1525
            "_view_count": null,
1526
            "_view_module": "@jupyter-widgets/controls",
1527
            "_view_module_version": "1.5.0",
1528
            "_view_name": "HTMLView",
1529
            "description": "",
1530
            "description_tooltip": null,
1531
            "layout": "IPY_MODEL_39ea441013f94dd1b79abca45f7aa4e5",
1532
            "placeholder": "​",
1533
            "style": "IPY_MODEL_f10d1774aa89441e9bbf7bd48633eeea",
1534
            "value": " 25.1k/25.1k [00:00&lt;00:00, 1.97MB/s]"
1535
          }
1536
        },
1537
        "4290143e54344798bc7c79236338da91": {
1538
          "model_module": "@jupyter-widgets/base",
1539
          "model_name": "LayoutModel",
1540
          "model_module_version": "1.2.0",
1541
          "state": {
1542
            "_model_module": "@jupyter-widgets/base",
1543
            "_model_module_version": "1.2.0",
1544
            "_model_name": "LayoutModel",
1545
            "_view_count": null,
1546
            "_view_module": "@jupyter-widgets/base",
1547
            "_view_module_version": "1.2.0",
1548
            "_view_name": "LayoutView",
1549
            "align_content": null,
1550
            "align_items": null,
1551
            "align_self": null,
1552
            "border": null,
1553
            "bottom": null,
1554
            "display": null,
1555
            "flex": null,
1556
            "flex_flow": null,
1557
            "grid_area": null,
1558
            "grid_auto_columns": null,
1559
            "grid_auto_flow": null,
1560
            "grid_auto_rows": null,
1561
            "grid_column": null,
1562
            "grid_gap": null,
1563
            "grid_row": null,
1564
            "grid_template_areas": null,
1565
            "grid_template_columns": null,
1566
            "grid_template_rows": null,
1567
            "height": null,
1568
            "justify_content": null,
1569
            "justify_items": null,
1570
            "left": null,
1571
            "margin": null,
1572
            "max_height": null,
1573
            "max_width": null,
1574
            "min_height": null,
1575
            "min_width": null,
1576
            "object_fit": null,
1577
            "object_position": null,
1578
            "order": null,
1579
            "overflow": null,
1580
            "overflow_x": null,
1581
            "overflow_y": null,
1582
            "padding": null,
1583
            "right": null,
1584
            "top": null,
1585
            "visibility": null,
1586
            "width": null
1587
          }
1588
        },
1589
        "f3df546b544a4086a93e835f52f1374a": {
1590
          "model_module": "@jupyter-widgets/base",
1591
          "model_name": "LayoutModel",
1592
          "model_module_version": "1.2.0",
1593
          "state": {
1594
            "_model_module": "@jupyter-widgets/base",
1595
            "_model_module_version": "1.2.0",
1596
            "_model_name": "LayoutModel",
1597
            "_view_count": null,
1598
            "_view_module": "@jupyter-widgets/base",
1599
            "_view_module_version": "1.2.0",
1600
            "_view_name": "LayoutView",
1601
            "align_content": null,
1602
            "align_items": null,
1603
            "align_self": null,
1604
            "border": null,
1605
            "bottom": null,
1606
            "display": null,
1607
            "flex": null,
1608
            "flex_flow": null,
1609
            "grid_area": null,
1610
            "grid_auto_columns": null,
1611
            "grid_auto_flow": null,
1612
            "grid_auto_rows": null,
1613
            "grid_column": null,
1614
            "grid_gap": null,
1615
            "grid_row": null,
1616
            "grid_template_areas": null,
1617
            "grid_template_columns": null,
1618
            "grid_template_rows": null,
1619
            "height": null,
1620
            "justify_content": null,
1621
            "justify_items": null,
1622
            "left": null,
1623
            "margin": null,
1624
            "max_height": null,
1625
            "max_width": null,
1626
            "min_height": null,
1627
            "min_width": null,
1628
            "object_fit": null,
1629
            "object_position": null,
1630
            "order": null,
1631
            "overflow": null,
1632
            "overflow_x": null,
1633
            "overflow_y": null,
1634
            "padding": null,
1635
            "right": null,
1636
            "top": null,
1637
            "visibility": null,
1638
            "width": null
1639
          }
1640
        },
1641
        "044f3fdb95394ed4909e52d58761f60a": {
1642
          "model_module": "@jupyter-widgets/controls",
1643
          "model_name": "DescriptionStyleModel",
1644
          "model_module_version": "1.5.0",
1645
          "state": {
1646
            "_model_module": "@jupyter-widgets/controls",
1647
            "_model_module_version": "1.5.0",
1648
            "_model_name": "DescriptionStyleModel",
1649
            "_view_count": null,
1650
            "_view_module": "@jupyter-widgets/base",
1651
            "_view_module_version": "1.2.0",
1652
            "_view_name": "StyleView",
1653
            "description_width": ""
1654
          }
1655
        },
1656
        "44a254651d6d4d2f96627de75bc5e7dd": {
1657
          "model_module": "@jupyter-widgets/base",
1658
          "model_name": "LayoutModel",
1659
          "model_module_version": "1.2.0",
1660
          "state": {
1661
            "_model_module": "@jupyter-widgets/base",
1662
            "_model_module_version": "1.2.0",
1663
            "_model_name": "LayoutModel",
1664
            "_view_count": null,
1665
            "_view_module": "@jupyter-widgets/base",
1666
            "_view_module_version": "1.2.0",
1667
            "_view_name": "LayoutView",
1668
            "align_content": null,
1669
            "align_items": null,
1670
            "align_self": null,
1671
            "border": null,
1672
            "bottom": null,
1673
            "display": null,
1674
            "flex": null,
1675
            "flex_flow": null,
1676
            "grid_area": null,
1677
            "grid_auto_columns": null,
1678
            "grid_auto_flow": null,
1679
            "grid_auto_rows": null,
1680
            "grid_column": null,
1681
            "grid_gap": null,
1682
            "grid_row": null,
1683
            "grid_template_areas": null,
1684
            "grid_template_columns": null,
1685
            "grid_template_rows": null,
1686
            "height": null,
1687
            "justify_content": null,
1688
            "justify_items": null,
1689
            "left": null,
1690
            "margin": null,
1691
            "max_height": null,
1692
            "max_width": null,
1693
            "min_height": null,
1694
            "min_width": null,
1695
            "object_fit": null,
1696
            "object_position": null,
1697
            "order": null,
1698
            "overflow": null,
1699
            "overflow_x": null,
1700
            "overflow_y": null,
1701
            "padding": null,
1702
            "right": null,
1703
            "top": null,
1704
            "visibility": null,
1705
            "width": null
1706
          }
1707
        },
1708
        "a86ef33bb25644a5a313f1387bfab6e0": {
1709
          "model_module": "@jupyter-widgets/controls",
1710
          "model_name": "ProgressStyleModel",
1711
          "model_module_version": "1.5.0",
1712
          "state": {
1713
            "_model_module": "@jupyter-widgets/controls",
1714
            "_model_module_version": "1.5.0",
1715
            "_model_name": "ProgressStyleModel",
1716
            "_view_count": null,
1717
            "_view_module": "@jupyter-widgets/base",
1718
            "_view_module_version": "1.2.0",
1719
            "_view_name": "StyleView",
1720
            "bar_color": null,
1721
            "description_width": ""
1722
          }
1723
        },
1724
        "39ea441013f94dd1b79abca45f7aa4e5": {
1725
          "model_module": "@jupyter-widgets/base",
1726
          "model_name": "LayoutModel",
1727
          "model_module_version": "1.2.0",
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
        "f10d1774aa89441e9bbf7bd48633eeea": {
1777
          "model_module": "@jupyter-widgets/controls",
1778
          "model_name": "DescriptionStyleModel",
1779
          "model_module_version": "1.5.0",
1780
          "state": {
1781
            "_model_module": "@jupyter-widgets/controls",
1782
            "_model_module_version": "1.5.0",
1783
            "_model_name": "DescriptionStyleModel",
1784
            "_view_count": null,
1785
            "_view_module": "@jupyter-widgets/base",
1786
            "_view_module_version": "1.2.0",
1787
            "_view_name": "StyleView",
1788
            "description_width": ""
1789
          }
1790
        },
1791
        "2382371f37a74c86888483132a686039": {
1792
          "model_module": "@jupyter-widgets/controls",
1793
          "model_name": "HBoxModel",
1794
          "model_module_version": "1.5.0",
1795
          "state": {
1796
            "_dom_classes": [],
1797
            "_model_module": "@jupyter-widgets/controls",
1798
            "_model_module_version": "1.5.0",
1799
            "_model_name": "HBoxModel",
1800
            "_view_count": null,
1801
            "_view_module": "@jupyter-widgets/controls",
1802
            "_view_module_version": "1.5.0",
1803
            "_view_name": "HBoxView",
1804
            "box_style": "",
1805
            "children": [
1806
              "IPY_MODEL_62c9043d2fb949998931c38ef6a84d66",
1807
              "IPY_MODEL_f549d20a326b4eeaa9e8f8694afc0f9d",
1808
              "IPY_MODEL_e6c39c8ec6d147e2b4376bf0a442ed1b"
1809
            ],
1810
            "layout": "IPY_MODEL_8f2db049d8d24fc0b804a451b97f38b1"
1811
          }
1812
        },
1813
        "62c9043d2fb949998931c38ef6a84d66": {
1814
          "model_module": "@jupyter-widgets/controls",
1815
          "model_name": "HTMLModel",
1816
          "model_module_version": "1.5.0",
1817
          "state": {
1818
            "_dom_classes": [],
1819
            "_model_module": "@jupyter-widgets/controls",
1820
            "_model_module_version": "1.5.0",
1821
            "_model_name": "HTMLModel",
1822
            "_view_count": null,
1823
            "_view_module": "@jupyter-widgets/controls",
1824
            "_view_module_version": "1.5.0",
1825
            "_view_name": "HTMLView",
1826
            "description": "",
1827
            "description_tooltip": null,
1828
            "layout": "IPY_MODEL_cf2f5777aaa943218c01002705ad49a4",
1829
            "placeholder": "​",
1830
            "style": "IPY_MODEL_a1d585f864ec4f96a1facb1c8fd1f228",
1831
            "value": "Downloading shards: 100%"
1832
          }
1833
        },
1834
        "f549d20a326b4eeaa9e8f8694afc0f9d": {
1835
          "model_module": "@jupyter-widgets/controls",
1836
          "model_name": "FloatProgressModel",
1837
          "model_module_version": "1.5.0",
1838
          "state": {
1839
            "_dom_classes": [],
1840
            "_model_module": "@jupyter-widgets/controls",
1841
            "_model_module_version": "1.5.0",
1842
            "_model_name": "FloatProgressModel",
1843
            "_view_count": null,
1844
            "_view_module": "@jupyter-widgets/controls",
1845
            "_view_module_version": "1.5.0",
1846
            "_view_name": "ProgressView",
1847
            "bar_style": "success",
1848
            "description": "",
1849
            "description_tooltip": null,
1850
            "layout": "IPY_MODEL_32fbb6cf09ae4485b5e800d739a11ef9",
1851
            "max": 2,
1852
            "min": 0,
1853
            "orientation": "horizontal",
1854
            "style": "IPY_MODEL_4e98e5b117bd4a90866bc9bf8d397365",
1855
            "value": 2
1856
          }
1857
        },
1858
        "e6c39c8ec6d147e2b4376bf0a442ed1b": {
1859
          "model_module": "@jupyter-widgets/controls",
1860
          "model_name": "HTMLModel",
1861
          "model_module_version": "1.5.0",
1862
          "state": {
1863
            "_dom_classes": [],
1864
            "_model_module": "@jupyter-widgets/controls",
1865
            "_model_module_version": "1.5.0",
1866
            "_model_name": "HTMLModel",
1867
            "_view_count": null,
1868
            "_view_module": "@jupyter-widgets/controls",
1869
            "_view_module_version": "1.5.0",
1870
            "_view_name": "HTMLView",
1871
            "description": "",
1872
            "description_tooltip": null,
1873
            "layout": "IPY_MODEL_6fa04422b4f2473ebed8cc51bfb8bbf9",
1874
            "placeholder": "​",
1875
            "style": "IPY_MODEL_ebe4f4facd81490aaae3d9df1f84ef7a",
1876
            "value": " 2/2 [01:40&lt;00:00, 46.68s/it]"
1877
          }
1878
        },
1879
        "8f2db049d8d24fc0b804a451b97f38b1": {
1880
          "model_module": "@jupyter-widgets/base",
1881
          "model_name": "LayoutModel",
1882
          "model_module_version": "1.2.0",
1883
          "state": {
1884
            "_model_module": "@jupyter-widgets/base",
1885
            "_model_module_version": "1.2.0",
1886
            "_model_name": "LayoutModel",
1887
            "_view_count": null,
1888
            "_view_module": "@jupyter-widgets/base",
1889
            "_view_module_version": "1.2.0",
1890
            "_view_name": "LayoutView",
1891
            "align_content": null,
1892
            "align_items": null,
1893
            "align_self": null,
1894
            "border": null,
1895
            "bottom": null,
1896
            "display": null,
1897
            "flex": null,
1898
            "flex_flow": null,
1899
            "grid_area": null,
1900
            "grid_auto_columns": null,
1901
            "grid_auto_flow": null,
1902
            "grid_auto_rows": null,
1903
            "grid_column": null,
1904
            "grid_gap": null,
1905
            "grid_row": null,
1906
            "grid_template_areas": null,
1907
            "grid_template_columns": null,
1908
            "grid_template_rows": null,
1909
            "height": null,
1910
            "justify_content": null,
1911
            "justify_items": null,
1912
            "left": null,
1913
            "margin": null,
1914
            "max_height": null,
1915
            "max_width": null,
1916
            "min_height": null,
1917
            "min_width": null,
1918
            "object_fit": null,
1919
            "object_position": null,
1920
            "order": null,
1921
            "overflow": null,
1922
            "overflow_x": null,
1923
            "overflow_y": null,
1924
            "padding": null,
1925
            "right": null,
1926
            "top": null,
1927
            "visibility": null,
1928
            "width": null
1929
          }
1930
        },
1931
        "cf2f5777aaa943218c01002705ad49a4": {
1932
          "model_module": "@jupyter-widgets/base",
1933
          "model_name": "LayoutModel",
1934
          "model_module_version": "1.2.0",
1935
          "state": {
1936
            "_model_module": "@jupyter-widgets/base",
1937
            "_model_module_version": "1.2.0",
1938
            "_model_name": "LayoutModel",
1939
            "_view_count": null,
1940
            "_view_module": "@jupyter-widgets/base",
1941
            "_view_module_version": "1.2.0",
1942
            "_view_name": "LayoutView",
1943
            "align_content": null,
1944
            "align_items": null,
1945
            "align_self": null,
1946
            "border": null,
1947
            "bottom": null,
1948
            "display": null,
1949
            "flex": null,
1950
            "flex_flow": null,
1951
            "grid_area": null,
1952
            "grid_auto_columns": null,
1953
            "grid_auto_flow": null,
1954
            "grid_auto_rows": null,
1955
            "grid_column": null,
1956
            "grid_gap": null,
1957
            "grid_row": null,
1958
            "grid_template_areas": null,
1959
            "grid_template_columns": null,
1960
            "grid_template_rows": null,
1961
            "height": null,
1962
            "justify_content": null,
1963
            "justify_items": null,
1964
            "left": null,
1965
            "margin": null,
1966
            "max_height": null,
1967
            "max_width": null,
1968
            "min_height": null,
1969
            "min_width": null,
1970
            "object_fit": null,
1971
            "object_position": null,
1972
            "order": null,
1973
            "overflow": null,
1974
            "overflow_x": null,
1975
            "overflow_y": null,
1976
            "padding": null,
1977
            "right": null,
1978
            "top": null,
1979
            "visibility": null,
1980
            "width": null
1981
          }
1982
        },
1983
        "a1d585f864ec4f96a1facb1c8fd1f228": {
1984
          "model_module": "@jupyter-widgets/controls",
1985
          "model_name": "DescriptionStyleModel",
1986
          "model_module_version": "1.5.0",
1987
          "state": {
1988
            "_model_module": "@jupyter-widgets/controls",
1989
            "_model_module_version": "1.5.0",
1990
            "_model_name": "DescriptionStyleModel",
1991
            "_view_count": null,
1992
            "_view_module": "@jupyter-widgets/base",
1993
            "_view_module_version": "1.2.0",
1994
            "_view_name": "StyleView",
1995
            "description_width": ""
1996
          }
1997
        },
1998
        "32fbb6cf09ae4485b5e800d739a11ef9": {
1999
          "model_module": "@jupyter-widgets/base",
2000
          "model_name": "LayoutModel",
2001
          "model_module_version": "1.2.0",
2002
          "state": {
2003
            "_model_module": "@jupyter-widgets/base",
2004
            "_model_module_version": "1.2.0",
2005
            "_model_name": "LayoutModel",
2006
            "_view_count": null,
2007
            "_view_module": "@jupyter-widgets/base",
2008
            "_view_module_version": "1.2.0",
2009
            "_view_name": "LayoutView",
2010
            "align_content": null,
2011
            "align_items": null,
2012
            "align_self": null,
2013
            "border": null,
2014
            "bottom": null,
2015
            "display": null,
2016
            "flex": null,
2017
            "flex_flow": null,
2018
            "grid_area": null,
2019
            "grid_auto_columns": null,
2020
            "grid_auto_flow": null,
2021
            "grid_auto_rows": null,
2022
            "grid_column": null,
2023
            "grid_gap": null,
2024
            "grid_row": null,
2025
            "grid_template_areas": null,
2026
            "grid_template_columns": null,
2027
            "grid_template_rows": null,
2028
            "height": null,
2029
            "justify_content": null,
2030
            "justify_items": null,
2031
            "left": null,
2032
            "margin": null,
2033
            "max_height": null,
2034
            "max_width": null,
2035
            "min_height": null,
2036
            "min_width": null,
2037
            "object_fit": null,
2038
            "object_position": null,
2039
            "order": null,
2040
            "overflow": null,
2041
            "overflow_x": null,
2042
            "overflow_y": null,
2043
            "padding": null,
2044
            "right": null,
2045
            "top": null,
2046
            "visibility": null,
2047
            "width": null
2048
          }
2049
        },
2050
        "4e98e5b117bd4a90866bc9bf8d397365": {
2051
          "model_module": "@jupyter-widgets/controls",
2052
          "model_name": "ProgressStyleModel",
2053
          "model_module_version": "1.5.0",
2054
          "state": {
2055
            "_model_module": "@jupyter-widgets/controls",
2056
            "_model_module_version": "1.5.0",
2057
            "_model_name": "ProgressStyleModel",
2058
            "_view_count": null,
2059
            "_view_module": "@jupyter-widgets/base",
2060
            "_view_module_version": "1.2.0",
2061
            "_view_name": "StyleView",
2062
            "bar_color": null,
2063
            "description_width": ""
2064
          }
2065
        },
2066
        "6fa04422b4f2473ebed8cc51bfb8bbf9": {
2067
          "model_module": "@jupyter-widgets/base",
2068
          "model_name": "LayoutModel",
2069
          "model_module_version": "1.2.0",
2070
          "state": {
2071
            "_model_module": "@jupyter-widgets/base",
2072
            "_model_module_version": "1.2.0",
2073
            "_model_name": "LayoutModel",
2074
            "_view_count": null,
2075
            "_view_module": "@jupyter-widgets/base",
2076
            "_view_module_version": "1.2.0",
2077
            "_view_name": "LayoutView",
2078
            "align_content": null,
2079
            "align_items": null,
2080
            "align_self": null,
2081
            "border": null,
2082
            "bottom": null,
2083
            "display": null,
2084
            "flex": null,
2085
            "flex_flow": null,
2086
            "grid_area": null,
2087
            "grid_auto_columns": null,
2088
            "grid_auto_flow": null,
2089
            "grid_auto_rows": null,
2090
            "grid_column": null,
2091
            "grid_gap": null,
2092
            "grid_row": null,
2093
            "grid_template_areas": null,
2094
            "grid_template_columns": null,
2095
            "grid_template_rows": null,
2096
            "height": null,
2097
            "justify_content": null,
2098
            "justify_items": null,
2099
            "left": null,
2100
            "margin": null,
2101
            "max_height": null,
2102
            "max_width": null,
2103
            "min_height": null,
2104
            "min_width": null,
2105
            "object_fit": null,
2106
            "object_position": null,
2107
            "order": null,
2108
            "overflow": null,
2109
            "overflow_x": null,
2110
            "overflow_y": null,
2111
            "padding": null,
2112
            "right": null,
2113
            "top": null,
2114
            "visibility": null,
2115
            "width": null
2116
          }
2117
        },
2118
        "ebe4f4facd81490aaae3d9df1f84ef7a": {
2119
          "model_module": "@jupyter-widgets/controls",
2120
          "model_name": "DescriptionStyleModel",
2121
          "model_module_version": "1.5.0",
2122
          "state": {
2123
            "_model_module": "@jupyter-widgets/controls",
2124
            "_model_module_version": "1.5.0",
2125
            "_model_name": "DescriptionStyleModel",
2126
            "_view_count": null,
2127
            "_view_module": "@jupyter-widgets/base",
2128
            "_view_module_version": "1.2.0",
2129
            "_view_name": "StyleView",
2130
            "description_width": ""
2131
          }
2132
        },
2133
        "d5f20cf2d1354e54916a41d01958d663": {
2134
          "model_module": "@jupyter-widgets/controls",
2135
          "model_name": "HBoxModel",
2136
          "model_module_version": "1.5.0",
2137
          "state": {
2138
            "_dom_classes": [],
2139
            "_model_module": "@jupyter-widgets/controls",
2140
            "_model_module_version": "1.5.0",
2141
            "_model_name": "HBoxModel",
2142
            "_view_count": null,
2143
            "_view_module": "@jupyter-widgets/controls",
2144
            "_view_module_version": "1.5.0",
2145
            "_view_name": "HBoxView",
2146
            "box_style": "",
2147
            "children": [
2148
              "IPY_MODEL_3f28950c5a1b433fad59457f3bfd0986",
2149
              "IPY_MODEL_060d6ac506cb40d4a01202a1f43773a0",
2150
              "IPY_MODEL_6718ab690cbd471a80b04df221148ccb"
2151
            ],
2152
            "layout": "IPY_MODEL_d0a90bebc6ba424193998f6aa2871161"
2153
          }
2154
        },
2155
        "3f28950c5a1b433fad59457f3bfd0986": {
2156
          "model_module": "@jupyter-widgets/controls",
2157
          "model_name": "HTMLModel",
2158
          "model_module_version": "1.5.0",
2159
          "state": {
2160
            "_dom_classes": [],
2161
            "_model_module": "@jupyter-widgets/controls",
2162
            "_model_module_version": "1.5.0",
2163
            "_model_name": "HTMLModel",
2164
            "_view_count": null,
2165
            "_view_module": "@jupyter-widgets/controls",
2166
            "_view_module_version": "1.5.0",
2167
            "_view_name": "HTMLView",
2168
            "description": "",
2169
            "description_tooltip": null,
2170
            "layout": "IPY_MODEL_630bbfdad2514be7bd6480610ed94aae",
2171
            "placeholder": "​",
2172
            "style": "IPY_MODEL_61ced3c82e3d4299ac96838fee912cf7",
2173
            "value": "model-00001-of-00002.safetensors: 100%"
2174
          }
2175
        },
2176
        "060d6ac506cb40d4a01202a1f43773a0": {
2177
          "model_module": "@jupyter-widgets/controls",
2178
          "model_name": "FloatProgressModel",
2179
          "model_module_version": "1.5.0",
2180
          "state": {
2181
            "_dom_classes": [],
2182
            "_model_module": "@jupyter-widgets/controls",
2183
            "_model_module_version": "1.5.0",
2184
            "_model_name": "FloatProgressModel",
2185
            "_view_count": null,
2186
            "_view_module": "@jupyter-widgets/controls",
2187
            "_view_module_version": "1.5.0",
2188
            "_view_name": "ProgressView",
2189
            "bar_style": "success",
2190
            "description": "",
2191
            "description_tooltip": null,
2192
            "layout": "IPY_MODEL_6b6cad15707a4fc4b9a6798d25ab0fec",
2193
            "max": 9942981696,
2194
            "min": 0,
2195
            "orientation": "horizontal",
2196
            "style": "IPY_MODEL_922a346ec1c443ce8c5082015e3b771d",
2197
            "value": 9942981696
2198
          }
2199
        },
2200
        "6718ab690cbd471a80b04df221148ccb": {
2201
          "model_module": "@jupyter-widgets/controls",
2202
          "model_name": "HTMLModel",
2203
          "model_module_version": "1.5.0",
2204
          "state": {
2205
            "_dom_classes": [],
2206
            "_model_module": "@jupyter-widgets/controls",
2207
            "_model_module_version": "1.5.0",
2208
            "_model_name": "HTMLModel",
2209
            "_view_count": null,
2210
            "_view_module": "@jupyter-widgets/controls",
2211
            "_view_module_version": "1.5.0",
2212
            "_view_name": "HTMLView",
2213
            "description": "",
2214
            "description_tooltip": null,
2215
            "layout": "IPY_MODEL_d54b32439cf5402b8f0a5a2a71d23ffb",
2216
            "placeholder": "​",
2217
            "style": "IPY_MODEL_7867c50a7a46448a85e733a08a14074d",
2218
            "value": " 9.94G/9.94G [01:11&lt;00:00, 88.3MB/s]"
2219
          }
2220
        },
2221
        "d0a90bebc6ba424193998f6aa2871161": {
2222
          "model_module": "@jupyter-widgets/base",
2223
          "model_name": "LayoutModel",
2224
          "model_module_version": "1.2.0",
2225
          "state": {
2226
            "_model_module": "@jupyter-widgets/base",
2227
            "_model_module_version": "1.2.0",
2228
            "_model_name": "LayoutModel",
2229
            "_view_count": null,
2230
            "_view_module": "@jupyter-widgets/base",
2231
            "_view_module_version": "1.2.0",
2232
            "_view_name": "LayoutView",
2233
            "align_content": null,
2234
            "align_items": null,
2235
            "align_self": null,
2236
            "border": null,
2237
            "bottom": null,
2238
            "display": null,
2239
            "flex": null,
2240
            "flex_flow": null,
2241
            "grid_area": null,
2242
            "grid_auto_columns": null,
2243
            "grid_auto_flow": null,
2244
            "grid_auto_rows": null,
2245
            "grid_column": null,
2246
            "grid_gap": null,
2247
            "grid_row": null,
2248
            "grid_template_areas": null,
2249
            "grid_template_columns": null,
2250
            "grid_template_rows": null,
2251
            "height": null,
2252
            "justify_content": null,
2253
            "justify_items": null,
2254
            "left": null,
2255
            "margin": null,
2256
            "max_height": null,
2257
            "max_width": null,
2258
            "min_height": null,
2259
            "min_width": null,
2260
            "object_fit": null,
2261
            "object_position": null,
2262
            "order": null,
2263
            "overflow": null,
2264
            "overflow_x": null,
2265
            "overflow_y": null,
2266
            "padding": null,
2267
            "right": null,
2268
            "top": null,
2269
            "visibility": null,
2270
            "width": null
2271
          }
2272
        },
2273
        "630bbfdad2514be7bd6480610ed94aae": {
2274
          "model_module": "@jupyter-widgets/base",
2275
          "model_name": "LayoutModel",
2276
          "model_module_version": "1.2.0",
2277
          "state": {
2278
            "_model_module": "@jupyter-widgets/base",
2279
            "_model_module_version": "1.2.0",
2280
            "_model_name": "LayoutModel",
2281
            "_view_count": null,
2282
            "_view_module": "@jupyter-widgets/base",
2283
            "_view_module_version": "1.2.0",
2284
            "_view_name": "LayoutView",
2285
            "align_content": null,
2286
            "align_items": null,
2287
            "align_self": null,
2288
            "border": null,
2289
            "bottom": null,
2290
            "display": null,
2291
            "flex": null,
2292
            "flex_flow": null,
2293
            "grid_area": null,
2294
            "grid_auto_columns": null,
2295
            "grid_auto_flow": null,
2296
            "grid_auto_rows": null,
2297
            "grid_column": null,
2298
            "grid_gap": null,
2299
            "grid_row": null,
2300
            "grid_template_areas": null,
2301
            "grid_template_columns": null,
2302
            "grid_template_rows": null,
2303
            "height": null,
2304
            "justify_content": null,
2305
            "justify_items": null,
2306
            "left": null,
2307
            "margin": null,
2308
            "max_height": null,
2309
            "max_width": null,
2310
            "min_height": null,
2311
            "min_width": null,
2312
            "object_fit": null,
2313
            "object_position": null,
2314
            "order": null,
2315
            "overflow": null,
2316
            "overflow_x": null,
2317
            "overflow_y": null,
2318
            "padding": null,
2319
            "right": null,
2320
            "top": null,
2321
            "visibility": null,
2322
            "width": null
2323
          }
2324
        },
2325
        "61ced3c82e3d4299ac96838fee912cf7": {
2326
          "model_module": "@jupyter-widgets/controls",
2327
          "model_name": "DescriptionStyleModel",
2328
          "model_module_version": "1.5.0",
2329
          "state": {
2330
            "_model_module": "@jupyter-widgets/controls",
2331
            "_model_module_version": "1.5.0",
2332
            "_model_name": "DescriptionStyleModel",
2333
            "_view_count": null,
2334
            "_view_module": "@jupyter-widgets/base",
2335
            "_view_module_version": "1.2.0",
2336
            "_view_name": "StyleView",
2337
            "description_width": ""
2338
          }
2339
        },
2340
        "6b6cad15707a4fc4b9a6798d25ab0fec": {
2341
          "model_module": "@jupyter-widgets/base",
2342
          "model_name": "LayoutModel",
2343
          "model_module_version": "1.2.0",
2344
          "state": {
2345
            "_model_module": "@jupyter-widgets/base",
2346
            "_model_module_version": "1.2.0",
2347
            "_model_name": "LayoutModel",
2348
            "_view_count": null,
2349
            "_view_module": "@jupyter-widgets/base",
2350
            "_view_module_version": "1.2.0",
2351
            "_view_name": "LayoutView",
2352
            "align_content": null,
2353
            "align_items": null,
2354
            "align_self": null,
2355
            "border": null,
2356
            "bottom": null,
2357
            "display": null,
2358
            "flex": null,
2359
            "flex_flow": null,
2360
            "grid_area": null,
2361
            "grid_auto_columns": null,
2362
            "grid_auto_flow": null,
2363
            "grid_auto_rows": null,
2364
            "grid_column": null,
2365
            "grid_gap": null,
2366
            "grid_row": null,
2367
            "grid_template_areas": null,
2368
            "grid_template_columns": null,
2369
            "grid_template_rows": null,
2370
            "height": null,
2371
            "justify_content": null,
2372
            "justify_items": null,
2373
            "left": null,
2374
            "margin": null,
2375
            "max_height": null,
2376
            "max_width": null,
2377
            "min_height": null,
2378
            "min_width": null,
2379
            "object_fit": null,
2380
            "object_position": null,
2381
            "order": null,
2382
            "overflow": null,
2383
            "overflow_x": null,
2384
            "overflow_y": null,
2385
            "padding": null,
2386
            "right": null,
2387
            "top": null,
2388
            "visibility": null,
2389
            "width": null
2390
          }
2391
        },
2392
        "922a346ec1c443ce8c5082015e3b771d": {
2393
          "model_module": "@jupyter-widgets/controls",
2394
          "model_name": "ProgressStyleModel",
2395
          "model_module_version": "1.5.0",
2396
          "state": {
2397
            "_model_module": "@jupyter-widgets/controls",
2398
            "_model_module_version": "1.5.0",
2399
            "_model_name": "ProgressStyleModel",
2400
            "_view_count": null,
2401
            "_view_module": "@jupyter-widgets/base",
2402
            "_view_module_version": "1.2.0",
2403
            "_view_name": "StyleView",
2404
            "bar_color": null,
2405
            "description_width": ""
2406
          }
2407
        },
2408
        "d54b32439cf5402b8f0a5a2a71d23ffb": {
2409
          "model_module": "@jupyter-widgets/base",
2410
          "model_name": "LayoutModel",
2411
          "model_module_version": "1.2.0",
2412
          "state": {
2413
            "_model_module": "@jupyter-widgets/base",
2414
            "_model_module_version": "1.2.0",
2415
            "_model_name": "LayoutModel",
2416
            "_view_count": null,
2417
            "_view_module": "@jupyter-widgets/base",
2418
            "_view_module_version": "1.2.0",
2419
            "_view_name": "LayoutView",
2420
            "align_content": null,
2421
            "align_items": null,
2422
            "align_self": null,
2423
            "border": null,
2424
            "bottom": null,
2425
            "display": null,
2426
            "flex": null,
2427
            "flex_flow": null,
2428
            "grid_area": null,
2429
            "grid_auto_columns": null,
2430
            "grid_auto_flow": null,
2431
            "grid_auto_rows": null,
2432
            "grid_column": null,
2433
            "grid_gap": null,
2434
            "grid_row": null,
2435
            "grid_template_areas": null,
2436
            "grid_template_columns": null,
2437
            "grid_template_rows": null,
2438
            "height": null,
2439
            "justify_content": null,
2440
            "justify_items": null,
2441
            "left": null,
2442
            "margin": null,
2443
            "max_height": null,
2444
            "max_width": null,
2445
            "min_height": null,
2446
            "min_width": null,
2447
            "object_fit": null,
2448
            "object_position": null,
2449
            "order": null,
2450
            "overflow": null,
2451
            "overflow_x": null,
2452
            "overflow_y": null,
2453
            "padding": null,
2454
            "right": null,
2455
            "top": null,
2456
            "visibility": null,
2457
            "width": null
2458
          }
2459
        },
2460
        "7867c50a7a46448a85e733a08a14074d": {
2461
          "model_module": "@jupyter-widgets/controls",
2462
          "model_name": "DescriptionStyleModel",
2463
          "model_module_version": "1.5.0",
2464
          "state": {
2465
            "_model_module": "@jupyter-widgets/controls",
2466
            "_model_module_version": "1.5.0",
2467
            "_model_name": "DescriptionStyleModel",
2468
            "_view_count": null,
2469
            "_view_module": "@jupyter-widgets/base",
2470
            "_view_module_version": "1.2.0",
2471
            "_view_name": "StyleView",
2472
            "description_width": ""
2473
          }
2474
        },
2475
        "ad18e4416984499686863f51bc363a75": {
2476
          "model_module": "@jupyter-widgets/controls",
2477
          "model_name": "HBoxModel",
2478
          "model_module_version": "1.5.0",
2479
          "state": {
2480
            "_dom_classes": [],
2481
            "_model_module": "@jupyter-widgets/controls",
2482
            "_model_module_version": "1.5.0",
2483
            "_model_name": "HBoxModel",
2484
            "_view_count": null,
2485
            "_view_module": "@jupyter-widgets/controls",
2486
            "_view_module_version": "1.5.0",
2487
            "_view_name": "HBoxView",
2488
            "box_style": "",
2489
            "children": [
2490
              "IPY_MODEL_7c623e92720348ad8be453d2f9c8c10e",
2491
              "IPY_MODEL_67f9b070448648698e34ba6dce2140e4",
2492
              "IPY_MODEL_98c3b7b7483d40a7a92de523fa972dd0"
2493
            ],
2494
            "layout": "IPY_MODEL_9ee6cee7294d45cb955f70fb1d7ec588"
2495
          }
2496
        },
2497
        "7c623e92720348ad8be453d2f9c8c10e": {
2498
          "model_module": "@jupyter-widgets/controls",
2499
          "model_name": "HTMLModel",
2500
          "model_module_version": "1.5.0",
2501
          "state": {
2502
            "_dom_classes": [],
2503
            "_model_module": "@jupyter-widgets/controls",
2504
            "_model_module_version": "1.5.0",
2505
            "_model_name": "HTMLModel",
2506
            "_view_count": null,
2507
            "_view_module": "@jupyter-widgets/controls",
2508
            "_view_module_version": "1.5.0",
2509
            "_view_name": "HTMLView",
2510
            "description": "",
2511
            "description_tooltip": null,
2512
            "layout": "IPY_MODEL_c4040a2d270a4738b80e25d49db207d4",
2513
            "placeholder": "​",
2514
            "style": "IPY_MODEL_c49a18d373fa4949b3be1c9ab15e99fd",
2515
            "value": "model-00002-of-00002.safetensors: 100%"
2516
          }
2517
        },
2518
        "67f9b070448648698e34ba6dce2140e4": {
2519
          "model_module": "@jupyter-widgets/controls",
2520
          "model_name": "FloatProgressModel",
2521
          "model_module_version": "1.5.0",
2522
          "state": {
2523
            "_dom_classes": [],
2524
            "_model_module": "@jupyter-widgets/controls",
2525
            "_model_module_version": "1.5.0",
2526
            "_model_name": "FloatProgressModel",
2527
            "_view_count": null,
2528
            "_view_module": "@jupyter-widgets/controls",
2529
            "_view_module_version": "1.5.0",
2530
            "_view_name": "ProgressView",
2531
            "bar_style": "success",
2532
            "description": "",
2533
            "description_tooltip": null,
2534
            "layout": "IPY_MODEL_84d4c96405f945a58f3cbb6bd524ba08",
2535
            "max": 4540516344,
2536
            "min": 0,
2537
            "orientation": "horizontal",
2538
            "style": "IPY_MODEL_6f3ae0267d954f26bc961f6d645f2b9a",
2539
            "value": 4540516344
2540
          }
2541
        },
2542
        "98c3b7b7483d40a7a92de523fa972dd0": {
2543
          "model_module": "@jupyter-widgets/controls",
2544
          "model_name": "HTMLModel",
2545
          "model_module_version": "1.5.0",
2546
          "state": {
2547
            "_dom_classes": [],
2548
            "_model_module": "@jupyter-widgets/controls",
2549
            "_model_module_version": "1.5.0",
2550
            "_model_name": "HTMLModel",
2551
            "_view_count": null,
2552
            "_view_module": "@jupyter-widgets/controls",
2553
            "_view_module_version": "1.5.0",
2554
            "_view_name": "HTMLView",
2555
            "description": "",
2556
            "description_tooltip": null,
2557
            "layout": "IPY_MODEL_972e6dc2d6e54a948e5e4690cc9b93ab",
2558
            "placeholder": "​",
2559
            "style": "IPY_MODEL_d7db41f69a624e79bc57b15e9d2f9696",
2560
            "value": " 4.54G/4.54G [00:28&lt;00:00, 302MB/s]"
2561
          }
2562
        },
2563
        "9ee6cee7294d45cb955f70fb1d7ec588": {
2564
          "model_module": "@jupyter-widgets/base",
2565
          "model_name": "LayoutModel",
2566
          "model_module_version": "1.2.0",
2567
          "state": {
2568
            "_model_module": "@jupyter-widgets/base",
2569
            "_model_module_version": "1.2.0",
2570
            "_model_name": "LayoutModel",
2571
            "_view_count": null,
2572
            "_view_module": "@jupyter-widgets/base",
2573
            "_view_module_version": "1.2.0",
2574
            "_view_name": "LayoutView",
2575
            "align_content": null,
2576
            "align_items": null,
2577
            "align_self": null,
2578
            "border": null,
2579
            "bottom": null,
2580
            "display": null,
2581
            "flex": null,
2582
            "flex_flow": null,
2583
            "grid_area": null,
2584
            "grid_auto_columns": null,
2585
            "grid_auto_flow": null,
2586
            "grid_auto_rows": null,
2587
            "grid_column": null,
2588
            "grid_gap": null,
2589
            "grid_row": null,
2590
            "grid_template_areas": null,
2591
            "grid_template_columns": null,
2592
            "grid_template_rows": null,
2593
            "height": null,
2594
            "justify_content": null,
2595
            "justify_items": null,
2596
            "left": null,
2597
            "margin": null,
2598
            "max_height": null,
2599
            "max_width": null,
2600
            "min_height": null,
2601
            "min_width": null,
2602
            "object_fit": null,
2603
            "object_position": null,
2604
            "order": null,
2605
            "overflow": null,
2606
            "overflow_x": null,
2607
            "overflow_y": null,
2608
            "padding": null,
2609
            "right": null,
2610
            "top": null,
2611
            "visibility": null,
2612
            "width": null
2613
          }
2614
        },
2615
        "c4040a2d270a4738b80e25d49db207d4": {
2616
          "model_module": "@jupyter-widgets/base",
2617
          "model_name": "LayoutModel",
2618
          "model_module_version": "1.2.0",
2619
          "state": {
2620
            "_model_module": "@jupyter-widgets/base",
2621
            "_model_module_version": "1.2.0",
2622
            "_model_name": "LayoutModel",
2623
            "_view_count": null,
2624
            "_view_module": "@jupyter-widgets/base",
2625
            "_view_module_version": "1.2.0",
2626
            "_view_name": "LayoutView",
2627
            "align_content": null,
2628
            "align_items": null,
2629
            "align_self": null,
2630
            "border": null,
2631
            "bottom": null,
2632
            "display": null,
2633
            "flex": null,
2634
            "flex_flow": null,
2635
            "grid_area": null,
2636
            "grid_auto_columns": null,
2637
            "grid_auto_flow": null,
2638
            "grid_auto_rows": null,
2639
            "grid_column": null,
2640
            "grid_gap": null,
2641
            "grid_row": null,
2642
            "grid_template_areas": null,
2643
            "grid_template_columns": null,
2644
            "grid_template_rows": null,
2645
            "height": null,
2646
            "justify_content": null,
2647
            "justify_items": null,
2648
            "left": null,
2649
            "margin": null,
2650
            "max_height": null,
2651
            "max_width": null,
2652
            "min_height": null,
2653
            "min_width": null,
2654
            "object_fit": null,
2655
            "object_position": null,
2656
            "order": null,
2657
            "overflow": null,
2658
            "overflow_x": null,
2659
            "overflow_y": null,
2660
            "padding": null,
2661
            "right": null,
2662
            "top": null,
2663
            "visibility": null,
2664
            "width": null
2665
          }
2666
        },
2667
        "c49a18d373fa4949b3be1c9ab15e99fd": {
2668
          "model_module": "@jupyter-widgets/controls",
2669
          "model_name": "DescriptionStyleModel",
2670
          "model_module_version": "1.5.0",
2671
          "state": {
2672
            "_model_module": "@jupyter-widgets/controls",
2673
            "_model_module_version": "1.5.0",
2674
            "_model_name": "DescriptionStyleModel",
2675
            "_view_count": null,
2676
            "_view_module": "@jupyter-widgets/base",
2677
            "_view_module_version": "1.2.0",
2678
            "_view_name": "StyleView",
2679
            "description_width": ""
2680
          }
2681
        },
2682
        "84d4c96405f945a58f3cbb6bd524ba08": {
2683
          "model_module": "@jupyter-widgets/base",
2684
          "model_name": "LayoutModel",
2685
          "model_module_version": "1.2.0",
2686
          "state": {
2687
            "_model_module": "@jupyter-widgets/base",
2688
            "_model_module_version": "1.2.0",
2689
            "_model_name": "LayoutModel",
2690
            "_view_count": null,
2691
            "_view_module": "@jupyter-widgets/base",
2692
            "_view_module_version": "1.2.0",
2693
            "_view_name": "LayoutView",
2694
            "align_content": null,
2695
            "align_items": null,
2696
            "align_self": null,
2697
            "border": null,
2698
            "bottom": null,
2699
            "display": null,
2700
            "flex": null,
2701
            "flex_flow": null,
2702
            "grid_area": null,
2703
            "grid_auto_columns": null,
2704
            "grid_auto_flow": null,
2705
            "grid_auto_rows": null,
2706
            "grid_column": null,
2707
            "grid_gap": null,
2708
            "grid_row": null,
2709
            "grid_template_areas": null,
2710
            "grid_template_columns": null,
2711
            "grid_template_rows": null,
2712
            "height": null,
2713
            "justify_content": null,
2714
            "justify_items": null,
2715
            "left": null,
2716
            "margin": null,
2717
            "max_height": null,
2718
            "max_width": null,
2719
            "min_height": null,
2720
            "min_width": null,
2721
            "object_fit": null,
2722
            "object_position": null,
2723
            "order": null,
2724
            "overflow": null,
2725
            "overflow_x": null,
2726
            "overflow_y": null,
2727
            "padding": null,
2728
            "right": null,
2729
            "top": null,
2730
            "visibility": null,
2731
            "width": null
2732
          }
2733
        },
2734
        "6f3ae0267d954f26bc961f6d645f2b9a": {
2735
          "model_module": "@jupyter-widgets/controls",
2736
          "model_name": "ProgressStyleModel",
2737
          "model_module_version": "1.5.0",
2738
          "state": {
2739
            "_model_module": "@jupyter-widgets/controls",
2740
            "_model_module_version": "1.5.0",
2741
            "_model_name": "ProgressStyleModel",
2742
            "_view_count": null,
2743
            "_view_module": "@jupyter-widgets/base",
2744
            "_view_module_version": "1.2.0",
2745
            "_view_name": "StyleView",
2746
            "bar_color": null,
2747
            "description_width": ""
2748
          }
2749
        },
2750
        "972e6dc2d6e54a948e5e4690cc9b93ab": {
2751
          "model_module": "@jupyter-widgets/base",
2752
          "model_name": "LayoutModel",
2753
          "model_module_version": "1.2.0",
2754
          "state": {
2755
            "_model_module": "@jupyter-widgets/base",
2756
            "_model_module_version": "1.2.0",
2757
            "_model_name": "LayoutModel",
2758
            "_view_count": null,
2759
            "_view_module": "@jupyter-widgets/base",
2760
            "_view_module_version": "1.2.0",
2761
            "_view_name": "LayoutView",
2762
            "align_content": null,
2763
            "align_items": null,
2764
            "align_self": null,
2765
            "border": null,
2766
            "bottom": null,
2767
            "display": null,
2768
            "flex": null,
2769
            "flex_flow": null,
2770
            "grid_area": null,
2771
            "grid_auto_columns": null,
2772
            "grid_auto_flow": null,
2773
            "grid_auto_rows": null,
2774
            "grid_column": null,
2775
            "grid_gap": null,
2776
            "grid_row": null,
2777
            "grid_template_areas": null,
2778
            "grid_template_columns": null,
2779
            "grid_template_rows": null,
2780
            "height": null,
2781
            "justify_content": null,
2782
            "justify_items": null,
2783
            "left": null,
2784
            "margin": null,
2785
            "max_height": null,
2786
            "max_width": null,
2787
            "min_height": null,
2788
            "min_width": null,
2789
            "object_fit": null,
2790
            "object_position": null,
2791
            "order": null,
2792
            "overflow": null,
2793
            "overflow_x": null,
2794
            "overflow_y": null,
2795
            "padding": null,
2796
            "right": null,
2797
            "top": null,
2798
            "visibility": null,
2799
            "width": null
2800
          }
2801
        },
2802
        "d7db41f69a624e79bc57b15e9d2f9696": {
2803
          "model_module": "@jupyter-widgets/controls",
2804
          "model_name": "DescriptionStyleModel",
2805
          "model_module_version": "1.5.0",
2806
          "state": {
2807
            "_model_module": "@jupyter-widgets/controls",
2808
            "_model_module_version": "1.5.0",
2809
            "_model_name": "DescriptionStyleModel",
2810
            "_view_count": null,
2811
            "_view_module": "@jupyter-widgets/base",
2812
            "_view_module_version": "1.2.0",
2813
            "_view_name": "StyleView",
2814
            "description_width": ""
2815
          }
2816
        },
2817
        "91eebcebff2847dd923301c7722e2c99": {
2818
          "model_module": "@jupyter-widgets/controls",
2819
          "model_name": "HBoxModel",
2820
          "model_module_version": "1.5.0",
2821
          "state": {
2822
            "_dom_classes": [],
2823
            "_model_module": "@jupyter-widgets/controls",
2824
            "_model_module_version": "1.5.0",
2825
            "_model_name": "HBoxModel",
2826
            "_view_count": null,
2827
            "_view_module": "@jupyter-widgets/controls",
2828
            "_view_module_version": "1.5.0",
2829
            "_view_name": "HBoxView",
2830
            "box_style": "",
2831
            "children": [
2832
              "IPY_MODEL_271682b7217b4205b43dfd89e801efe2",
2833
              "IPY_MODEL_b25a6da9b9cb48ebb01d8f1e8577cbd6",
2834
              "IPY_MODEL_1590c52cba7a41388b30be59b8225a3d"
2835
            ],
2836
            "layout": "IPY_MODEL_aeb3fb1572034a84927e8df385126915"
2837
          }
2838
        },
2839
        "271682b7217b4205b43dfd89e801efe2": {
2840
          "model_module": "@jupyter-widgets/controls",
2841
          "model_name": "HTMLModel",
2842
          "model_module_version": "1.5.0",
2843
          "state": {
2844
            "_dom_classes": [],
2845
            "_model_module": "@jupyter-widgets/controls",
2846
            "_model_module_version": "1.5.0",
2847
            "_model_name": "HTMLModel",
2848
            "_view_count": null,
2849
            "_view_module": "@jupyter-widgets/controls",
2850
            "_view_module_version": "1.5.0",
2851
            "_view_name": "HTMLView",
2852
            "description": "",
2853
            "description_tooltip": null,
2854
            "layout": "IPY_MODEL_a35ab30440bc40b7a6cb4262d6289c2c",
2855
            "placeholder": "​",
2856
            "style": "IPY_MODEL_548e397f8e3a47a9bcaa7ba2c1f4ae48",
2857
            "value": "Loading checkpoint shards: 100%"
2858
          }
2859
        },
2860
        "b25a6da9b9cb48ebb01d8f1e8577cbd6": {
2861
          "model_module": "@jupyter-widgets/controls",
2862
          "model_name": "FloatProgressModel",
2863
          "model_module_version": "1.5.0",
2864
          "state": {
2865
            "_dom_classes": [],
2866
            "_model_module": "@jupyter-widgets/controls",
2867
            "_model_module_version": "1.5.0",
2868
            "_model_name": "FloatProgressModel",
2869
            "_view_count": null,
2870
            "_view_module": "@jupyter-widgets/controls",
2871
            "_view_module_version": "1.5.0",
2872
            "_view_name": "ProgressView",
2873
            "bar_style": "success",
2874
            "description": "",
2875
            "description_tooltip": null,
2876
            "layout": "IPY_MODEL_56fb139dd067428696acafeb2a9ee5e2",
2877
            "max": 2,
2878
            "min": 0,
2879
            "orientation": "horizontal",
2880
            "style": "IPY_MODEL_7462a3aac96d442e9d6b93af57dc0be9",
2881
            "value": 2
2882
          }
2883
        },
2884
        "1590c52cba7a41388b30be59b8225a3d": {
2885
          "model_module": "@jupyter-widgets/controls",
2886
          "model_name": "HTMLModel",
2887
          "model_module_version": "1.5.0",
2888
          "state": {
2889
            "_dom_classes": [],
2890
            "_model_module": "@jupyter-widgets/controls",
2891
            "_model_module_version": "1.5.0",
2892
            "_model_name": "HTMLModel",
2893
            "_view_count": null,
2894
            "_view_module": "@jupyter-widgets/controls",
2895
            "_view_module_version": "1.5.0",
2896
            "_view_name": "HTMLView",
2897
            "description": "",
2898
            "description_tooltip": null,
2899
            "layout": "IPY_MODEL_4621e0960953441c9012a40de237e416",
2900
            "placeholder": "​",
2901
            "style": "IPY_MODEL_4517f87fdc9e44aa9b8426d11613e76a",
2902
            "value": " 2/2 [01:06&lt;00:00, 31.22s/it]"
2903
          }
2904
        },
2905
        "aeb3fb1572034a84927e8df385126915": {
2906
          "model_module": "@jupyter-widgets/base",
2907
          "model_name": "LayoutModel",
2908
          "model_module_version": "1.2.0",
2909
          "state": {
2910
            "_model_module": "@jupyter-widgets/base",
2911
            "_model_module_version": "1.2.0",
2912
            "_model_name": "LayoutModel",
2913
            "_view_count": null,
2914
            "_view_module": "@jupyter-widgets/base",
2915
            "_view_module_version": "1.2.0",
2916
            "_view_name": "LayoutView",
2917
            "align_content": null,
2918
            "align_items": null,
2919
            "align_self": null,
2920
            "border": null,
2921
            "bottom": null,
2922
            "display": null,
2923
            "flex": null,
2924
            "flex_flow": null,
2925
            "grid_area": null,
2926
            "grid_auto_columns": null,
2927
            "grid_auto_flow": null,
2928
            "grid_auto_rows": null,
2929
            "grid_column": null,
2930
            "grid_gap": null,
2931
            "grid_row": null,
2932
            "grid_template_areas": null,
2933
            "grid_template_columns": null,
2934
            "grid_template_rows": null,
2935
            "height": null,
2936
            "justify_content": null,
2937
            "justify_items": null,
2938
            "left": null,
2939
            "margin": null,
2940
            "max_height": null,
2941
            "max_width": null,
2942
            "min_height": null,
2943
            "min_width": null,
2944
            "object_fit": null,
2945
            "object_position": null,
2946
            "order": null,
2947
            "overflow": null,
2948
            "overflow_x": null,
2949
            "overflow_y": null,
2950
            "padding": null,
2951
            "right": null,
2952
            "top": null,
2953
            "visibility": null,
2954
            "width": null
2955
          }
2956
        },
2957
        "a35ab30440bc40b7a6cb4262d6289c2c": {
2958
          "model_module": "@jupyter-widgets/base",
2959
          "model_name": "LayoutModel",
2960
          "model_module_version": "1.2.0",
2961
          "state": {
2962
            "_model_module": "@jupyter-widgets/base",
2963
            "_model_module_version": "1.2.0",
2964
            "_model_name": "LayoutModel",
2965
            "_view_count": null,
2966
            "_view_module": "@jupyter-widgets/base",
2967
            "_view_module_version": "1.2.0",
2968
            "_view_name": "LayoutView",
2969
            "align_content": null,
2970
            "align_items": null,
2971
            "align_self": null,
2972
            "border": null,
2973
            "bottom": null,
2974
            "display": null,
2975
            "flex": null,
2976
            "flex_flow": null,
2977
            "grid_area": null,
2978
            "grid_auto_columns": null,
2979
            "grid_auto_flow": null,
2980
            "grid_auto_rows": null,
2981
            "grid_column": null,
2982
            "grid_gap": null,
2983
            "grid_row": null,
2984
            "grid_template_areas": null,
2985
            "grid_template_columns": null,
2986
            "grid_template_rows": null,
2987
            "height": null,
2988
            "justify_content": null,
2989
            "justify_items": null,
2990
            "left": null,
2991
            "margin": null,
2992
            "max_height": null,
2993
            "max_width": null,
2994
            "min_height": null,
2995
            "min_width": null,
2996
            "object_fit": null,
2997
            "object_position": null,
2998
            "order": null,
2999
            "overflow": null,
3000
            "overflow_x": null,
3001
            "overflow_y": null,
3002
            "padding": null,
3003
            "right": null,
3004
            "top": null,
3005
            "visibility": null,
3006
            "width": null
3007
          }
3008
        },
3009
        "548e397f8e3a47a9bcaa7ba2c1f4ae48": {
3010
          "model_module": "@jupyter-widgets/controls",
3011
          "model_name": "DescriptionStyleModel",
3012
          "model_module_version": "1.5.0",
3013
          "state": {
3014
            "_model_module": "@jupyter-widgets/controls",
3015
            "_model_module_version": "1.5.0",
3016
            "_model_name": "DescriptionStyleModel",
3017
            "_view_count": null,
3018
            "_view_module": "@jupyter-widgets/base",
3019
            "_view_module_version": "1.2.0",
3020
            "_view_name": "StyleView",
3021
            "description_width": ""
3022
          }
3023
        },
3024
        "56fb139dd067428696acafeb2a9ee5e2": {
3025
          "model_module": "@jupyter-widgets/base",
3026
          "model_name": "LayoutModel",
3027
          "model_module_version": "1.2.0",
3028
          "state": {
3029
            "_model_module": "@jupyter-widgets/base",
3030
            "_model_module_version": "1.2.0",
3031
            "_model_name": "LayoutModel",
3032
            "_view_count": null,
3033
            "_view_module": "@jupyter-widgets/base",
3034
            "_view_module_version": "1.2.0",
3035
            "_view_name": "LayoutView",
3036
            "align_content": null,
3037
            "align_items": null,
3038
            "align_self": null,
3039
            "border": null,
3040
            "bottom": null,
3041
            "display": null,
3042
            "flex": null,
3043
            "flex_flow": null,
3044
            "grid_area": null,
3045
            "grid_auto_columns": null,
3046
            "grid_auto_flow": null,
3047
            "grid_auto_rows": null,
3048
            "grid_column": null,
3049
            "grid_gap": null,
3050
            "grid_row": null,
3051
            "grid_template_areas": null,
3052
            "grid_template_columns": null,
3053
            "grid_template_rows": null,
3054
            "height": null,
3055
            "justify_content": null,
3056
            "justify_items": null,
3057
            "left": null,
3058
            "margin": null,
3059
            "max_height": null,
3060
            "max_width": null,
3061
            "min_height": null,
3062
            "min_width": null,
3063
            "object_fit": null,
3064
            "object_position": null,
3065
            "order": null,
3066
            "overflow": null,
3067
            "overflow_x": null,
3068
            "overflow_y": null,
3069
            "padding": null,
3070
            "right": null,
3071
            "top": null,
3072
            "visibility": null,
3073
            "width": null
3074
          }
3075
        },
3076
        "7462a3aac96d442e9d6b93af57dc0be9": {
3077
          "model_module": "@jupyter-widgets/controls",
3078
          "model_name": "ProgressStyleModel",
3079
          "model_module_version": "1.5.0",
3080
          "state": {
3081
            "_model_module": "@jupyter-widgets/controls",
3082
            "_model_module_version": "1.5.0",
3083
            "_model_name": "ProgressStyleModel",
3084
            "_view_count": null,
3085
            "_view_module": "@jupyter-widgets/base",
3086
            "_view_module_version": "1.2.0",
3087
            "_view_name": "StyleView",
3088
            "bar_color": null,
3089
            "description_width": ""
3090
          }
3091
        },
3092
        "4621e0960953441c9012a40de237e416": {
3093
          "model_module": "@jupyter-widgets/base",
3094
          "model_name": "LayoutModel",
3095
          "model_module_version": "1.2.0",
3096
          "state": {
3097
            "_model_module": "@jupyter-widgets/base",
3098
            "_model_module_version": "1.2.0",
3099
            "_model_name": "LayoutModel",
3100
            "_view_count": null,
3101
            "_view_module": "@jupyter-widgets/base",
3102
            "_view_module_version": "1.2.0",
3103
            "_view_name": "LayoutView",
3104
            "align_content": null,
3105
            "align_items": null,
3106
            "align_self": null,
3107
            "border": null,
3108
            "bottom": null,
3109
            "display": null,
3110
            "flex": null,
3111
            "flex_flow": null,
3112
            "grid_area": null,
3113
            "grid_auto_columns": null,
3114
            "grid_auto_flow": null,
3115
            "grid_auto_rows": null,
3116
            "grid_column": null,
3117
            "grid_gap": null,
3118
            "grid_row": null,
3119
            "grid_template_areas": null,
3120
            "grid_template_columns": null,
3121
            "grid_template_rows": null,
3122
            "height": null,
3123
            "justify_content": null,
3124
            "justify_items": null,
3125
            "left": null,
3126
            "margin": null,
3127
            "max_height": null,
3128
            "max_width": null,
3129
            "min_height": null,
3130
            "min_width": null,
3131
            "object_fit": null,
3132
            "object_position": null,
3133
            "order": null,
3134
            "overflow": null,
3135
            "overflow_x": null,
3136
            "overflow_y": null,
3137
            "padding": null,
3138
            "right": null,
3139
            "top": null,
3140
            "visibility": null,
3141
            "width": null
3142
          }
3143
        },
3144
        "4517f87fdc9e44aa9b8426d11613e76a": {
3145
          "model_module": "@jupyter-widgets/controls",
3146
          "model_name": "DescriptionStyleModel",
3147
          "model_module_version": "1.5.0",
3148
          "state": {
3149
            "_model_module": "@jupyter-widgets/controls",
3150
            "_model_module_version": "1.5.0",
3151
            "_model_name": "DescriptionStyleModel",
3152
            "_view_count": null,
3153
            "_view_module": "@jupyter-widgets/base",
3154
            "_view_module_version": "1.2.0",
3155
            "_view_name": "StyleView",
3156
            "description_width": ""
3157
          }
3158
        },
3159
        "d08ce15ed7ad4efb828b74f915784ec3": {
3160
          "model_module": "@jupyter-widgets/controls",
3161
          "model_name": "HBoxModel",
3162
          "model_module_version": "1.5.0",
3163
          "state": {
3164
            "_dom_classes": [],
3165
            "_model_module": "@jupyter-widgets/controls",
3166
            "_model_module_version": "1.5.0",
3167
            "_model_name": "HBoxModel",
3168
            "_view_count": null,
3169
            "_view_module": "@jupyter-widgets/controls",
3170
            "_view_module_version": "1.5.0",
3171
            "_view_name": "HBoxView",
3172
            "box_style": "",
3173
            "children": [
3174
              "IPY_MODEL_7a99db0f716544448a19210f8690f9b0",
3175
              "IPY_MODEL_4ae5f91a5ddb47e6ad710dbba9e80187",
3176
              "IPY_MODEL_7d800a2659d44bec977835eb3db4326e"
3177
            ],
3178
            "layout": "IPY_MODEL_81d1f7011258462699d12ee5b0a70a5d"
3179
          }
3180
        },
3181
        "7a99db0f716544448a19210f8690f9b0": {
3182
          "model_module": "@jupyter-widgets/controls",
3183
          "model_name": "HTMLModel",
3184
          "model_module_version": "1.5.0",
3185
          "state": {
3186
            "_dom_classes": [],
3187
            "_model_module": "@jupyter-widgets/controls",
3188
            "_model_module_version": "1.5.0",
3189
            "_model_name": "HTMLModel",
3190
            "_view_count": null,
3191
            "_view_module": "@jupyter-widgets/controls",
3192
            "_view_module_version": "1.5.0",
3193
            "_view_name": "HTMLView",
3194
            "description": "",
3195
            "description_tooltip": null,
3196
            "layout": "IPY_MODEL_206fc938b0334936adb194547cfb7cc5",
3197
            "placeholder": "​",
3198
            "style": "IPY_MODEL_72abe3b940ab473c82ba6b903530af65",
3199
            "value": "generation_config.json: 100%"
3200
          }
3201
        },
3202
        "4ae5f91a5ddb47e6ad710dbba9e80187": {
3203
          "model_module": "@jupyter-widgets/controls",
3204
          "model_name": "FloatProgressModel",
3205
          "model_module_version": "1.5.0",
3206
          "state": {
3207
            "_dom_classes": [],
3208
            "_model_module": "@jupyter-widgets/controls",
3209
            "_model_module_version": "1.5.0",
3210
            "_model_name": "FloatProgressModel",
3211
            "_view_count": null,
3212
            "_view_module": "@jupyter-widgets/controls",
3213
            "_view_module_version": "1.5.0",
3214
            "_view_name": "ProgressView",
3215
            "bar_style": "success",
3216
            "description": "",
3217
            "description_tooltip": null,
3218
            "layout": "IPY_MODEL_e56a79bf5c7f440c978478e88a26e0f2",
3219
            "max": 116,
3220
            "min": 0,
3221
            "orientation": "horizontal",
3222
            "style": "IPY_MODEL_9c77ea2e33874b9e81d0d397a4662b43",
3223
            "value": 116
3224
          }
3225
        },
3226
        "7d800a2659d44bec977835eb3db4326e": {
3227
          "model_module": "@jupyter-widgets/controls",
3228
          "model_name": "HTMLModel",
3229
          "model_module_version": "1.5.0",
3230
          "state": {
3231
            "_dom_classes": [],
3232
            "_model_module": "@jupyter-widgets/controls",
3233
            "_model_module_version": "1.5.0",
3234
            "_model_name": "HTMLModel",
3235
            "_view_count": null,
3236
            "_view_module": "@jupyter-widgets/controls",
3237
            "_view_module_version": "1.5.0",
3238
            "_view_name": "HTMLView",
3239
            "description": "",
3240
            "description_tooltip": null,
3241
            "layout": "IPY_MODEL_8772b2b1134a45bba71734c4400fa2c0",
3242
            "placeholder": "​",
3243
            "style": "IPY_MODEL_8c914abb6ac5489e9c13046b66a7dd5d",
3244
            "value": " 116/116 [00:00&lt;00:00, 1.54kB/s]"
3245
          }
3246
        },
3247
        "81d1f7011258462699d12ee5b0a70a5d": {
3248
          "model_module": "@jupyter-widgets/base",
3249
          "model_name": "LayoutModel",
3250
          "model_module_version": "1.2.0",
3251
          "state": {
3252
            "_model_module": "@jupyter-widgets/base",
3253
            "_model_module_version": "1.2.0",
3254
            "_model_name": "LayoutModel",
3255
            "_view_count": null,
3256
            "_view_module": "@jupyter-widgets/base",
3257
            "_view_module_version": "1.2.0",
3258
            "_view_name": "LayoutView",
3259
            "align_content": null,
3260
            "align_items": null,
3261
            "align_self": null,
3262
            "border": null,
3263
            "bottom": null,
3264
            "display": null,
3265
            "flex": null,
3266
            "flex_flow": null,
3267
            "grid_area": null,
3268
            "grid_auto_columns": null,
3269
            "grid_auto_flow": null,
3270
            "grid_auto_rows": null,
3271
            "grid_column": null,
3272
            "grid_gap": null,
3273
            "grid_row": null,
3274
            "grid_template_areas": null,
3275
            "grid_template_columns": null,
3276
            "grid_template_rows": null,
3277
            "height": null,
3278
            "justify_content": null,
3279
            "justify_items": null,
3280
            "left": null,
3281
            "margin": null,
3282
            "max_height": null,
3283
            "max_width": null,
3284
            "min_height": null,
3285
            "min_width": null,
3286
            "object_fit": null,
3287
            "object_position": null,
3288
            "order": null,
3289
            "overflow": null,
3290
            "overflow_x": null,
3291
            "overflow_y": null,
3292
            "padding": null,
3293
            "right": null,
3294
            "top": null,
3295
            "visibility": null,
3296
            "width": null
3297
          }
3298
        },
3299
        "206fc938b0334936adb194547cfb7cc5": {
3300
          "model_module": "@jupyter-widgets/base",
3301
          "model_name": "LayoutModel",
3302
          "model_module_version": "1.2.0",
3303
          "state": {
3304
            "_model_module": "@jupyter-widgets/base",
3305
            "_model_module_version": "1.2.0",
3306
            "_model_name": "LayoutModel",
3307
            "_view_count": null,
3308
            "_view_module": "@jupyter-widgets/base",
3309
            "_view_module_version": "1.2.0",
3310
            "_view_name": "LayoutView",
3311
            "align_content": null,
3312
            "align_items": null,
3313
            "align_self": null,
3314
            "border": null,
3315
            "bottom": null,
3316
            "display": null,
3317
            "flex": null,
3318
            "flex_flow": null,
3319
            "grid_area": null,
3320
            "grid_auto_columns": null,
3321
            "grid_auto_flow": null,
3322
            "grid_auto_rows": null,
3323
            "grid_column": null,
3324
            "grid_gap": null,
3325
            "grid_row": null,
3326
            "grid_template_areas": null,
3327
            "grid_template_columns": null,
3328
            "grid_template_rows": null,
3329
            "height": null,
3330
            "justify_content": null,
3331
            "justify_items": null,
3332
            "left": null,
3333
            "margin": null,
3334
            "max_height": null,
3335
            "max_width": null,
3336
            "min_height": null,
3337
            "min_width": null,
3338
            "object_fit": null,
3339
            "object_position": null,
3340
            "order": null,
3341
            "overflow": null,
3342
            "overflow_x": null,
3343
            "overflow_y": null,
3344
            "padding": null,
3345
            "right": null,
3346
            "top": null,
3347
            "visibility": null,
3348
            "width": null
3349
          }
3350
        },
3351
        "72abe3b940ab473c82ba6b903530af65": {
3352
          "model_module": "@jupyter-widgets/controls",
3353
          "model_name": "DescriptionStyleModel",
3354
          "model_module_version": "1.5.0",
3355
          "state": {
3356
            "_model_module": "@jupyter-widgets/controls",
3357
            "_model_module_version": "1.5.0",
3358
            "_model_name": "DescriptionStyleModel",
3359
            "_view_count": null,
3360
            "_view_module": "@jupyter-widgets/base",
3361
            "_view_module_version": "1.2.0",
3362
            "_view_name": "StyleView",
3363
            "description_width": ""
3364
          }
3365
        },
3366
        "e56a79bf5c7f440c978478e88a26e0f2": {
3367
          "model_module": "@jupyter-widgets/base",
3368
          "model_name": "LayoutModel",
3369
          "model_module_version": "1.2.0",
3370
          "state": {
3371
            "_model_module": "@jupyter-widgets/base",
3372
            "_model_module_version": "1.2.0",
3373
            "_model_name": "LayoutModel",
3374
            "_view_count": null,
3375
            "_view_module": "@jupyter-widgets/base",
3376
            "_view_module_version": "1.2.0",
3377
            "_view_name": "LayoutView",
3378
            "align_content": null,
3379
            "align_items": null,
3380
            "align_self": null,
3381
            "border": null,
3382
            "bottom": null,
3383
            "display": null,
3384
            "flex": null,
3385
            "flex_flow": null,
3386
            "grid_area": null,
3387
            "grid_auto_columns": null,
3388
            "grid_auto_flow": null,
3389
            "grid_auto_rows": null,
3390
            "grid_column": null,
3391
            "grid_gap": null,
3392
            "grid_row": null,
3393
            "grid_template_areas": null,
3394
            "grid_template_columns": null,
3395
            "grid_template_rows": null,
3396
            "height": null,
3397
            "justify_content": null,
3398
            "justify_items": null,
3399
            "left": null,
3400
            "margin": null,
3401
            "max_height": null,
3402
            "max_width": null,
3403
            "min_height": null,
3404
            "min_width": null,
3405
            "object_fit": null,
3406
            "object_position": null,
3407
            "order": null,
3408
            "overflow": null,
3409
            "overflow_x": null,
3410
            "overflow_y": null,
3411
            "padding": null,
3412
            "right": null,
3413
            "top": null,
3414
            "visibility": null,
3415
            "width": null
3416
          }
3417
        },
3418
        "9c77ea2e33874b9e81d0d397a4662b43": {
3419
          "model_module": "@jupyter-widgets/controls",
3420
          "model_name": "ProgressStyleModel",
3421
          "model_module_version": "1.5.0",
3422
          "state": {
3423
            "_model_module": "@jupyter-widgets/controls",
3424
            "_model_module_version": "1.5.0",
3425
            "_model_name": "ProgressStyleModel",
3426
            "_view_count": null,
3427
            "_view_module": "@jupyter-widgets/base",
3428
            "_view_module_version": "1.2.0",
3429
            "_view_name": "StyleView",
3430
            "bar_color": null,
3431
            "description_width": ""
3432
          }
3433
        },
3434
        "8772b2b1134a45bba71734c4400fa2c0": {
3435
          "model_module": "@jupyter-widgets/base",
3436
          "model_name": "LayoutModel",
3437
          "model_module_version": "1.2.0",
3438
          "state": {
3439
            "_model_module": "@jupyter-widgets/base",
3440
            "_model_module_version": "1.2.0",
3441
            "_model_name": "LayoutModel",
3442
            "_view_count": null,
3443
            "_view_module": "@jupyter-widgets/base",
3444
            "_view_module_version": "1.2.0",
3445
            "_view_name": "LayoutView",
3446
            "align_content": null,
3447
            "align_items": null,
3448
            "align_self": null,
3449
            "border": null,
3450
            "bottom": null,
3451
            "display": null,
3452
            "flex": null,
3453
            "flex_flow": null,
3454
            "grid_area": null,
3455
            "grid_auto_columns": null,
3456
            "grid_auto_flow": null,
3457
            "grid_auto_rows": null,
3458
            "grid_column": null,
3459
            "grid_gap": null,
3460
            "grid_row": null,
3461
            "grid_template_areas": null,
3462
            "grid_template_columns": null,
3463
            "grid_template_rows": null,
3464
            "height": null,
3465
            "justify_content": null,
3466
            "justify_items": null,
3467
            "left": null,
3468
            "margin": null,
3469
            "max_height": null,
3470
            "max_width": null,
3471
            "min_height": null,
3472
            "min_width": null,
3473
            "object_fit": null,
3474
            "object_position": null,
3475
            "order": null,
3476
            "overflow": null,
3477
            "overflow_x": null,
3478
            "overflow_y": null,
3479
            "padding": null,
3480
            "right": null,
3481
            "top": null,
3482
            "visibility": null,
3483
            "width": null
3484
          }
3485
        },
3486
        "8c914abb6ac5489e9c13046b66a7dd5d": {
3487
          "model_module": "@jupyter-widgets/controls",
3488
          "model_name": "DescriptionStyleModel",
3489
          "model_module_version": "1.5.0",
3490
          "state": {
3491
            "_model_module": "@jupyter-widgets/controls",
3492
            "_model_module_version": "1.5.0",
3493
            "_model_name": "DescriptionStyleModel",
3494
            "_view_count": null,
3495
            "_view_module": "@jupyter-widgets/base",
3496
            "_view_module_version": "1.2.0",
3497
            "_view_name": "StyleView",
3498
            "description_width": ""
3499
          }
3500
        },
3501
        "8ccdaa53fd4d44f6bebcc8b1daf613a7": {
3502
          "model_module": "@jupyter-widgets/controls",
3503
          "model_name": "HBoxModel",
3504
          "model_module_version": "1.5.0",
3505
          "state": {
3506
            "_dom_classes": [],
3507
            "_model_module": "@jupyter-widgets/controls",
3508
            "_model_module_version": "1.5.0",
3509
            "_model_name": "HBoxModel",
3510
            "_view_count": null,
3511
            "_view_module": "@jupyter-widgets/controls",
3512
            "_view_module_version": "1.5.0",
3513
            "_view_name": "HBoxView",
3514
            "box_style": "",
3515
            "children": [
3516
              "IPY_MODEL_b9cdb24813514050adf15d3af2b9589b",
3517
              "IPY_MODEL_edb1863c025142908849cd8ce20505b1",
3518
              "IPY_MODEL_c971ffea2e4743b493ec3680261e0ff0"
3519
            ],
3520
            "layout": "IPY_MODEL_551e6c40db8f430c880a57a3ab405f5b"
3521
          }
3522
        },
3523
        "b9cdb24813514050adf15d3af2b9589b": {
3524
          "model_module": "@jupyter-widgets/controls",
3525
          "model_name": "HTMLModel",
3526
          "model_module_version": "1.5.0",
3527
          "state": {
3528
            "_dom_classes": [],
3529
            "_model_module": "@jupyter-widgets/controls",
3530
            "_model_module_version": "1.5.0",
3531
            "_model_name": "HTMLModel",
3532
            "_view_count": null,
3533
            "_view_module": "@jupyter-widgets/controls",
3534
            "_view_module_version": "1.5.0",
3535
            "_view_name": "HTMLView",
3536
            "description": "",
3537
            "description_tooltip": null,
3538
            "layout": "IPY_MODEL_81630071ac784f72a7a0b27f8cf50ffa",
3539
            "placeholder": "​",
3540
            "style": "IPY_MODEL_ff26ca039b0847a29502b2a73205ca21",
3541
            "value": "tokenizer_config.json: 100%"
3542
          }
3543
        },
3544
        "edb1863c025142908849cd8ce20505b1": {
3545
          "model_module": "@jupyter-widgets/controls",
3546
          "model_name": "FloatProgressModel",
3547
          "model_module_version": "1.5.0",
3548
          "state": {
3549
            "_dom_classes": [],
3550
            "_model_module": "@jupyter-widgets/controls",
3551
            "_model_module_version": "1.5.0",
3552
            "_model_name": "FloatProgressModel",
3553
            "_view_count": null,
3554
            "_view_module": "@jupyter-widgets/controls",
3555
            "_view_module_version": "1.5.0",
3556
            "_view_name": "ProgressView",
3557
            "bar_style": "success",
3558
            "description": "",
3559
            "description_tooltip": null,
3560
            "layout": "IPY_MODEL_717f84e23b4147419344cdedb6be4fd1",
3561
            "max": 967,
3562
            "min": 0,
3563
            "orientation": "horizontal",
3564
            "style": "IPY_MODEL_184db58f8d5241e7b2faf1e1bba700e0",
3565
            "value": 967
3566
          }
3567
        },
3568
        "c971ffea2e4743b493ec3680261e0ff0": {
3569
          "model_module": "@jupyter-widgets/controls",
3570
          "model_name": "HTMLModel",
3571
          "model_module_version": "1.5.0",
3572
          "state": {
3573
            "_dom_classes": [],
3574
            "_model_module": "@jupyter-widgets/controls",
3575
            "_model_module_version": "1.5.0",
3576
            "_model_name": "HTMLModel",
3577
            "_view_count": null,
3578
            "_view_module": "@jupyter-widgets/controls",
3579
            "_view_module_version": "1.5.0",
3580
            "_view_name": "HTMLView",
3581
            "description": "",
3582
            "description_tooltip": null,
3583
            "layout": "IPY_MODEL_107fd3f5b956480197b8795ac5129734",
3584
            "placeholder": "​",
3585
            "style": "IPY_MODEL_369133b2991542d68ef645538f353788",
3586
            "value": " 967/967 [00:00&lt;00:00, 70.6kB/s]"
3587
          }
3588
        },
3589
        "551e6c40db8f430c880a57a3ab405f5b": {
3590
          "model_module": "@jupyter-widgets/base",
3591
          "model_name": "LayoutModel",
3592
          "model_module_version": "1.2.0",
3593
          "state": {
3594
            "_model_module": "@jupyter-widgets/base",
3595
            "_model_module_version": "1.2.0",
3596
            "_model_name": "LayoutModel",
3597
            "_view_count": null,
3598
            "_view_module": "@jupyter-widgets/base",
3599
            "_view_module_version": "1.2.0",
3600
            "_view_name": "LayoutView",
3601
            "align_content": null,
3602
            "align_items": null,
3603
            "align_self": null,
3604
            "border": null,
3605
            "bottom": null,
3606
            "display": null,
3607
            "flex": null,
3608
            "flex_flow": null,
3609
            "grid_area": null,
3610
            "grid_auto_columns": null,
3611
            "grid_auto_flow": null,
3612
            "grid_auto_rows": null,
3613
            "grid_column": null,
3614
            "grid_gap": null,
3615
            "grid_row": null,
3616
            "grid_template_areas": null,
3617
            "grid_template_columns": null,
3618
            "grid_template_rows": null,
3619
            "height": null,
3620
            "justify_content": null,
3621
            "justify_items": null,
3622
            "left": null,
3623
            "margin": null,
3624
            "max_height": null,
3625
            "max_width": null,
3626
            "min_height": null,
3627
            "min_width": null,
3628
            "object_fit": null,
3629
            "object_position": null,
3630
            "order": null,
3631
            "overflow": null,
3632
            "overflow_x": null,
3633
            "overflow_y": null,
3634
            "padding": null,
3635
            "right": null,
3636
            "top": null,
3637
            "visibility": null,
3638
            "width": null
3639
          }
3640
        },
3641
        "81630071ac784f72a7a0b27f8cf50ffa": {
3642
          "model_module": "@jupyter-widgets/base",
3643
          "model_name": "LayoutModel",
3644
          "model_module_version": "1.2.0",
3645
          "state": {
3646
            "_model_module": "@jupyter-widgets/base",
3647
            "_model_module_version": "1.2.0",
3648
            "_model_name": "LayoutModel",
3649
            "_view_count": null,
3650
            "_view_module": "@jupyter-widgets/base",
3651
            "_view_module_version": "1.2.0",
3652
            "_view_name": "LayoutView",
3653
            "align_content": null,
3654
            "align_items": null,
3655
            "align_self": null,
3656
            "border": null,
3657
            "bottom": null,
3658
            "display": null,
3659
            "flex": null,
3660
            "flex_flow": null,
3661
            "grid_area": null,
3662
            "grid_auto_columns": null,
3663
            "grid_auto_flow": null,
3664
            "grid_auto_rows": null,
3665
            "grid_column": null,
3666
            "grid_gap": null,
3667
            "grid_row": null,
3668
            "grid_template_areas": null,
3669
            "grid_template_columns": null,
3670
            "grid_template_rows": null,
3671
            "height": null,
3672
            "justify_content": null,
3673
            "justify_items": null,
3674
            "left": null,
3675
            "margin": null,
3676
            "max_height": null,
3677
            "max_width": null,
3678
            "min_height": null,
3679
            "min_width": null,
3680
            "object_fit": null,
3681
            "object_position": null,
3682
            "order": null,
3683
            "overflow": null,
3684
            "overflow_x": null,
3685
            "overflow_y": null,
3686
            "padding": null,
3687
            "right": null,
3688
            "top": null,
3689
            "visibility": null,
3690
            "width": null
3691
          }
3692
        },
3693
        "ff26ca039b0847a29502b2a73205ca21": {
3694
          "model_module": "@jupyter-widgets/controls",
3695
          "model_name": "DescriptionStyleModel",
3696
          "model_module_version": "1.5.0",
3697
          "state": {
3698
            "_model_module": "@jupyter-widgets/controls",
3699
            "_model_module_version": "1.5.0",
3700
            "_model_name": "DescriptionStyleModel",
3701
            "_view_count": null,
3702
            "_view_module": "@jupyter-widgets/base",
3703
            "_view_module_version": "1.2.0",
3704
            "_view_name": "StyleView",
3705
            "description_width": ""
3706
          }
3707
        },
3708
        "717f84e23b4147419344cdedb6be4fd1": {
3709
          "model_module": "@jupyter-widgets/base",
3710
          "model_name": "LayoutModel",
3711
          "model_module_version": "1.2.0",
3712
          "state": {
3713
            "_model_module": "@jupyter-widgets/base",
3714
            "_model_module_version": "1.2.0",
3715
            "_model_name": "LayoutModel",
3716
            "_view_count": null,
3717
            "_view_module": "@jupyter-widgets/base",
3718
            "_view_module_version": "1.2.0",
3719
            "_view_name": "LayoutView",
3720
            "align_content": null,
3721
            "align_items": null,
3722
            "align_self": null,
3723
            "border": null,
3724
            "bottom": null,
3725
            "display": null,
3726
            "flex": null,
3727
            "flex_flow": null,
3728
            "grid_area": null,
3729
            "grid_auto_columns": null,
3730
            "grid_auto_flow": null,
3731
            "grid_auto_rows": null,
3732
            "grid_column": null,
3733
            "grid_gap": null,
3734
            "grid_row": null,
3735
            "grid_template_areas": null,
3736
            "grid_template_columns": null,
3737
            "grid_template_rows": null,
3738
            "height": null,
3739
            "justify_content": null,
3740
            "justify_items": null,
3741
            "left": null,
3742
            "margin": null,
3743
            "max_height": null,
3744
            "max_width": null,
3745
            "min_height": null,
3746
            "min_width": null,
3747
            "object_fit": null,
3748
            "object_position": null,
3749
            "order": null,
3750
            "overflow": null,
3751
            "overflow_x": null,
3752
            "overflow_y": null,
3753
            "padding": null,
3754
            "right": null,
3755
            "top": null,
3756
            "visibility": null,
3757
            "width": null
3758
          }
3759
        },
3760
        "184db58f8d5241e7b2faf1e1bba700e0": {
3761
          "model_module": "@jupyter-widgets/controls",
3762
          "model_name": "ProgressStyleModel",
3763
          "model_module_version": "1.5.0",
3764
          "state": {
3765
            "_model_module": "@jupyter-widgets/controls",
3766
            "_model_module_version": "1.5.0",
3767
            "_model_name": "ProgressStyleModel",
3768
            "_view_count": null,
3769
            "_view_module": "@jupyter-widgets/base",
3770
            "_view_module_version": "1.2.0",
3771
            "_view_name": "StyleView",
3772
            "bar_color": null,
3773
            "description_width": ""
3774
          }
3775
        },
3776
        "107fd3f5b956480197b8795ac5129734": {
3777
          "model_module": "@jupyter-widgets/base",
3778
          "model_name": "LayoutModel",
3779
          "model_module_version": "1.2.0",
3780
          "state": {
3781
            "_model_module": "@jupyter-widgets/base",
3782
            "_model_module_version": "1.2.0",
3783
            "_model_name": "LayoutModel",
3784
            "_view_count": null,
3785
            "_view_module": "@jupyter-widgets/base",
3786
            "_view_module_version": "1.2.0",
3787
            "_view_name": "LayoutView",
3788
            "align_content": null,
3789
            "align_items": null,
3790
            "align_self": null,
3791
            "border": null,
3792
            "bottom": null,
3793
            "display": null,
3794
            "flex": null,
3795
            "flex_flow": null,
3796
            "grid_area": null,
3797
            "grid_auto_columns": null,
3798
            "grid_auto_flow": null,
3799
            "grid_auto_rows": null,
3800
            "grid_column": null,
3801
            "grid_gap": null,
3802
            "grid_row": null,
3803
            "grid_template_areas": null,
3804
            "grid_template_columns": null,
3805
            "grid_template_rows": null,
3806
            "height": null,
3807
            "justify_content": null,
3808
            "justify_items": null,
3809
            "left": null,
3810
            "margin": null,
3811
            "max_height": null,
3812
            "max_width": null,
3813
            "min_height": null,
3814
            "min_width": null,
3815
            "object_fit": null,
3816
            "object_position": null,
3817
            "order": null,
3818
            "overflow": null,
3819
            "overflow_x": null,
3820
            "overflow_y": null,
3821
            "padding": null,
3822
            "right": null,
3823
            "top": null,
3824
            "visibility": null,
3825
            "width": null
3826
          }
3827
        },
3828
        "369133b2991542d68ef645538f353788": {
3829
          "model_module": "@jupyter-widgets/controls",
3830
          "model_name": "DescriptionStyleModel",
3831
          "model_module_version": "1.5.0",
3832
          "state": {
3833
            "_model_module": "@jupyter-widgets/controls",
3834
            "_model_module_version": "1.5.0",
3835
            "_model_name": "DescriptionStyleModel",
3836
            "_view_count": null,
3837
            "_view_module": "@jupyter-widgets/base",
3838
            "_view_module_version": "1.2.0",
3839
            "_view_name": "StyleView",
3840
            "description_width": ""
3841
          }
3842
        },
3843
        "24d9c53181ce49c2b91760bc386366b5": {
3844
          "model_module": "@jupyter-widgets/controls",
3845
          "model_name": "HBoxModel",
3846
          "model_module_version": "1.5.0",
3847
          "state": {
3848
            "_dom_classes": [],
3849
            "_model_module": "@jupyter-widgets/controls",
3850
            "_model_module_version": "1.5.0",
3851
            "_model_name": "HBoxModel",
3852
            "_view_count": null,
3853
            "_view_module": "@jupyter-widgets/controls",
3854
            "_view_module_version": "1.5.0",
3855
            "_view_name": "HBoxView",
3856
            "box_style": "",
3857
            "children": [
3858
              "IPY_MODEL_ee1412a55f3d40e191083b2776650ac5",
3859
              "IPY_MODEL_a9cdbf1e2cd5499c9c9804eb55bc7da4",
3860
              "IPY_MODEL_a556a867bc7742f9b6810e6f63d216d7"
3861
            ],
3862
            "layout": "IPY_MODEL_d1845140817b4118955f0c538e9a778e"
3863
          }
3864
        },
3865
        "ee1412a55f3d40e191083b2776650ac5": {
3866
          "model_module": "@jupyter-widgets/controls",
3867
          "model_name": "HTMLModel",
3868
          "model_module_version": "1.5.0",
3869
          "state": {
3870
            "_dom_classes": [],
3871
            "_model_module": "@jupyter-widgets/controls",
3872
            "_model_module_version": "1.5.0",
3873
            "_model_name": "HTMLModel",
3874
            "_view_count": null,
3875
            "_view_module": "@jupyter-widgets/controls",
3876
            "_view_module_version": "1.5.0",
3877
            "_view_name": "HTMLView",
3878
            "description": "",
3879
            "description_tooltip": null,
3880
            "layout": "IPY_MODEL_84891cf5bd124727bea560163935294a",
3881
            "placeholder": "​",
3882
            "style": "IPY_MODEL_508144a592e54e2f9eb970a3418cbe2b",
3883
            "value": "tokenizer.model: 100%"
3884
          }
3885
        },
3886
        "a9cdbf1e2cd5499c9c9804eb55bc7da4": {
3887
          "model_module": "@jupyter-widgets/controls",
3888
          "model_name": "FloatProgressModel",
3889
          "model_module_version": "1.5.0",
3890
          "state": {
3891
            "_dom_classes": [],
3892
            "_model_module": "@jupyter-widgets/controls",
3893
            "_model_module_version": "1.5.0",
3894
            "_model_name": "FloatProgressModel",
3895
            "_view_count": null,
3896
            "_view_module": "@jupyter-widgets/controls",
3897
            "_view_module_version": "1.5.0",
3898
            "_view_name": "ProgressView",
3899
            "bar_style": "success",
3900
            "description": "",
3901
            "description_tooltip": null,
3902
            "layout": "IPY_MODEL_775d8e4eb8fe4758b2b876d5538ad8eb",
3903
            "max": 493443,
3904
            "min": 0,
3905
            "orientation": "horizontal",
3906
            "style": "IPY_MODEL_a7c91bd72b65470db54b8461fba77a38",
3907
            "value": 493443
3908
          }
3909
        },
3910
        "a556a867bc7742f9b6810e6f63d216d7": {
3911
          "model_module": "@jupyter-widgets/controls",
3912
          "model_name": "HTMLModel",
3913
          "model_module_version": "1.5.0",
3914
          "state": {
3915
            "_dom_classes": [],
3916
            "_model_module": "@jupyter-widgets/controls",
3917
            "_model_module_version": "1.5.0",
3918
            "_model_name": "HTMLModel",
3919
            "_view_count": null,
3920
            "_view_module": "@jupyter-widgets/controls",
3921
            "_view_module_version": "1.5.0",
3922
            "_view_name": "HTMLView",
3923
            "description": "",
3924
            "description_tooltip": null,
3925
            "layout": "IPY_MODEL_e0a3b0edba7a4e54bb6ab892c7171113",
3926
            "placeholder": "​",
3927
            "style": "IPY_MODEL_ae43479a1daa49d19d6d544accdc3124",
3928
            "value": " 493k/493k [00:00&lt;00:00, 30.1MB/s]"
3929
          }
3930
        },
3931
        "d1845140817b4118955f0c538e9a778e": {
3932
          "model_module": "@jupyter-widgets/base",
3933
          "model_name": "LayoutModel",
3934
          "model_module_version": "1.2.0",
3935
          "state": {
3936
            "_model_module": "@jupyter-widgets/base",
3937
            "_model_module_version": "1.2.0",
3938
            "_model_name": "LayoutModel",
3939
            "_view_count": null,
3940
            "_view_module": "@jupyter-widgets/base",
3941
            "_view_module_version": "1.2.0",
3942
            "_view_name": "LayoutView",
3943
            "align_content": null,
3944
            "align_items": null,
3945
            "align_self": null,
3946
            "border": null,
3947
            "bottom": null,
3948
            "display": null,
3949
            "flex": null,
3950
            "flex_flow": null,
3951
            "grid_area": null,
3952
            "grid_auto_columns": null,
3953
            "grid_auto_flow": null,
3954
            "grid_auto_rows": null,
3955
            "grid_column": null,
3956
            "grid_gap": null,
3957
            "grid_row": null,
3958
            "grid_template_areas": null,
3959
            "grid_template_columns": null,
3960
            "grid_template_rows": null,
3961
            "height": null,
3962
            "justify_content": null,
3963
            "justify_items": null,
3964
            "left": null,
3965
            "margin": null,
3966
            "max_height": null,
3967
            "max_width": null,
3968
            "min_height": null,
3969
            "min_width": null,
3970
            "object_fit": null,
3971
            "object_position": null,
3972
            "order": null,
3973
            "overflow": null,
3974
            "overflow_x": null,
3975
            "overflow_y": null,
3976
            "padding": null,
3977
            "right": null,
3978
            "top": null,
3979
            "visibility": null,
3980
            "width": null
3981
          }
3982
        },
3983
        "84891cf5bd124727bea560163935294a": {
3984
          "model_module": "@jupyter-widgets/base",
3985
          "model_name": "LayoutModel",
3986
          "model_module_version": "1.2.0",
3987
          "state": {
3988
            "_model_module": "@jupyter-widgets/base",
3989
            "_model_module_version": "1.2.0",
3990
            "_model_name": "LayoutModel",
3991
            "_view_count": null,
3992
            "_view_module": "@jupyter-widgets/base",
3993
            "_view_module_version": "1.2.0",
3994
            "_view_name": "LayoutView",
3995
            "align_content": null,
3996
            "align_items": null,
3997
            "align_self": null,
3998
            "border": null,
3999
            "bottom": null,
4000
            "display": null,
4001
            "flex": null,
4002
            "flex_flow": null,
4003
            "grid_area": null,
4004
            "grid_auto_columns": null,
4005
            "grid_auto_flow": null,
4006
            "grid_auto_rows": null,
4007
            "grid_column": null,
4008
            "grid_gap": null,
4009
            "grid_row": null,
4010
            "grid_template_areas": null,
4011
            "grid_template_columns": null,
4012
            "grid_template_rows": null,
4013
            "height": null,
4014
            "justify_content": null,
4015
            "justify_items": null,
4016
            "left": null,
4017
            "margin": null,
4018
            "max_height": null,
4019
            "max_width": null,
4020
            "min_height": null,
4021
            "min_width": null,
4022
            "object_fit": null,
4023
            "object_position": null,
4024
            "order": null,
4025
            "overflow": null,
4026
            "overflow_x": null,
4027
            "overflow_y": null,
4028
            "padding": null,
4029
            "right": null,
4030
            "top": null,
4031
            "visibility": null,
4032
            "width": null
4033
          }
4034
        },
4035
        "508144a592e54e2f9eb970a3418cbe2b": {
4036
          "model_module": "@jupyter-widgets/controls",
4037
          "model_name": "DescriptionStyleModel",
4038
          "model_module_version": "1.5.0",
4039
          "state": {
4040
            "_model_module": "@jupyter-widgets/controls",
4041
            "_model_module_version": "1.5.0",
4042
            "_model_name": "DescriptionStyleModel",
4043
            "_view_count": null,
4044
            "_view_module": "@jupyter-widgets/base",
4045
            "_view_module_version": "1.2.0",
4046
            "_view_name": "StyleView",
4047
            "description_width": ""
4048
          }
4049
        },
4050
        "775d8e4eb8fe4758b2b876d5538ad8eb": {
4051
          "model_module": "@jupyter-widgets/base",
4052
          "model_name": "LayoutModel",
4053
          "model_module_version": "1.2.0",
4054
          "state": {
4055
            "_model_module": "@jupyter-widgets/base",
4056
            "_model_module_version": "1.2.0",
4057
            "_model_name": "LayoutModel",
4058
            "_view_count": null,
4059
            "_view_module": "@jupyter-widgets/base",
4060
            "_view_module_version": "1.2.0",
4061
            "_view_name": "LayoutView",
4062
            "align_content": null,
4063
            "align_items": null,
4064
            "align_self": null,
4065
            "border": null,
4066
            "bottom": null,
4067
            "display": null,
4068
            "flex": null,
4069
            "flex_flow": null,
4070
            "grid_area": null,
4071
            "grid_auto_columns": null,
4072
            "grid_auto_flow": null,
4073
            "grid_auto_rows": null,
4074
            "grid_column": null,
4075
            "grid_gap": null,
4076
            "grid_row": null,
4077
            "grid_template_areas": null,
4078
            "grid_template_columns": null,
4079
            "grid_template_rows": null,
4080
            "height": null,
4081
            "justify_content": null,
4082
            "justify_items": null,
4083
            "left": null,
4084
            "margin": null,
4085
            "max_height": null,
4086
            "max_width": null,
4087
            "min_height": null,
4088
            "min_width": null,
4089
            "object_fit": null,
4090
            "object_position": null,
4091
            "order": null,
4092
            "overflow": null,
4093
            "overflow_x": null,
4094
            "overflow_y": null,
4095
            "padding": null,
4096
            "right": null,
4097
            "top": null,
4098
            "visibility": null,
4099
            "width": null
4100
          }
4101
        },
4102
        "a7c91bd72b65470db54b8461fba77a38": {
4103
          "model_module": "@jupyter-widgets/controls",
4104
          "model_name": "ProgressStyleModel",
4105
          "model_module_version": "1.5.0",
4106
          "state": {
4107
            "_model_module": "@jupyter-widgets/controls",
4108
            "_model_module_version": "1.5.0",
4109
            "_model_name": "ProgressStyleModel",
4110
            "_view_count": null,
4111
            "_view_module": "@jupyter-widgets/base",
4112
            "_view_module_version": "1.2.0",
4113
            "_view_name": "StyleView",
4114
            "bar_color": null,
4115
            "description_width": ""
4116
          }
4117
        },
4118
        "e0a3b0edba7a4e54bb6ab892c7171113": {
4119
          "model_module": "@jupyter-widgets/base",
4120
          "model_name": "LayoutModel",
4121
          "model_module_version": "1.2.0",
4122
          "state": {
4123
            "_model_module": "@jupyter-widgets/base",
4124
            "_model_module_version": "1.2.0",
4125
            "_model_name": "LayoutModel",
4126
            "_view_count": null,
4127
            "_view_module": "@jupyter-widgets/base",
4128
            "_view_module_version": "1.2.0",
4129
            "_view_name": "LayoutView",
4130
            "align_content": null,
4131
            "align_items": null,
4132
            "align_self": null,
4133
            "border": null,
4134
            "bottom": null,
4135
            "display": null,
4136
            "flex": null,
4137
            "flex_flow": null,
4138
            "grid_area": null,
4139
            "grid_auto_columns": null,
4140
            "grid_auto_flow": null,
4141
            "grid_auto_rows": null,
4142
            "grid_column": null,
4143
            "grid_gap": null,
4144
            "grid_row": null,
4145
            "grid_template_areas": null,
4146
            "grid_template_columns": null,
4147
            "grid_template_rows": null,
4148
            "height": null,
4149
            "justify_content": null,
4150
            "justify_items": null,
4151
            "left": null,
4152
            "margin": null,
4153
            "max_height": null,
4154
            "max_width": null,
4155
            "min_height": null,
4156
            "min_width": null,
4157
            "object_fit": null,
4158
            "object_position": null,
4159
            "order": null,
4160
            "overflow": null,
4161
            "overflow_x": null,
4162
            "overflow_y": null,
4163
            "padding": null,
4164
            "right": null,
4165
            "top": null,
4166
            "visibility": null,
4167
            "width": null
4168
          }
4169
        },
4170
        "ae43479a1daa49d19d6d544accdc3124": {
4171
          "model_module": "@jupyter-widgets/controls",
4172
          "model_name": "DescriptionStyleModel",
4173
          "model_module_version": "1.5.0",
4174
          "state": {
4175
            "_model_module": "@jupyter-widgets/controls",
4176
            "_model_module_version": "1.5.0",
4177
            "_model_name": "DescriptionStyleModel",
4178
            "_view_count": null,
4179
            "_view_module": "@jupyter-widgets/base",
4180
            "_view_module_version": "1.2.0",
4181
            "_view_name": "StyleView",
4182
            "description_width": ""
4183
          }
4184
        },
4185
        "d7cdc98280e04394a80ba62d7b883cc2": {
4186
          "model_module": "@jupyter-widgets/controls",
4187
          "model_name": "HBoxModel",
4188
          "model_module_version": "1.5.0",
4189
          "state": {
4190
            "_dom_classes": [],
4191
            "_model_module": "@jupyter-widgets/controls",
4192
            "_model_module_version": "1.5.0",
4193
            "_model_name": "HBoxModel",
4194
            "_view_count": null,
4195
            "_view_module": "@jupyter-widgets/controls",
4196
            "_view_module_version": "1.5.0",
4197
            "_view_name": "HBoxView",
4198
            "box_style": "",
4199
            "children": [
4200
              "IPY_MODEL_3fed97d8526d4a6195dc8c70c99eb3a3",
4201
              "IPY_MODEL_871a8f47d8bf4c0e957f575788a4a05a",
4202
              "IPY_MODEL_0c868554bdf64a43bf31571fe5a4e80a"
4203
            ],
4204
            "layout": "IPY_MODEL_29618477f8e146c78ad6aaa4b61f6882"
4205
          }
4206
        },
4207
        "3fed97d8526d4a6195dc8c70c99eb3a3": {
4208
          "model_module": "@jupyter-widgets/controls",
4209
          "model_name": "HTMLModel",
4210
          "model_module_version": "1.5.0",
4211
          "state": {
4212
            "_dom_classes": [],
4213
            "_model_module": "@jupyter-widgets/controls",
4214
            "_model_module_version": "1.5.0",
4215
            "_model_name": "HTMLModel",
4216
            "_view_count": null,
4217
            "_view_module": "@jupyter-widgets/controls",
4218
            "_view_module_version": "1.5.0",
4219
            "_view_name": "HTMLView",
4220
            "description": "",
4221
            "description_tooltip": null,
4222
            "layout": "IPY_MODEL_0b789d08ba774ea89b9d79e3fec96fe4",
4223
            "placeholder": "​",
4224
            "style": "IPY_MODEL_f74b8384258d4eba8ea0be83fcbd8a2b",
4225
            "value": "tokenizer.json: 100%"
4226
          }
4227
        },
4228
        "871a8f47d8bf4c0e957f575788a4a05a": {
4229
          "model_module": "@jupyter-widgets/controls",
4230
          "model_name": "FloatProgressModel",
4231
          "model_module_version": "1.5.0",
4232
          "state": {
4233
            "_dom_classes": [],
4234
            "_model_module": "@jupyter-widgets/controls",
4235
            "_model_module_version": "1.5.0",
4236
            "_model_name": "FloatProgressModel",
4237
            "_view_count": null,
4238
            "_view_module": "@jupyter-widgets/controls",
4239
            "_view_module_version": "1.5.0",
4240
            "_view_name": "ProgressView",
4241
            "bar_style": "success",
4242
            "description": "",
4243
            "description_tooltip": null,
4244
            "layout": "IPY_MODEL_f68dd87f254a4136971047e6804964a2",
4245
            "max": 1795303,
4246
            "min": 0,
4247
            "orientation": "horizontal",
4248
            "style": "IPY_MODEL_ead331636cf745d7b17a5d764939f5ed",
4249
            "value": 1795303
4250
          }
4251
        },
4252
        "0c868554bdf64a43bf31571fe5a4e80a": {
4253
          "model_module": "@jupyter-widgets/controls",
4254
          "model_name": "HTMLModel",
4255
          "model_module_version": "1.5.0",
4256
          "state": {
4257
            "_dom_classes": [],
4258
            "_model_module": "@jupyter-widgets/controls",
4259
            "_model_module_version": "1.5.0",
4260
            "_model_name": "HTMLModel",
4261
            "_view_count": null,
4262
            "_view_module": "@jupyter-widgets/controls",
4263
            "_view_module_version": "1.5.0",
4264
            "_view_name": "HTMLView",
4265
            "description": "",
4266
            "description_tooltip": null,
4267
            "layout": "IPY_MODEL_0388b415e4ba4afa8b7add0398afb5c1",
4268
            "placeholder": "​",
4269
            "style": "IPY_MODEL_223b2343afde4167a53283fb6e9869c9",
4270
            "value": " 1.80M/1.80M [00:00&lt;00:00, 7.19MB/s]"
4271
          }
4272
        },
4273
        "29618477f8e146c78ad6aaa4b61f6882": {
4274
          "model_module": "@jupyter-widgets/base",
4275
          "model_name": "LayoutModel",
4276
          "model_module_version": "1.2.0",
4277
          "state": {
4278
            "_model_module": "@jupyter-widgets/base",
4279
            "_model_module_version": "1.2.0",
4280
            "_model_name": "LayoutModel",
4281
            "_view_count": null,
4282
            "_view_module": "@jupyter-widgets/base",
4283
            "_view_module_version": "1.2.0",
4284
            "_view_name": "LayoutView",
4285
            "align_content": null,
4286
            "align_items": null,
4287
            "align_self": null,
4288
            "border": null,
4289
            "bottom": null,
4290
            "display": null,
4291
            "flex": null,
4292
            "flex_flow": null,
4293
            "grid_area": null,
4294
            "grid_auto_columns": null,
4295
            "grid_auto_flow": null,
4296
            "grid_auto_rows": null,
4297
            "grid_column": null,
4298
            "grid_gap": null,
4299
            "grid_row": null,
4300
            "grid_template_areas": null,
4301
            "grid_template_columns": null,
4302
            "grid_template_rows": null,
4303
            "height": null,
4304
            "justify_content": null,
4305
            "justify_items": null,
4306
            "left": null,
4307
            "margin": null,
4308
            "max_height": null,
4309
            "max_width": null,
4310
            "min_height": null,
4311
            "min_width": null,
4312
            "object_fit": null,
4313
            "object_position": null,
4314
            "order": null,
4315
            "overflow": null,
4316
            "overflow_x": null,
4317
            "overflow_y": null,
4318
            "padding": null,
4319
            "right": null,
4320
            "top": null,
4321
            "visibility": null,
4322
            "width": null
4323
          }
4324
        },
4325
        "0b789d08ba774ea89b9d79e3fec96fe4": {
4326
          "model_module": "@jupyter-widgets/base",
4327
          "model_name": "LayoutModel",
4328
          "model_module_version": "1.2.0",
4329
          "state": {
4330
            "_model_module": "@jupyter-widgets/base",
4331
            "_model_module_version": "1.2.0",
4332
            "_model_name": "LayoutModel",
4333
            "_view_count": null,
4334
            "_view_module": "@jupyter-widgets/base",
4335
            "_view_module_version": "1.2.0",
4336
            "_view_name": "LayoutView",
4337
            "align_content": null,
4338
            "align_items": null,
4339
            "align_self": null,
4340
            "border": null,
4341
            "bottom": null,
4342
            "display": null,
4343
            "flex": null,
4344
            "flex_flow": null,
4345
            "grid_area": null,
4346
            "grid_auto_columns": null,
4347
            "grid_auto_flow": null,
4348
            "grid_auto_rows": null,
4349
            "grid_column": null,
4350
            "grid_gap": null,
4351
            "grid_row": null,
4352
            "grid_template_areas": null,
4353
            "grid_template_columns": null,
4354
            "grid_template_rows": null,
4355
            "height": null,
4356
            "justify_content": null,
4357
            "justify_items": null,
4358
            "left": null,
4359
            "margin": null,
4360
            "max_height": null,
4361
            "max_width": null,
4362
            "min_height": null,
4363
            "min_width": null,
4364
            "object_fit": null,
4365
            "object_position": null,
4366
            "order": null,
4367
            "overflow": null,
4368
            "overflow_x": null,
4369
            "overflow_y": null,
4370
            "padding": null,
4371
            "right": null,
4372
            "top": null,
4373
            "visibility": null,
4374
            "width": null
4375
          }
4376
        },
4377
        "f74b8384258d4eba8ea0be83fcbd8a2b": {
4378
          "model_module": "@jupyter-widgets/controls",
4379
          "model_name": "DescriptionStyleModel",
4380
          "model_module_version": "1.5.0",
4381
          "state": {
4382
            "_model_module": "@jupyter-widgets/controls",
4383
            "_model_module_version": "1.5.0",
4384
            "_model_name": "DescriptionStyleModel",
4385
            "_view_count": null,
4386
            "_view_module": "@jupyter-widgets/base",
4387
            "_view_module_version": "1.2.0",
4388
            "_view_name": "StyleView",
4389
            "description_width": ""
4390
          }
4391
        },
4392
        "f68dd87f254a4136971047e6804964a2": {
4393
          "model_module": "@jupyter-widgets/base",
4394
          "model_name": "LayoutModel",
4395
          "model_module_version": "1.2.0",
4396
          "state": {
4397
            "_model_module": "@jupyter-widgets/base",
4398
            "_model_module_version": "1.2.0",
4399
            "_model_name": "LayoutModel",
4400
            "_view_count": null,
4401
            "_view_module": "@jupyter-widgets/base",
4402
            "_view_module_version": "1.2.0",
4403
            "_view_name": "LayoutView",
4404
            "align_content": null,
4405
            "align_items": null,
4406
            "align_self": null,
4407
            "border": null,
4408
            "bottom": null,
4409
            "display": null,
4410
            "flex": null,
4411
            "flex_flow": null,
4412
            "grid_area": null,
4413
            "grid_auto_columns": null,
4414
            "grid_auto_flow": null,
4415
            "grid_auto_rows": null,
4416
            "grid_column": null,
4417
            "grid_gap": null,
4418
            "grid_row": null,
4419
            "grid_template_areas": null,
4420
            "grid_template_columns": null,
4421
            "grid_template_rows": null,
4422
            "height": null,
4423
            "justify_content": null,
4424
            "justify_items": null,
4425
            "left": null,
4426
            "margin": null,
4427
            "max_height": null,
4428
            "max_width": null,
4429
            "min_height": null,
4430
            "min_width": null,
4431
            "object_fit": null,
4432
            "object_position": null,
4433
            "order": null,
4434
            "overflow": null,
4435
            "overflow_x": null,
4436
            "overflow_y": null,
4437
            "padding": null,
4438
            "right": null,
4439
            "top": null,
4440
            "visibility": null,
4441
            "width": null
4442
          }
4443
        },
4444
        "ead331636cf745d7b17a5d764939f5ed": {
4445
          "model_module": "@jupyter-widgets/controls",
4446
          "model_name": "ProgressStyleModel",
4447
          "model_module_version": "1.5.0",
4448
          "state": {
4449
            "_model_module": "@jupyter-widgets/controls",
4450
            "_model_module_version": "1.5.0",
4451
            "_model_name": "ProgressStyleModel",
4452
            "_view_count": null,
4453
            "_view_module": "@jupyter-widgets/base",
4454
            "_view_module_version": "1.2.0",
4455
            "_view_name": "StyleView",
4456
            "bar_color": null,
4457
            "description_width": ""
4458
          }
4459
        },
4460
        "0388b415e4ba4afa8b7add0398afb5c1": {
4461
          "model_module": "@jupyter-widgets/base",
4462
          "model_name": "LayoutModel",
4463
          "model_module_version": "1.2.0",
4464
          "state": {
4465
            "_model_module": "@jupyter-widgets/base",
4466
            "_model_module_version": "1.2.0",
4467
            "_model_name": "LayoutModel",
4468
            "_view_count": null,
4469
            "_view_module": "@jupyter-widgets/base",
4470
            "_view_module_version": "1.2.0",
4471
            "_view_name": "LayoutView",
4472
            "align_content": null,
4473
            "align_items": null,
4474
            "align_self": null,
4475
            "border": null,
4476
            "bottom": null,
4477
            "display": null,
4478
            "flex": null,
4479
            "flex_flow": null,
4480
            "grid_area": null,
4481
            "grid_auto_columns": null,
4482
            "grid_auto_flow": null,
4483
            "grid_auto_rows": null,
4484
            "grid_column": null,
4485
            "grid_gap": null,
4486
            "grid_row": null,
4487
            "grid_template_areas": null,
4488
            "grid_template_columns": null,
4489
            "grid_template_rows": null,
4490
            "height": null,
4491
            "justify_content": null,
4492
            "justify_items": null,
4493
            "left": null,
4494
            "margin": null,
4495
            "max_height": null,
4496
            "max_width": null,
4497
            "min_height": null,
4498
            "min_width": null,
4499
            "object_fit": null,
4500
            "object_position": null,
4501
            "order": null,
4502
            "overflow": null,
4503
            "overflow_x": null,
4504
            "overflow_y": null,
4505
            "padding": null,
4506
            "right": null,
4507
            "top": null,
4508
            "visibility": null,
4509
            "width": null
4510
          }
4511
        },
4512
        "223b2343afde4167a53283fb6e9869c9": {
4513
          "model_module": "@jupyter-widgets/controls",
4514
          "model_name": "DescriptionStyleModel",
4515
          "model_module_version": "1.5.0",
4516
          "state": {
4517
            "_model_module": "@jupyter-widgets/controls",
4518
            "_model_module_version": "1.5.0",
4519
            "_model_name": "DescriptionStyleModel",
4520
            "_view_count": null,
4521
            "_view_module": "@jupyter-widgets/base",
4522
            "_view_module_version": "1.2.0",
4523
            "_view_name": "StyleView",
4524
            "description_width": ""
4525
          }
4526
        },
4527
        "e358fec2f71c418caac8d129444abcee": {
4528
          "model_module": "@jupyter-widgets/controls",
4529
          "model_name": "HBoxModel",
4530
          "model_module_version": "1.5.0",
4531
          "state": {
4532
            "_dom_classes": [],
4533
            "_model_module": "@jupyter-widgets/controls",
4534
            "_model_module_version": "1.5.0",
4535
            "_model_name": "HBoxModel",
4536
            "_view_count": null,
4537
            "_view_module": "@jupyter-widgets/controls",
4538
            "_view_module_version": "1.5.0",
4539
            "_view_name": "HBoxView",
4540
            "box_style": "",
4541
            "children": [
4542
              "IPY_MODEL_f324f86a03924d538d4e394cb71219fb",
4543
              "IPY_MODEL_f6aad53167db4c4f90f560b28b35d7f0",
4544
              "IPY_MODEL_fefc941bdc1d4115a3d3a1f1dfc56fda"
4545
            ],
4546
            "layout": "IPY_MODEL_2b0f02229d824c45a797d11a5b4c1703"
4547
          }
4548
        },
4549
        "f324f86a03924d538d4e394cb71219fb": {
4550
          "model_module": "@jupyter-widgets/controls",
4551
          "model_name": "HTMLModel",
4552
          "model_module_version": "1.5.0",
4553
          "state": {
4554
            "_dom_classes": [],
4555
            "_model_module": "@jupyter-widgets/controls",
4556
            "_model_module_version": "1.5.0",
4557
            "_model_name": "HTMLModel",
4558
            "_view_count": null,
4559
            "_view_module": "@jupyter-widgets/controls",
4560
            "_view_module_version": "1.5.0",
4561
            "_view_name": "HTMLView",
4562
            "description": "",
4563
            "description_tooltip": null,
4564
            "layout": "IPY_MODEL_fee2d946671c4609b9e7c92725717e1c",
4565
            "placeholder": "​",
4566
            "style": "IPY_MODEL_3c1fdeeae60d4ef5aa2997dce8614e67",
4567
            "value": "special_tokens_map.json: 100%"
4568
          }
4569
        },
4570
        "f6aad53167db4c4f90f560b28b35d7f0": {
4571
          "model_module": "@jupyter-widgets/controls",
4572
          "model_name": "FloatProgressModel",
4573
          "model_module_version": "1.5.0",
4574
          "state": {
4575
            "_dom_classes": [],
4576
            "_model_module": "@jupyter-widgets/controls",
4577
            "_model_module_version": "1.5.0",
4578
            "_model_name": "FloatProgressModel",
4579
            "_view_count": null,
4580
            "_view_module": "@jupyter-widgets/controls",
4581
            "_view_module_version": "1.5.0",
4582
            "_view_name": "ProgressView",
4583
            "bar_style": "success",
4584
            "description": "",
4585
            "description_tooltip": null,
4586
            "layout": "IPY_MODEL_6568a690061d4f7d8127c63ce02bcbad",
4587
            "max": 72,
4588
            "min": 0,
4589
            "orientation": "horizontal",
4590
            "style": "IPY_MODEL_e463325b65b643069760c4e9a15ec74d",
4591
            "value": 72
4592
          }
4593
        },
4594
        "fefc941bdc1d4115a3d3a1f1dfc56fda": {
4595
          "model_module": "@jupyter-widgets/controls",
4596
          "model_name": "HTMLModel",
4597
          "model_module_version": "1.5.0",
4598
          "state": {
4599
            "_dom_classes": [],
4600
            "_model_module": "@jupyter-widgets/controls",
4601
            "_model_module_version": "1.5.0",
4602
            "_model_name": "HTMLModel",
4603
            "_view_count": null,
4604
            "_view_module": "@jupyter-widgets/controls",
4605
            "_view_module_version": "1.5.0",
4606
            "_view_name": "HTMLView",
4607
            "description": "",
4608
            "description_tooltip": null,
4609
            "layout": "IPY_MODEL_39a2137807ae4613a7b856765af6246c",
4610
            "placeholder": "​",
4611
            "style": "IPY_MODEL_a91a6a026da94952b612ef0b21297f30",
4612
            "value": " 72.0/72.0 [00:00&lt;00:00, 4.73kB/s]"
4613
          }
4614
        },
4615
        "2b0f02229d824c45a797d11a5b4c1703": {
4616
          "model_module": "@jupyter-widgets/base",
4617
          "model_name": "LayoutModel",
4618
          "model_module_version": "1.2.0",
4619
          "state": {
4620
            "_model_module": "@jupyter-widgets/base",
4621
            "_model_module_version": "1.2.0",
4622
            "_model_name": "LayoutModel",
4623
            "_view_count": null,
4624
            "_view_module": "@jupyter-widgets/base",
4625
            "_view_module_version": "1.2.0",
4626
            "_view_name": "LayoutView",
4627
            "align_content": null,
4628
            "align_items": null,
4629
            "align_self": null,
4630
            "border": null,
4631
            "bottom": null,
4632
            "display": null,
4633
            "flex": null,
4634
            "flex_flow": null,
4635
            "grid_area": null,
4636
            "grid_auto_columns": null,
4637
            "grid_auto_flow": null,
4638
            "grid_auto_rows": null,
4639
            "grid_column": null,
4640
            "grid_gap": null,
4641
            "grid_row": null,
4642
            "grid_template_areas": null,
4643
            "grid_template_columns": null,
4644
            "grid_template_rows": null,
4645
            "height": null,
4646
            "justify_content": null,
4647
            "justify_items": null,
4648
            "left": null,
4649
            "margin": null,
4650
            "max_height": null,
4651
            "max_width": null,
4652
            "min_height": null,
4653
            "min_width": null,
4654
            "object_fit": null,
4655
            "object_position": null,
4656
            "order": null,
4657
            "overflow": null,
4658
            "overflow_x": null,
4659
            "overflow_y": null,
4660
            "padding": null,
4661
            "right": null,
4662
            "top": null,
4663
            "visibility": null,
4664
            "width": null
4665
          }
4666
        },
4667
        "fee2d946671c4609b9e7c92725717e1c": {
4668
          "model_module": "@jupyter-widgets/base",
4669
          "model_name": "LayoutModel",
4670
          "model_module_version": "1.2.0",
4671
          "state": {
4672
            "_model_module": "@jupyter-widgets/base",
4673
            "_model_module_version": "1.2.0",
4674
            "_model_name": "LayoutModel",
4675
            "_view_count": null,
4676
            "_view_module": "@jupyter-widgets/base",
4677
            "_view_module_version": "1.2.0",
4678
            "_view_name": "LayoutView",
4679
            "align_content": null,
4680
            "align_items": null,
4681
            "align_self": null,
4682
            "border": null,
4683
            "bottom": null,
4684
            "display": null,
4685
            "flex": null,
4686
            "flex_flow": null,
4687
            "grid_area": null,
4688
            "grid_auto_columns": null,
4689
            "grid_auto_flow": null,
4690
            "grid_auto_rows": null,
4691
            "grid_column": null,
4692
            "grid_gap": null,
4693
            "grid_row": null,
4694
            "grid_template_areas": null,
4695
            "grid_template_columns": null,
4696
            "grid_template_rows": null,
4697
            "height": null,
4698
            "justify_content": null,
4699
            "justify_items": null,
4700
            "left": null,
4701
            "margin": null,
4702
            "max_height": null,
4703
            "max_width": null,
4704
            "min_height": null,
4705
            "min_width": null,
4706
            "object_fit": null,
4707
            "object_position": null,
4708
            "order": null,
4709
            "overflow": null,
4710
            "overflow_x": null,
4711
            "overflow_y": null,
4712
            "padding": null,
4713
            "right": null,
4714
            "top": null,
4715
            "visibility": null,
4716
            "width": null
4717
          }
4718
        },
4719
        "3c1fdeeae60d4ef5aa2997dce8614e67": {
4720
          "model_module": "@jupyter-widgets/controls",
4721
          "model_name": "DescriptionStyleModel",
4722
          "model_module_version": "1.5.0",
4723
          "state": {
4724
            "_model_module": "@jupyter-widgets/controls",
4725
            "_model_module_version": "1.5.0",
4726
            "_model_name": "DescriptionStyleModel",
4727
            "_view_count": null,
4728
            "_view_module": "@jupyter-widgets/base",
4729
            "_view_module_version": "1.2.0",
4730
            "_view_name": "StyleView",
4731
            "description_width": ""
4732
          }
4733
        },
4734
        "6568a690061d4f7d8127c63ce02bcbad": {
4735
          "model_module": "@jupyter-widgets/base",
4736
          "model_name": "LayoutModel",
4737
          "model_module_version": "1.2.0",
4738
          "state": {
4739
            "_model_module": "@jupyter-widgets/base",
4740
            "_model_module_version": "1.2.0",
4741
            "_model_name": "LayoutModel",
4742
            "_view_count": null,
4743
            "_view_module": "@jupyter-widgets/base",
4744
            "_view_module_version": "1.2.0",
4745
            "_view_name": "LayoutView",
4746
            "align_content": null,
4747
            "align_items": null,
4748
            "align_self": null,
4749
            "border": null,
4750
            "bottom": null,
4751
            "display": null,
4752
            "flex": null,
4753
            "flex_flow": null,
4754
            "grid_area": null,
4755
            "grid_auto_columns": null,
4756
            "grid_auto_flow": null,
4757
            "grid_auto_rows": null,
4758
            "grid_column": null,
4759
            "grid_gap": null,
4760
            "grid_row": null,
4761
            "grid_template_areas": null,
4762
            "grid_template_columns": null,
4763
            "grid_template_rows": null,
4764
            "height": null,
4765
            "justify_content": null,
4766
            "justify_items": null,
4767
            "left": null,
4768
            "margin": null,
4769
            "max_height": null,
4770
            "max_width": null,
4771
            "min_height": null,
4772
            "min_width": null,
4773
            "object_fit": null,
4774
            "object_position": null,
4775
            "order": null,
4776
            "overflow": null,
4777
            "overflow_x": null,
4778
            "overflow_y": null,
4779
            "padding": null,
4780
            "right": null,
4781
            "top": null,
4782
            "visibility": null,
4783
            "width": null
4784
          }
4785
        },
4786
        "e463325b65b643069760c4e9a15ec74d": {
4787
          "model_module": "@jupyter-widgets/controls",
4788
          "model_name": "ProgressStyleModel",
4789
          "model_module_version": "1.5.0",
4790
          "state": {
4791
            "_model_module": "@jupyter-widgets/controls",
4792
            "_model_module_version": "1.5.0",
4793
            "_model_name": "ProgressStyleModel",
4794
            "_view_count": null,
4795
            "_view_module": "@jupyter-widgets/base",
4796
            "_view_module_version": "1.2.0",
4797
            "_view_name": "StyleView",
4798
            "bar_color": null,
4799
            "description_width": ""
4800
          }
4801
        },
4802
        "39a2137807ae4613a7b856765af6246c": {
4803
          "model_module": "@jupyter-widgets/base",
4804
          "model_name": "LayoutModel",
4805
          "model_module_version": "1.2.0",
4806
          "state": {
4807
            "_model_module": "@jupyter-widgets/base",
4808
            "_model_module_version": "1.2.0",
4809
            "_model_name": "LayoutModel",
4810
            "_view_count": null,
4811
            "_view_module": "@jupyter-widgets/base",
4812
            "_view_module_version": "1.2.0",
4813
            "_view_name": "LayoutView",
4814
            "align_content": null,
4815
            "align_items": null,
4816
            "align_self": null,
4817
            "border": null,
4818
            "bottom": null,
4819
            "display": null,
4820
            "flex": null,
4821
            "flex_flow": null,
4822
            "grid_area": null,
4823
            "grid_auto_columns": null,
4824
            "grid_auto_flow": null,
4825
            "grid_auto_rows": null,
4826
            "grid_column": null,
4827
            "grid_gap": null,
4828
            "grid_row": null,
4829
            "grid_template_areas": null,
4830
            "grid_template_columns": null,
4831
            "grid_template_rows": null,
4832
            "height": null,
4833
            "justify_content": null,
4834
            "justify_items": null,
4835
            "left": null,
4836
            "margin": null,
4837
            "max_height": null,
4838
            "max_width": null,
4839
            "min_height": null,
4840
            "min_width": null,
4841
            "object_fit": null,
4842
            "object_position": null,
4843
            "order": null,
4844
            "overflow": null,
4845
            "overflow_x": null,
4846
            "overflow_y": null,
4847
            "padding": null,
4848
            "right": null,
4849
            "top": null,
4850
            "visibility": null,
4851
            "width": null
4852
          }
4853
        },
4854
        "a91a6a026da94952b612ef0b21297f30": {
4855
          "model_module": "@jupyter-widgets/controls",
4856
          "model_name": "DescriptionStyleModel",
4857
          "model_module_version": "1.5.0",
4858
          "state": {
4859
            "_model_module": "@jupyter-widgets/controls",
4860
            "_model_module_version": "1.5.0",
4861
            "_model_name": "DescriptionStyleModel",
4862
            "_view_count": null,
4863
            "_view_module": "@jupyter-widgets/base",
4864
            "_view_module_version": "1.2.0",
4865
            "_view_name": "StyleView",
4866
            "description_width": ""
4867
          }
4868
        }
4869
      }
4870
    }
4871
  },
4872
  "nbformat": 4,
4873
  "nbformat_minor": 0
4874
}