natural-pdf 0.1.7__py3-none-any.whl → 0.1.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. docs/categorizing-documents/index.md +168 -0
  2. docs/data-extraction/index.md +87 -0
  3. docs/element-selection/index.ipynb +218 -164
  4. docs/element-selection/index.md +20 -0
  5. docs/index.md +19 -0
  6. docs/ocr/index.md +63 -16
  7. docs/tutorials/01-loading-and-extraction.ipynb +1713 -34
  8. docs/tutorials/02-finding-elements.ipynb +123 -46
  9. docs/tutorials/03-extracting-blocks.ipynb +24 -19
  10. docs/tutorials/04-table-extraction.ipynb +17 -12
  11. docs/tutorials/05-excluding-content.ipynb +37 -32
  12. docs/tutorials/06-document-qa.ipynb +36 -31
  13. docs/tutorials/07-layout-analysis.ipynb +45 -40
  14. docs/tutorials/07-working-with-regions.ipynb +61 -60
  15. docs/tutorials/08-spatial-navigation.ipynb +76 -71
  16. docs/tutorials/09-section-extraction.ipynb +160 -155
  17. docs/tutorials/10-form-field-extraction.ipynb +71 -66
  18. docs/tutorials/11-enhanced-table-processing.ipynb +11 -6
  19. docs/tutorials/12-ocr-integration.ipynb +3420 -312
  20. docs/tutorials/12-ocr-integration.md +68 -106
  21. docs/tutorials/13-semantic-search.ipynb +641 -251
  22. natural_pdf/__init__.py +2 -0
  23. natural_pdf/classification/manager.py +343 -0
  24. natural_pdf/classification/mixin.py +149 -0
  25. natural_pdf/classification/results.py +62 -0
  26. natural_pdf/collections/mixins.py +63 -0
  27. natural_pdf/collections/pdf_collection.py +321 -15
  28. natural_pdf/core/element_manager.py +67 -0
  29. natural_pdf/core/page.py +227 -64
  30. natural_pdf/core/pdf.py +387 -378
  31. natural_pdf/elements/collections.py +272 -41
  32. natural_pdf/elements/region.py +99 -15
  33. natural_pdf/elements/text.py +5 -2
  34. natural_pdf/exporters/paddleocr.py +1 -1
  35. natural_pdf/extraction/manager.py +134 -0
  36. natural_pdf/extraction/mixin.py +246 -0
  37. natural_pdf/extraction/result.py +37 -0
  38. natural_pdf/ocr/engine_easyocr.py +6 -3
  39. natural_pdf/ocr/ocr_manager.py +85 -25
  40. natural_pdf/ocr/ocr_options.py +33 -10
  41. natural_pdf/ocr/utils.py +14 -3
  42. natural_pdf/qa/document_qa.py +0 -4
  43. natural_pdf/selectors/parser.py +363 -238
  44. natural_pdf/templates/finetune/fine_tune_paddleocr.md +10 -5
  45. natural_pdf/utils/locks.py +8 -0
  46. natural_pdf/utils/text_extraction.py +52 -1
  47. natural_pdf/utils/tqdm_utils.py +43 -0
  48. {natural_pdf-0.1.7.dist-info → natural_pdf-0.1.8.dist-info}/METADATA +6 -1
  49. {natural_pdf-0.1.7.dist-info → natural_pdf-0.1.8.dist-info}/RECORD +52 -41
  50. {natural_pdf-0.1.7.dist-info → natural_pdf-0.1.8.dist-info}/WHEEL +1 -1
  51. {natural_pdf-0.1.7.dist-info → natural_pdf-0.1.8.dist-info}/licenses/LICENSE +0 -0
  52. {natural_pdf-0.1.7.dist-info → natural_pdf-0.1.8.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,7 @@
2
2
  "cells": [
3
3
  {
4
4
  "cell_type": "markdown",
5
- "id": "6ba4c324",
5
+ "id": "0b803780",
6
6
  "metadata": {},
7
7
  "source": [
8
8
  "# Semantic Search Across Multiple Documents\n",
@@ -13,13 +13,13 @@
13
13
  {
14
14
  "cell_type": "code",
15
15
  "execution_count": 1,
16
- "id": "573f47ae",
16
+ "id": "664b4cd6",
17
17
  "metadata": {
18
18
  "execution": {
19
- "iopub.execute_input": "2025-04-21T21:26:26.425833Z",
20
- "iopub.status.busy": "2025-04-21T21:26:26.425672Z",
21
- "iopub.status.idle": "2025-04-21T21:26:26.430590Z",
22
- "shell.execute_reply": "2025-04-21T21:26:26.430219Z"
19
+ "iopub.execute_input": "2025-04-27T16:34:55.126546Z",
20
+ "iopub.status.busy": "2025-04-27T16:34:55.125930Z",
21
+ "iopub.status.idle": "2025-04-27T16:34:55.132105Z",
22
+ "shell.execute_reply": "2025-04-27T16:34:55.131378Z"
23
23
  }
24
24
  },
25
25
  "outputs": [],
@@ -31,13 +31,13 @@
31
31
  {
32
32
  "cell_type": "code",
33
33
  "execution_count": 2,
34
- "id": "f40c7516",
34
+ "id": "30a0ced5",
35
35
  "metadata": {
36
36
  "execution": {
37
- "iopub.execute_input": "2025-04-21T21:26:26.432199Z",
38
- "iopub.status.busy": "2025-04-21T21:26:26.432080Z",
39
- "iopub.status.idle": "2025-04-21T21:26:33.413144Z",
40
- "shell.execute_reply": "2025-04-21T21:26:33.412658Z"
37
+ "iopub.execute_input": "2025-04-27T16:34:55.135528Z",
38
+ "iopub.status.busy": "2025-04-27T16:34:55.135238Z",
39
+ "iopub.status.idle": "2025-04-27T16:35:03.763400Z",
40
+ "shell.execute_reply": "2025-04-27T16:35:03.762907Z"
41
41
  }
42
42
  },
43
43
  "outputs": [
@@ -49,12 +49,18 @@
49
49
  ]
50
50
  },
51
51
  {
52
- "name": "stderr",
53
- "output_type": "stream",
54
- "text": [
55
- "\r",
56
- "Loading PDFs: 0%| | 0/2 [00:00<?, ?it/s]"
57
- ]
52
+ "data": {
53
+ "application/vnd.jupyter.widget-view+json": {
54
+ "model_id": "d7fd32b9ea9f487099b048e5b410f76f",
55
+ "version_major": 2,
56
+ "version_minor": 0
57
+ },
58
+ "text/plain": [
59
+ "Loading PDFs: 0%| | 0/2 [00:00<?, ?it/s]"
60
+ ]
61
+ },
62
+ "metadata": {},
63
+ "output_type": "display_data"
58
64
  },
59
65
  {
60
66
  "name": "stderr",
@@ -67,14 +73,14 @@
67
73
  "name": "stderr",
68
74
  "output_type": "stream",
69
75
  "text": [
70
- "natural_pdf.core.pdf - INFO - PDF downloaded to temporary file: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp0qxzzh1m.pdf\n"
76
+ "natural_pdf.core.pdf - INFO - PDF downloaded to temporary file: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmpc7n5dufd.pdf\n"
71
77
  ]
72
78
  },
73
79
  {
74
80
  "name": "stderr",
75
81
  "output_type": "stream",
76
82
  "text": [
77
- "natural_pdf.core.pdf - INFO - Initializing PDF from /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp0qxzzh1m.pdf\n"
83
+ "natural_pdf.core.pdf - INFO - Initializing PDF from /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmpc7n5dufd.pdf\n"
78
84
  ]
79
85
  },
80
86
  {
@@ -102,7 +108,7 @@
102
108
  "name": "stderr",
103
109
  "output_type": "stream",
104
110
  "text": [
105
- "natural_pdf.core.pdf - INFO - Initialized HighlightingService.\n"
111
+ "natural_pdf.classification.manager - INFO - ClassificationManager initialized on device: None\n"
106
112
  ]
107
113
  },
108
114
  {
@@ -116,8 +122,14 @@
116
122
  "name": "stderr",
117
123
  "output_type": "stream",
118
124
  "text": [
119
- "\r",
120
- "Loading PDFs: 50%|█████████████████████████████████████████▌ | 1/2 [00:00<00:00, 6.99it/s]"
125
+ "natural_pdf.classification.manager - INFO - ClassificationManager initialized on device: None\n"
126
+ ]
127
+ },
128
+ {
129
+ "name": "stderr",
130
+ "output_type": "stream",
131
+ "text": [
132
+ "natural_pdf.extraction.manager - INFO - Initialized StructuredDataManager.\n"
121
133
  ]
122
134
  },
123
135
  {
@@ -131,14 +143,14 @@
131
143
  "name": "stderr",
132
144
  "output_type": "stream",
133
145
  "text": [
134
- "natural_pdf.core.pdf - INFO - PDF downloaded to temporary file: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp67aw1giy.pdf\n"
146
+ "natural_pdf.core.pdf - INFO - PDF downloaded to temporary file: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp5mocjexv.pdf\n"
135
147
  ]
136
148
  },
137
149
  {
138
150
  "name": "stderr",
139
151
  "output_type": "stream",
140
152
  "text": [
141
- "natural_pdf.core.pdf - INFO - Initializing PDF from /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp67aw1giy.pdf\n"
153
+ "natural_pdf.core.pdf - INFO - Initializing PDF from /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp5mocjexv.pdf\n"
142
154
  ]
143
155
  },
144
156
  {
@@ -166,7 +178,7 @@
166
178
  "name": "stderr",
167
179
  "output_type": "stream",
168
180
  "text": [
169
- "natural_pdf.core.pdf - INFO - Initialized HighlightingService.\n"
181
+ "natural_pdf.classification.manager - INFO - ClassificationManager initialized on device: None\n"
170
182
  ]
171
183
  },
172
184
  {
@@ -180,23 +192,20 @@
180
192
  "name": "stderr",
181
193
  "output_type": "stream",
182
194
  "text": [
183
- "\r",
184
- "Loading PDFs: 100%|███████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 8.19it/s]"
195
+ "natural_pdf.classification.manager - INFO - ClassificationManager initialized on device: None\n"
185
196
  ]
186
197
  },
187
198
  {
188
199
  "name": "stderr",
189
200
  "output_type": "stream",
190
201
  "text": [
191
- "\r",
192
- "Loading PDFs: 100%|███████████████████████████████████████████████████████████████████████████████████| 2/2 [00:00<00:00, 7.97it/s]"
202
+ "natural_pdf.extraction.manager - INFO - Initialized StructuredDataManager.\n"
193
203
  ]
194
204
  },
195
205
  {
196
206
  "name": "stderr",
197
207
  "output_type": "stream",
198
208
  "text": [
199
- "\n",
200
209
  "natural_pdf.collections.pdf_collection - INFO - Successfully initialized 2 PDFs. Failed: 0\n"
201
210
  ]
202
211
  },
@@ -229,7 +238,7 @@
229
238
  },
230
239
  {
231
240
  "cell_type": "markdown",
232
- "id": "4137d1ea",
241
+ "id": "32cf5680",
233
242
  "metadata": {},
234
243
  "source": [
235
244
  "## Initializing the Search Index\n",
@@ -240,13 +249,13 @@
240
249
  {
241
250
  "cell_type": "code",
242
251
  "execution_count": 3,
243
- "id": "6b57f754",
252
+ "id": "a4f73496",
244
253
  "metadata": {
245
254
  "execution": {
246
- "iopub.execute_input": "2025-04-21T21:26:33.416364Z",
247
- "iopub.status.busy": "2025-04-21T21:26:33.415349Z",
248
- "iopub.status.idle": "2025-04-21T21:26:36.015751Z",
249
- "shell.execute_reply": "2025-04-21T21:26:36.015429Z"
255
+ "iopub.execute_input": "2025-04-27T16:35:03.765700Z",
256
+ "iopub.status.busy": "2025-04-27T16:35:03.764847Z",
257
+ "iopub.status.idle": "2025-04-27T16:35:06.500731Z",
258
+ "shell.execute_reply": "2025-04-27T16:35:06.500375Z"
250
259
  }
251
260
  },
252
261
  "outputs": [
@@ -330,7 +339,7 @@
330
339
  {
331
340
  "data": {
332
341
  "application/vnd.jupyter.widget-view+json": {
333
- "model_id": "cf2741c35c4e430a80c721891fe023d9",
342
+ "model_id": "168a989d9d724abf92f2c02538b32c39",
334
343
  "version_major": 2,
335
344
  "version_minor": 0
336
345
  },
@@ -393,7 +402,7 @@
393
402
  },
394
403
  {
395
404
  "cell_type": "markdown",
396
- "id": "e1e86b3b",
405
+ "id": "897988b1",
397
406
  "metadata": {},
398
407
  "source": [
399
408
  "## Performing a Semantic Search\n",
@@ -404,13 +413,13 @@
404
413
  {
405
414
  "cell_type": "code",
406
415
  "execution_count": 4,
407
- "id": "0d5308cd",
416
+ "id": "8de85856",
408
417
  "metadata": {
409
418
  "execution": {
410
- "iopub.execute_input": "2025-04-21T21:26:36.017436Z",
411
- "iopub.status.busy": "2025-04-21T21:26:36.017297Z",
412
- "iopub.status.idle": "2025-04-21T21:26:36.167418Z",
413
- "shell.execute_reply": "2025-04-21T21:26:36.167083Z"
419
+ "iopub.execute_input": "2025-04-27T16:35:06.502157Z",
420
+ "iopub.status.busy": "2025-04-27T16:35:06.502017Z",
421
+ "iopub.status.idle": "2025-04-27T16:35:06.629731Z",
422
+ "shell.execute_reply": "2025-04-27T16:35:06.629475Z"
414
423
  }
415
424
  },
416
425
  "outputs": [
@@ -438,7 +447,7 @@
438
447
  {
439
448
  "data": {
440
449
  "application/vnd.jupyter.widget-view+json": {
441
- "model_id": "4fe0753b29774d8daf7ecb3f89719349",
450
+ "model_id": "2a9bdf4a442c40ba81ca10ec0d504df4",
442
451
  "version_major": 2,
443
452
  "version_minor": 0
444
453
  },
@@ -488,7 +497,7 @@
488
497
  },
489
498
  {
490
499
  "cell_type": "markdown",
491
- "id": "fe6158f2",
500
+ "id": "af2db0c4",
492
501
  "metadata": {},
493
502
  "source": [
494
503
  "## Understanding Search Results\n",
@@ -504,13 +513,13 @@
504
513
  {
505
514
  "cell_type": "code",
506
515
  "execution_count": 5,
507
- "id": "5ed7a221",
516
+ "id": "dca1b9a7",
508
517
  "metadata": {
509
518
  "execution": {
510
- "iopub.execute_input": "2025-04-21T21:26:36.168858Z",
511
- "iopub.status.busy": "2025-04-21T21:26:36.168719Z",
512
- "iopub.status.idle": "2025-04-21T21:26:36.171586Z",
513
- "shell.execute_reply": "2025-04-21T21:26:36.171300Z"
519
+ "iopub.execute_input": "2025-04-27T16:35:06.630985Z",
520
+ "iopub.status.busy": "2025-04-27T16:35:06.630862Z",
521
+ "iopub.status.idle": "2025-04-27T16:35:06.633294Z",
522
+ "shell.execute_reply": "2025-04-27T16:35:06.633045Z"
514
523
  }
515
524
  },
516
525
  "outputs": [
@@ -518,36 +527,52 @@
518
527
  "name": "stdout",
519
528
  "output_type": "stream",
520
529
  "text": [
521
- " 1. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp67aw1giy.pdf\n",
530
+ " 1. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp5mocjexv.pdf\n",
522
531
  " Page: 2 (Score: 0.0708)\n",
523
- " Snippet: \n",
524
- " \n",
525
- " Library Weeding Log ...\n",
526
- " 2. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp67aw1giy.pdf\n",
532
+ " Snippet: Library Weeding Log Atlanta Public Schools\n",
533
+ "From: 8/1/2017 To: 6/30/2023\n",
534
+ "6/6/2023 - Copies Removed: 130\n",
535
+ "The Anasazi (Removed: 1)\n",
536
+ "Author: Petersen, David. ISBN: 0-516-01121-9 (trade) Published: 1991\n",
537
+ "Sit...\n",
538
+ " 2. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp5mocjexv.pdf\n",
527
539
  " Page: 5 (Score: 0.0669)\n",
528
- " Snippet: \n",
529
- " \n",
530
- " Library Weeding Log ...\n",
531
- " 3. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp0qxzzh1m.pdf\n",
540
+ " Snippet: Library Weeding Log Atlanta Public Schools\n",
541
+ "From: 8/1/2017 To: 6/30/2023\n",
542
+ "6/6/2023 - Copies Removed: 130\n",
543
+ "Centennial Place 33170000562167 $13.10 11/5/1999 33554-43170\n",
544
+ "Academy (Charter)\n",
545
+ "Was Available -- W...\n",
546
+ " 3. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmpc7n5dufd.pdf\n",
532
547
  " Page: 1 (Score: -0.0040)\n",
533
- " Snippet: \n",
534
- " \n",
535
- " ...\n",
536
- " 4. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp67aw1giy.pdf\n",
548
+ " Snippet: Jungle Health and Safety Inspection Service\n",
549
+ "INS-UP70N51NCL41R\n",
550
+ "Site: Durham’s Meatpacking Chicago, Ill.\n",
551
+ "Date: February 3, 1905\n",
552
+ "Violation Count: 7\n",
553
+ "Summary: Worst of any, however, were the fertilizer men...\n",
554
+ " 4. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp5mocjexv.pdf\n",
537
555
  " Page: 4 (Score: -0.0245)\n",
538
- " Snippet: \n",
539
- " \n",
540
- " Library Weeding Log ...\n",
541
- " 5. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp67aw1giy.pdf\n",
556
+ " Snippet: Library Weeding Log Atlanta Public Schools\n",
557
+ "From: 8/1/2017 To: 6/30/2023\n",
558
+ "6/6/2023 - Copies Removed: 130\n",
559
+ "Children of the Philippines (Removed: 1)\n",
560
+ "Author: Kinkade, Sheila, 1962- ISBN: 0-87614-993-X Publi...\n",
561
+ " 5. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp5mocjexv.pdf\n",
542
562
  " Page: 3 (Score: -0.0445)\n",
543
- " Snippet: \n",
544
- " \n",
545
- " Library Weeding Log ...\n",
546
- " 6. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp67aw1giy.pdf\n",
563
+ " Snippet: Library Weeding Log Atlanta Public Schools\n",
564
+ "From: 8/1/2017 To: 6/30/2023\n",
565
+ "6/6/2023 - Copies Removed: 130\n",
566
+ "Centennial Place 33170000507600 $19.45 2/21/2000 33554-43170\n",
567
+ "Academy (Charter)\n",
568
+ "Was Available -- W...\n",
569
+ " 6. PDF: /var/folders/25/h3prywj14qb0mlkl2s8bxq5m0000gn/T/tmp5mocjexv.pdf\n",
547
570
  " Page: 1 (Score: -0.0473)\n",
548
- " Snippet: \n",
549
- " \n",
550
- " Library Weeding Log ...\n"
571
+ " Snippet: Library Weeding Log Atlanta Public Schools\n",
572
+ "From: 8/1/2017 To: 6/30/2023\n",
573
+ "6/12/2023 - Copies Removed: 2\n",
574
+ "Tristan Strong punches a hole in the sky (Removed: 1)\n",
575
+ "Author: Mbalia, Kwame. ISBN: 978-1-36803993-...\n"
551
576
  ]
552
577
  }
553
578
  ],
@@ -569,7 +594,7 @@
569
594
  },
570
595
  {
571
596
  "cell_type": "markdown",
572
- "id": "1c628c5f",
597
+ "id": "71acde4d",
573
598
  "metadata": {},
574
599
  "source": [
575
600
  "Semantic search allows you to efficiently query large sets of documents to find the most relevant information without needing exact keyword matches, leveraging the meaning and context of your query. "
@@ -582,6 +607,11 @@
582
607
  "main_language": "python",
583
608
  "notebook_metadata_filter": "-all"
584
609
  },
610
+ "kernelspec": {
611
+ "display_name": "Python (natural-pdf)",
612
+ "language": "python",
613
+ "name": "natural-pdf"
614
+ },
585
615
  "language_info": {
586
616
  "codemirror_mode": {
587
617
  "name": "ipython",
@@ -597,7 +627,7 @@
597
627
  "widgets": {
598
628
  "application/vnd.jupyter.widget-state+json": {
599
629
  "state": {
600
- "026c1486481a4a5cb64c3e3e4dfea542": {
630
+ "045481258c7a4764b11034c22edd1940": {
601
631
  "model_module": "@jupyter-widgets/controls",
602
632
  "model_module_version": "2.0.0",
603
633
  "model_name": "HTMLStyleModel",
@@ -615,7 +645,7 @@
615
645
  "text_color": null
616
646
  }
617
647
  },
618
- "0cecc462036e46ceabe7e0bbf41f086c": {
648
+ "04f0fb9dfb2645cd8a728bf068b2ed2d": {
619
649
  "model_module": "@jupyter-widgets/base",
620
650
  "model_module_version": "2.0.0",
621
651
  "model_name": "LayoutModel",
@@ -668,56 +698,112 @@
668
698
  "width": null
669
699
  }
670
700
  },
671
- "1c916b704c77462ebf088c5b45543e05": {
701
+ "0a8d6584c2c745b19fbbe35ad99312a6": {
672
702
  "model_module": "@jupyter-widgets/controls",
673
703
  "model_module_version": "2.0.0",
674
- "model_name": "HTMLModel",
704
+ "model_name": "ProgressStyleModel",
705
+ "state": {
706
+ "_model_module": "@jupyter-widgets/controls",
707
+ "_model_module_version": "2.0.0",
708
+ "_model_name": "ProgressStyleModel",
709
+ "_view_count": null,
710
+ "_view_module": "@jupyter-widgets/base",
711
+ "_view_module_version": "2.0.0",
712
+ "_view_name": "StyleView",
713
+ "bar_color": null,
714
+ "description_width": ""
715
+ }
716
+ },
717
+ "168a989d9d724abf92f2c02538b32c39": {
718
+ "model_module": "@jupyter-widgets/controls",
719
+ "model_module_version": "2.0.0",
720
+ "model_name": "HBoxModel",
675
721
  "state": {
676
722
  "_dom_classes": [],
677
723
  "_model_module": "@jupyter-widgets/controls",
678
724
  "_model_module_version": "2.0.0",
679
- "_model_name": "HTMLModel",
725
+ "_model_name": "HBoxModel",
680
726
  "_view_count": null,
681
727
  "_view_module": "@jupyter-widgets/controls",
682
728
  "_view_module_version": "2.0.0",
683
- "_view_name": "HTMLView",
684
- "description": "",
685
- "description_allow_html": false,
686
- "layout": "IPY_MODEL_bbd4b71814b24819bc02e8a3ae7cf936",
687
- "placeholder": "​",
688
- "style": "IPY_MODEL_026c1486481a4a5cb64c3e3e4dfea542",
729
+ "_view_name": "HBoxView",
730
+ "box_style": "",
731
+ "children": [
732
+ "IPY_MODEL_f1c19e7db0684964b147abb8c00c0bbe",
733
+ "IPY_MODEL_ccb14891737b488ebfc6ae39fb14a6a1",
734
+ "IPY_MODEL_7690b035d029413bb7a6f6d849c4777e"
735
+ ],
736
+ "layout": "IPY_MODEL_563942a751b54656a2c953abf1b908cc",
689
737
  "tabbable": null,
690
- "tooltip": null,
691
- "value": "Batches: 100%"
738
+ "tooltip": null
692
739
  }
693
740
  },
694
- "23da5426a33a4f2e8eba26ae5371beb0": {
741
+ "1fe57cefc03543c1af6ea64f44226e50": {
695
742
  "model_module": "@jupyter-widgets/controls",
696
743
  "model_module_version": "2.0.0",
697
- "model_name": "FloatProgressModel",
744
+ "model_name": "HTMLStyleModel",
745
+ "state": {
746
+ "_model_module": "@jupyter-widgets/controls",
747
+ "_model_module_version": "2.0.0",
748
+ "_model_name": "HTMLStyleModel",
749
+ "_view_count": null,
750
+ "_view_module": "@jupyter-widgets/base",
751
+ "_view_module_version": "2.0.0",
752
+ "_view_name": "StyleView",
753
+ "background": null,
754
+ "description_width": "",
755
+ "font_size": null,
756
+ "text_color": null
757
+ }
758
+ },
759
+ "2a9bdf4a442c40ba81ca10ec0d504df4": {
760
+ "model_module": "@jupyter-widgets/controls",
761
+ "model_module_version": "2.0.0",
762
+ "model_name": "HBoxModel",
698
763
  "state": {
699
764
  "_dom_classes": [],
700
765
  "_model_module": "@jupyter-widgets/controls",
701
766
  "_model_module_version": "2.0.0",
702
- "_model_name": "FloatProgressModel",
767
+ "_model_name": "HBoxModel",
703
768
  "_view_count": null,
704
769
  "_view_module": "@jupyter-widgets/controls",
705
770
  "_view_module_version": "2.0.0",
706
- "_view_name": "ProgressView",
707
- "bar_style": "success",
771
+ "_view_name": "HBoxView",
772
+ "box_style": "",
773
+ "children": [
774
+ "IPY_MODEL_3b31de14259840818658de02f2c8a1c6",
775
+ "IPY_MODEL_57b2175f96744c5da2054d5290a13f67",
776
+ "IPY_MODEL_a6e177ae59604ba997934e000199f8ba"
777
+ ],
778
+ "layout": "IPY_MODEL_c46851eb620b40588a40695a0041cf9d",
779
+ "tabbable": null,
780
+ "tooltip": null
781
+ }
782
+ },
783
+ "2d844fb4766849dab371d9e05be77694": {
784
+ "model_module": "@jupyter-widgets/controls",
785
+ "model_module_version": "2.0.0",
786
+ "model_name": "HTMLModel",
787
+ "state": {
788
+ "_dom_classes": [],
789
+ "_model_module": "@jupyter-widgets/controls",
790
+ "_model_module_version": "2.0.0",
791
+ "_model_name": "HTMLModel",
792
+ "_view_count": null,
793
+ "_view_module": "@jupyter-widgets/controls",
794
+ "_view_module_version": "2.0.0",
795
+ "_view_name": "HTMLView",
708
796
  "description": "",
709
797
  "description_allow_html": false,
710
- "layout": "IPY_MODEL_b9c7a538fab94ea08463c82c24344a64",
711
- "max": 1.0,
712
- "min": 0.0,
713
- "orientation": "horizontal",
714
- "style": "IPY_MODEL_f58162f746b140a8bc38b978a971b841",
798
+ "layout": "IPY_MODEL_d20824fb12014cb8addd60a28c0356b7",
799
+ "placeholder": "​",
800
+ "style": "IPY_MODEL_1fe57cefc03543c1af6ea64f44226e50",
715
801
  "tabbable": null,
716
802
  "tooltip": null,
717
- "value": 1.0
803
+ "value": " 2/2 [00:01&lt;00:00,  1.20it/s]"
718
804
  }
719
805
  },
720
- "327031d1fca04e19ba9fb925ea1f07af": {
806
+ "3b31de14259840818658de02f2c8a1c6": {
721
807
  "model_module": "@jupyter-widgets/controls",
722
808
  "model_module_version": "2.0.0",
723
809
  "model_name": "HTMLModel",
@@ -732,15 +818,15 @@
732
818
  "_view_name": "HTMLView",
733
819
  "description": "",
734
820
  "description_allow_html": false,
735
- "layout": "IPY_MODEL_dca88061cb6f43748dcdc1132ecccc90",
821
+ "layout": "IPY_MODEL_c018bc738c14432abced177e7f346463",
736
822
  "placeholder": "​",
737
- "style": "IPY_MODEL_675d17109fee467495b1e03599ac9261",
823
+ "style": "IPY_MODEL_4632137f9ca8492bb0c1ff2a928ac0f8",
738
824
  "tabbable": null,
739
825
  "tooltip": null,
740
- "value": " 1/1 [00:00&lt;00:00,  7.20it/s]"
826
+ "value": "Batches:100%"
741
827
  }
742
828
  },
743
- "3ccf196c0d0d4dd089991bd63d435c4d": {
829
+ "454ce0223f794fc580050bf4e13cc3a7": {
744
830
  "model_module": "@jupyter-widgets/base",
745
831
  "model_module_version": "2.0.0",
746
832
  "model_name": "LayoutModel",
@@ -793,49 +879,7 @@
793
879
  "width": null
794
880
  }
795
881
  },
796
- "4fe0753b29774d8daf7ecb3f89719349": {
797
- "model_module": "@jupyter-widgets/controls",
798
- "model_module_version": "2.0.0",
799
- "model_name": "HBoxModel",
800
- "state": {
801
- "_dom_classes": [],
802
- "_model_module": "@jupyter-widgets/controls",
803
- "_model_module_version": "2.0.0",
804
- "_model_name": "HBoxModel",
805
- "_view_count": null,
806
- "_view_module": "@jupyter-widgets/controls",
807
- "_view_module_version": "2.0.0",
808
- "_view_name": "HBoxView",
809
- "box_style": "",
810
- "children": [
811
- "IPY_MODEL_8aae53bc7d2d495ca6eb05f98d6fc8da",
812
- "IPY_MODEL_23da5426a33a4f2e8eba26ae5371beb0",
813
- "IPY_MODEL_327031d1fca04e19ba9fb925ea1f07af"
814
- ],
815
- "layout": "IPY_MODEL_f991f9535ca04bc2bee7f1964f1132db",
816
- "tabbable": null,
817
- "tooltip": null
818
- }
819
- },
820
- "548fdb05df104726991dc64580769247": {
821
- "model_module": "@jupyter-widgets/controls",
822
- "model_module_version": "2.0.0",
823
- "model_name": "HTMLStyleModel",
824
- "state": {
825
- "_model_module": "@jupyter-widgets/controls",
826
- "_model_module_version": "2.0.0",
827
- "_model_name": "HTMLStyleModel",
828
- "_view_count": null,
829
- "_view_module": "@jupyter-widgets/base",
830
- "_view_module_version": "2.0.0",
831
- "_view_name": "StyleView",
832
- "background": null,
833
- "description_width": "",
834
- "font_size": null,
835
- "text_color": null
836
- }
837
- },
838
- "675d17109fee467495b1e03599ac9261": {
882
+ "4632137f9ca8492bb0c1ff2a928ac0f8": {
839
883
  "model_module": "@jupyter-widgets/controls",
840
884
  "model_module_version": "2.0.0",
841
885
  "model_name": "HTMLStyleModel",
@@ -853,72 +897,7 @@
853
897
  "text_color": null
854
898
  }
855
899
  },
856
- "7ce5089ebf82424abba28acc0ce522da": {
857
- "model_module": "@jupyter-widgets/controls",
858
- "model_module_version": "2.0.0",
859
- "model_name": "ProgressStyleModel",
860
- "state": {
861
- "_model_module": "@jupyter-widgets/controls",
862
- "_model_module_version": "2.0.0",
863
- "_model_name": "ProgressStyleModel",
864
- "_view_count": null,
865
- "_view_module": "@jupyter-widgets/base",
866
- "_view_module_version": "2.0.0",
867
- "_view_name": "StyleView",
868
- "bar_color": null,
869
- "description_width": ""
870
- }
871
- },
872
- "8328a5952f5645f3b31ab5351fb16a9a": {
873
- "model_module": "@jupyter-widgets/controls",
874
- "model_module_version": "2.0.0",
875
- "model_name": "FloatProgressModel",
876
- "state": {
877
- "_dom_classes": [],
878
- "_model_module": "@jupyter-widgets/controls",
879
- "_model_module_version": "2.0.0",
880
- "_model_name": "FloatProgressModel",
881
- "_view_count": null,
882
- "_view_module": "@jupyter-widgets/controls",
883
- "_view_module_version": "2.0.0",
884
- "_view_name": "ProgressView",
885
- "bar_style": "success",
886
- "description": "",
887
- "description_allow_html": false,
888
- "layout": "IPY_MODEL_96691282e844404ca0686f8777371ba9",
889
- "max": 1.0,
890
- "min": 0.0,
891
- "orientation": "horizontal",
892
- "style": "IPY_MODEL_7ce5089ebf82424abba28acc0ce522da",
893
- "tabbable": null,
894
- "tooltip": null,
895
- "value": 1.0
896
- }
897
- },
898
- "8aae53bc7d2d495ca6eb05f98d6fc8da": {
899
- "model_module": "@jupyter-widgets/controls",
900
- "model_module_version": "2.0.0",
901
- "model_name": "HTMLModel",
902
- "state": {
903
- "_dom_classes": [],
904
- "_model_module": "@jupyter-widgets/controls",
905
- "_model_module_version": "2.0.0",
906
- "_model_name": "HTMLModel",
907
- "_view_count": null,
908
- "_view_module": "@jupyter-widgets/controls",
909
- "_view_module_version": "2.0.0",
910
- "_view_name": "HTMLView",
911
- "description": "",
912
- "description_allow_html": false,
913
- "layout": "IPY_MODEL_8e70848dd5404708b60063a404310668",
914
- "placeholder": "​",
915
- "style": "IPY_MODEL_b9f037775be645de95f0c49ce550385a",
916
- "tabbable": null,
917
- "tooltip": null,
918
- "value": "Batches: 100%"
919
- }
920
- },
921
- "8e70848dd5404708b60063a404310668": {
900
+ "52447d1bde014cb2b04eb51c7f7288b7": {
922
901
  "model_module": "@jupyter-widgets/base",
923
902
  "model_module_version": "2.0.0",
924
903
  "model_name": "LayoutModel",
@@ -971,7 +950,7 @@
971
950
  "width": null
972
951
  }
973
952
  },
974
- "96691282e844404ca0686f8777371ba9": {
953
+ "563942a751b54656a2c953abf1b908cc": {
975
954
  "model_module": "@jupyter-widgets/base",
976
955
  "model_module_version": "2.0.0",
977
956
  "model_name": "LayoutModel",
@@ -1024,7 +1003,33 @@
1024
1003
  "width": null
1025
1004
  }
1026
1005
  },
1027
- "b9c7a538fab94ea08463c82c24344a64": {
1006
+ "57b2175f96744c5da2054d5290a13f67": {
1007
+ "model_module": "@jupyter-widgets/controls",
1008
+ "model_module_version": "2.0.0",
1009
+ "model_name": "FloatProgressModel",
1010
+ "state": {
1011
+ "_dom_classes": [],
1012
+ "_model_module": "@jupyter-widgets/controls",
1013
+ "_model_module_version": "2.0.0",
1014
+ "_model_name": "FloatProgressModel",
1015
+ "_view_count": null,
1016
+ "_view_module": "@jupyter-widgets/controls",
1017
+ "_view_module_version": "2.0.0",
1018
+ "_view_name": "ProgressView",
1019
+ "bar_style": "success",
1020
+ "description": "",
1021
+ "description_allow_html": false,
1022
+ "layout": "IPY_MODEL_04f0fb9dfb2645cd8a728bf068b2ed2d",
1023
+ "max": 1.0,
1024
+ "min": 0.0,
1025
+ "orientation": "horizontal",
1026
+ "style": "IPY_MODEL_c6f89de8432b4587bec4e3e2cca32cbc",
1027
+ "tabbable": null,
1028
+ "tooltip": null,
1029
+ "value": 1.0
1030
+ }
1031
+ },
1032
+ "5d6e9dd429f14ee2b5de4b741602f944": {
1028
1033
  "model_module": "@jupyter-widgets/base",
1029
1034
  "model_module_version": "2.0.0",
1030
1035
  "model_name": "LayoutModel",
@@ -1077,7 +1082,7 @@
1077
1082
  "width": null
1078
1083
  }
1079
1084
  },
1080
- "b9f037775be645de95f0c49ce550385a": {
1085
+ "6024f87266144f52a440ee05bcc407c8": {
1081
1086
  "model_module": "@jupyter-widgets/controls",
1082
1087
  "model_module_version": "2.0.0",
1083
1088
  "model_name": "HTMLStyleModel",
@@ -1095,7 +1100,7 @@
1095
1100
  "text_color": null
1096
1101
  }
1097
1102
  },
1098
- "bbd4b71814b24819bc02e8a3ae7cf936": {
1103
+ "654a2b80c08b40beba55515d525a59af": {
1099
1104
  "model_module": "@jupyter-widgets/base",
1100
1105
  "model_module_version": "2.0.0",
1101
1106
  "model_name": "LayoutModel",
@@ -1148,31 +1153,30 @@
1148
1153
  "width": null
1149
1154
  }
1150
1155
  },
1151
- "cf2741c35c4e430a80c721891fe023d9": {
1156
+ "7690b035d029413bb7a6f6d849c4777e": {
1152
1157
  "model_module": "@jupyter-widgets/controls",
1153
1158
  "model_module_version": "2.0.0",
1154
- "model_name": "HBoxModel",
1159
+ "model_name": "HTMLModel",
1155
1160
  "state": {
1156
1161
  "_dom_classes": [],
1157
1162
  "_model_module": "@jupyter-widgets/controls",
1158
1163
  "_model_module_version": "2.0.0",
1159
- "_model_name": "HBoxModel",
1164
+ "_model_name": "HTMLModel",
1160
1165
  "_view_count": null,
1161
1166
  "_view_module": "@jupyter-widgets/controls",
1162
1167
  "_view_module_version": "2.0.0",
1163
- "_view_name": "HBoxView",
1164
- "box_style": "",
1165
- "children": [
1166
- "IPY_MODEL_1c916b704c77462ebf088c5b45543e05",
1167
- "IPY_MODEL_8328a5952f5645f3b31ab5351fb16a9a",
1168
- "IPY_MODEL_e567efbe84ed461d85b57fc9d69d9d9c"
1169
- ],
1170
- "layout": "IPY_MODEL_0cecc462036e46ceabe7e0bbf41f086c",
1168
+ "_view_name": "HTMLView",
1169
+ "description": "",
1170
+ "description_allow_html": false,
1171
+ "layout": "IPY_MODEL_a1972af713cf43aaaa9b6b695eaf5193",
1172
+ "placeholder": "​",
1173
+ "style": "IPY_MODEL_d35dfa8c17d64d4996e4ec6beb51d9cb",
1171
1174
  "tabbable": null,
1172
- "tooltip": null
1175
+ "tooltip": null,
1176
+ "value": " 1/1 [00:00&lt;00:00,  4.47it/s]"
1173
1177
  }
1174
1178
  },
1175
- "dca88061cb6f43748dcdc1132ecccc90": {
1179
+ "a1972af713cf43aaaa9b6b695eaf5193": {
1176
1180
  "model_module": "@jupyter-widgets/base",
1177
1181
  "model_module_version": "2.0.0",
1178
1182
  "model_name": "LayoutModel",
@@ -1225,7 +1229,7 @@
1225
1229
  "width": null
1226
1230
  }
1227
1231
  },
1228
- "e567efbe84ed461d85b57fc9d69d9d9c": {
1232
+ "a6e177ae59604ba997934e000199f8ba": {
1229
1233
  "model_module": "@jupyter-widgets/controls",
1230
1234
  "model_module_version": "2.0.0",
1231
1235
  "model_name": "HTMLModel",
@@ -1240,31 +1244,15 @@
1240
1244
  "_view_name": "HTMLView",
1241
1245
  "description": "",
1242
1246
  "description_allow_html": false,
1243
- "layout": "IPY_MODEL_3ccf196c0d0d4dd089991bd63d435c4d",
1247
+ "layout": "IPY_MODEL_b240a7aeec0a4e3faaef25c910fcf62e",
1244
1248
  "placeholder": "​",
1245
- "style": "IPY_MODEL_548fdb05df104726991dc64580769247",
1249
+ "style": "IPY_MODEL_6024f87266144f52a440ee05bcc407c8",
1246
1250
  "tabbable": null,
1247
1251
  "tooltip": null,
1248
- "value": " 1/1 [00:00&lt;00:00,  4.09it/s]"
1249
- }
1250
- },
1251
- "f58162f746b140a8bc38b978a971b841": {
1252
- "model_module": "@jupyter-widgets/controls",
1253
- "model_module_version": "2.0.0",
1254
- "model_name": "ProgressStyleModel",
1255
- "state": {
1256
- "_model_module": "@jupyter-widgets/controls",
1257
- "_model_module_version": "2.0.0",
1258
- "_model_name": "ProgressStyleModel",
1259
- "_view_count": null,
1260
- "_view_module": "@jupyter-widgets/base",
1261
- "_view_module_version": "2.0.0",
1262
- "_view_name": "StyleView",
1263
- "bar_color": null,
1264
- "description_width": ""
1252
+ "value": " 1/1 [00:00&lt;00:00,  8.45it/s]"
1265
1253
  }
1266
1254
  },
1267
- "f991f9535ca04bc2bee7f1964f1132db": {
1255
+ "a72a536d760a4ccd95f857d2db3cc8be": {
1268
1256
  "model_module": "@jupyter-widgets/base",
1269
1257
  "model_module_version": "2.0.0",
1270
1258
  "model_name": "LayoutModel",
@@ -1316,6 +1304,408 @@
1316
1304
  "visibility": null,
1317
1305
  "width": null
1318
1306
  }
1307
+ },
1308
+ "b240a7aeec0a4e3faaef25c910fcf62e": {
1309
+ "model_module": "@jupyter-widgets/base",
1310
+ "model_module_version": "2.0.0",
1311
+ "model_name": "LayoutModel",
1312
+ "state": {
1313
+ "_model_module": "@jupyter-widgets/base",
1314
+ "_model_module_version": "2.0.0",
1315
+ "_model_name": "LayoutModel",
1316
+ "_view_count": null,
1317
+ "_view_module": "@jupyter-widgets/base",
1318
+ "_view_module_version": "2.0.0",
1319
+ "_view_name": "LayoutView",
1320
+ "align_content": null,
1321
+ "align_items": null,
1322
+ "align_self": null,
1323
+ "border_bottom": null,
1324
+ "border_left": null,
1325
+ "border_right": null,
1326
+ "border_top": null,
1327
+ "bottom": null,
1328
+ "display": null,
1329
+ "flex": null,
1330
+ "flex_flow": null,
1331
+ "grid_area": null,
1332
+ "grid_auto_columns": null,
1333
+ "grid_auto_flow": null,
1334
+ "grid_auto_rows": null,
1335
+ "grid_column": null,
1336
+ "grid_gap": null,
1337
+ "grid_row": null,
1338
+ "grid_template_areas": null,
1339
+ "grid_template_columns": null,
1340
+ "grid_template_rows": null,
1341
+ "height": null,
1342
+ "justify_content": null,
1343
+ "justify_items": null,
1344
+ "left": null,
1345
+ "margin": null,
1346
+ "max_height": null,
1347
+ "max_width": null,
1348
+ "min_height": null,
1349
+ "min_width": null,
1350
+ "object_fit": null,
1351
+ "object_position": null,
1352
+ "order": null,
1353
+ "overflow": null,
1354
+ "padding": null,
1355
+ "right": null,
1356
+ "top": null,
1357
+ "visibility": null,
1358
+ "width": null
1359
+ }
1360
+ },
1361
+ "c018bc738c14432abced177e7f346463": {
1362
+ "model_module": "@jupyter-widgets/base",
1363
+ "model_module_version": "2.0.0",
1364
+ "model_name": "LayoutModel",
1365
+ "state": {
1366
+ "_model_module": "@jupyter-widgets/base",
1367
+ "_model_module_version": "2.0.0",
1368
+ "_model_name": "LayoutModel",
1369
+ "_view_count": null,
1370
+ "_view_module": "@jupyter-widgets/base",
1371
+ "_view_module_version": "2.0.0",
1372
+ "_view_name": "LayoutView",
1373
+ "align_content": null,
1374
+ "align_items": null,
1375
+ "align_self": null,
1376
+ "border_bottom": null,
1377
+ "border_left": null,
1378
+ "border_right": null,
1379
+ "border_top": null,
1380
+ "bottom": null,
1381
+ "display": null,
1382
+ "flex": null,
1383
+ "flex_flow": null,
1384
+ "grid_area": null,
1385
+ "grid_auto_columns": null,
1386
+ "grid_auto_flow": null,
1387
+ "grid_auto_rows": null,
1388
+ "grid_column": null,
1389
+ "grid_gap": null,
1390
+ "grid_row": null,
1391
+ "grid_template_areas": null,
1392
+ "grid_template_columns": null,
1393
+ "grid_template_rows": null,
1394
+ "height": null,
1395
+ "justify_content": null,
1396
+ "justify_items": null,
1397
+ "left": null,
1398
+ "margin": null,
1399
+ "max_height": null,
1400
+ "max_width": null,
1401
+ "min_height": null,
1402
+ "min_width": null,
1403
+ "object_fit": null,
1404
+ "object_position": null,
1405
+ "order": null,
1406
+ "overflow": null,
1407
+ "padding": null,
1408
+ "right": null,
1409
+ "top": null,
1410
+ "visibility": null,
1411
+ "width": null
1412
+ }
1413
+ },
1414
+ "c30057e29da04e6bb16cbbf1038338b9": {
1415
+ "model_module": "@jupyter-widgets/controls",
1416
+ "model_module_version": "2.0.0",
1417
+ "model_name": "HTMLModel",
1418
+ "state": {
1419
+ "_dom_classes": [],
1420
+ "_model_module": "@jupyter-widgets/controls",
1421
+ "_model_module_version": "2.0.0",
1422
+ "_model_name": "HTMLModel",
1423
+ "_view_count": null,
1424
+ "_view_module": "@jupyter-widgets/controls",
1425
+ "_view_module_version": "2.0.0",
1426
+ "_view_name": "HTMLView",
1427
+ "description": "",
1428
+ "description_allow_html": false,
1429
+ "layout": "IPY_MODEL_52447d1bde014cb2b04eb51c7f7288b7",
1430
+ "placeholder": "​",
1431
+ "style": "IPY_MODEL_f2f35bcfdb8c44cda4afab0f92a73de8",
1432
+ "tabbable": null,
1433
+ "tooltip": null,
1434
+ "value": "Loading PDFs: 100%"
1435
+ }
1436
+ },
1437
+ "c46851eb620b40588a40695a0041cf9d": {
1438
+ "model_module": "@jupyter-widgets/base",
1439
+ "model_module_version": "2.0.0",
1440
+ "model_name": "LayoutModel",
1441
+ "state": {
1442
+ "_model_module": "@jupyter-widgets/base",
1443
+ "_model_module_version": "2.0.0",
1444
+ "_model_name": "LayoutModel",
1445
+ "_view_count": null,
1446
+ "_view_module": "@jupyter-widgets/base",
1447
+ "_view_module_version": "2.0.0",
1448
+ "_view_name": "LayoutView",
1449
+ "align_content": null,
1450
+ "align_items": null,
1451
+ "align_self": null,
1452
+ "border_bottom": null,
1453
+ "border_left": null,
1454
+ "border_right": null,
1455
+ "border_top": null,
1456
+ "bottom": null,
1457
+ "display": null,
1458
+ "flex": null,
1459
+ "flex_flow": null,
1460
+ "grid_area": null,
1461
+ "grid_auto_columns": null,
1462
+ "grid_auto_flow": null,
1463
+ "grid_auto_rows": null,
1464
+ "grid_column": null,
1465
+ "grid_gap": null,
1466
+ "grid_row": null,
1467
+ "grid_template_areas": null,
1468
+ "grid_template_columns": null,
1469
+ "grid_template_rows": null,
1470
+ "height": null,
1471
+ "justify_content": null,
1472
+ "justify_items": null,
1473
+ "left": null,
1474
+ "margin": null,
1475
+ "max_height": null,
1476
+ "max_width": null,
1477
+ "min_height": null,
1478
+ "min_width": null,
1479
+ "object_fit": null,
1480
+ "object_position": null,
1481
+ "order": null,
1482
+ "overflow": null,
1483
+ "padding": null,
1484
+ "right": null,
1485
+ "top": null,
1486
+ "visibility": null,
1487
+ "width": null
1488
+ }
1489
+ },
1490
+ "c585a351229e48ba83f972610c1548bc": {
1491
+ "model_module": "@jupyter-widgets/controls",
1492
+ "model_module_version": "2.0.0",
1493
+ "model_name": "FloatProgressModel",
1494
+ "state": {
1495
+ "_dom_classes": [],
1496
+ "_model_module": "@jupyter-widgets/controls",
1497
+ "_model_module_version": "2.0.0",
1498
+ "_model_name": "FloatProgressModel",
1499
+ "_view_count": null,
1500
+ "_view_module": "@jupyter-widgets/controls",
1501
+ "_view_module_version": "2.0.0",
1502
+ "_view_name": "ProgressView",
1503
+ "bar_style": "success",
1504
+ "description": "",
1505
+ "description_allow_html": false,
1506
+ "layout": "IPY_MODEL_654a2b80c08b40beba55515d525a59af",
1507
+ "max": 2.0,
1508
+ "min": 0.0,
1509
+ "orientation": "horizontal",
1510
+ "style": "IPY_MODEL_f0bd73ebff9942168e0f68823c099dd1",
1511
+ "tabbable": null,
1512
+ "tooltip": null,
1513
+ "value": 2.0
1514
+ }
1515
+ },
1516
+ "c6f89de8432b4587bec4e3e2cca32cbc": {
1517
+ "model_module": "@jupyter-widgets/controls",
1518
+ "model_module_version": "2.0.0",
1519
+ "model_name": "ProgressStyleModel",
1520
+ "state": {
1521
+ "_model_module": "@jupyter-widgets/controls",
1522
+ "_model_module_version": "2.0.0",
1523
+ "_model_name": "ProgressStyleModel",
1524
+ "_view_count": null,
1525
+ "_view_module": "@jupyter-widgets/base",
1526
+ "_view_module_version": "2.0.0",
1527
+ "_view_name": "StyleView",
1528
+ "bar_color": null,
1529
+ "description_width": ""
1530
+ }
1531
+ },
1532
+ "ccb14891737b488ebfc6ae39fb14a6a1": {
1533
+ "model_module": "@jupyter-widgets/controls",
1534
+ "model_module_version": "2.0.0",
1535
+ "model_name": "FloatProgressModel",
1536
+ "state": {
1537
+ "_dom_classes": [],
1538
+ "_model_module": "@jupyter-widgets/controls",
1539
+ "_model_module_version": "2.0.0",
1540
+ "_model_name": "FloatProgressModel",
1541
+ "_view_count": null,
1542
+ "_view_module": "@jupyter-widgets/controls",
1543
+ "_view_module_version": "2.0.0",
1544
+ "_view_name": "ProgressView",
1545
+ "bar_style": "success",
1546
+ "description": "",
1547
+ "description_allow_html": false,
1548
+ "layout": "IPY_MODEL_5d6e9dd429f14ee2b5de4b741602f944",
1549
+ "max": 1.0,
1550
+ "min": 0.0,
1551
+ "orientation": "horizontal",
1552
+ "style": "IPY_MODEL_0a8d6584c2c745b19fbbe35ad99312a6",
1553
+ "tabbable": null,
1554
+ "tooltip": null,
1555
+ "value": 1.0
1556
+ }
1557
+ },
1558
+ "d20824fb12014cb8addd60a28c0356b7": {
1559
+ "model_module": "@jupyter-widgets/base",
1560
+ "model_module_version": "2.0.0",
1561
+ "model_name": "LayoutModel",
1562
+ "state": {
1563
+ "_model_module": "@jupyter-widgets/base",
1564
+ "_model_module_version": "2.0.0",
1565
+ "_model_name": "LayoutModel",
1566
+ "_view_count": null,
1567
+ "_view_module": "@jupyter-widgets/base",
1568
+ "_view_module_version": "2.0.0",
1569
+ "_view_name": "LayoutView",
1570
+ "align_content": null,
1571
+ "align_items": null,
1572
+ "align_self": null,
1573
+ "border_bottom": null,
1574
+ "border_left": null,
1575
+ "border_right": null,
1576
+ "border_top": null,
1577
+ "bottom": null,
1578
+ "display": null,
1579
+ "flex": null,
1580
+ "flex_flow": null,
1581
+ "grid_area": null,
1582
+ "grid_auto_columns": null,
1583
+ "grid_auto_flow": null,
1584
+ "grid_auto_rows": null,
1585
+ "grid_column": null,
1586
+ "grid_gap": null,
1587
+ "grid_row": null,
1588
+ "grid_template_areas": null,
1589
+ "grid_template_columns": null,
1590
+ "grid_template_rows": null,
1591
+ "height": null,
1592
+ "justify_content": null,
1593
+ "justify_items": null,
1594
+ "left": null,
1595
+ "margin": null,
1596
+ "max_height": null,
1597
+ "max_width": null,
1598
+ "min_height": null,
1599
+ "min_width": null,
1600
+ "object_fit": null,
1601
+ "object_position": null,
1602
+ "order": null,
1603
+ "overflow": null,
1604
+ "padding": null,
1605
+ "right": null,
1606
+ "top": null,
1607
+ "visibility": null,
1608
+ "width": null
1609
+ }
1610
+ },
1611
+ "d35dfa8c17d64d4996e4ec6beb51d9cb": {
1612
+ "model_module": "@jupyter-widgets/controls",
1613
+ "model_module_version": "2.0.0",
1614
+ "model_name": "HTMLStyleModel",
1615
+ "state": {
1616
+ "_model_module": "@jupyter-widgets/controls",
1617
+ "_model_module_version": "2.0.0",
1618
+ "_model_name": "HTMLStyleModel",
1619
+ "_view_count": null,
1620
+ "_view_module": "@jupyter-widgets/base",
1621
+ "_view_module_version": "2.0.0",
1622
+ "_view_name": "StyleView",
1623
+ "background": null,
1624
+ "description_width": "",
1625
+ "font_size": null,
1626
+ "text_color": null
1627
+ }
1628
+ },
1629
+ "d7fd32b9ea9f487099b048e5b410f76f": {
1630
+ "model_module": "@jupyter-widgets/controls",
1631
+ "model_module_version": "2.0.0",
1632
+ "model_name": "HBoxModel",
1633
+ "state": {
1634
+ "_dom_classes": [],
1635
+ "_model_module": "@jupyter-widgets/controls",
1636
+ "_model_module_version": "2.0.0",
1637
+ "_model_name": "HBoxModel",
1638
+ "_view_count": null,
1639
+ "_view_module": "@jupyter-widgets/controls",
1640
+ "_view_module_version": "2.0.0",
1641
+ "_view_name": "HBoxView",
1642
+ "box_style": "",
1643
+ "children": [
1644
+ "IPY_MODEL_c30057e29da04e6bb16cbbf1038338b9",
1645
+ "IPY_MODEL_c585a351229e48ba83f972610c1548bc",
1646
+ "IPY_MODEL_2d844fb4766849dab371d9e05be77694"
1647
+ ],
1648
+ "layout": "IPY_MODEL_454ce0223f794fc580050bf4e13cc3a7",
1649
+ "tabbable": null,
1650
+ "tooltip": null
1651
+ }
1652
+ },
1653
+ "f0bd73ebff9942168e0f68823c099dd1": {
1654
+ "model_module": "@jupyter-widgets/controls",
1655
+ "model_module_version": "2.0.0",
1656
+ "model_name": "ProgressStyleModel",
1657
+ "state": {
1658
+ "_model_module": "@jupyter-widgets/controls",
1659
+ "_model_module_version": "2.0.0",
1660
+ "_model_name": "ProgressStyleModel",
1661
+ "_view_count": null,
1662
+ "_view_module": "@jupyter-widgets/base",
1663
+ "_view_module_version": "2.0.0",
1664
+ "_view_name": "StyleView",
1665
+ "bar_color": null,
1666
+ "description_width": ""
1667
+ }
1668
+ },
1669
+ "f1c19e7db0684964b147abb8c00c0bbe": {
1670
+ "model_module": "@jupyter-widgets/controls",
1671
+ "model_module_version": "2.0.0",
1672
+ "model_name": "HTMLModel",
1673
+ "state": {
1674
+ "_dom_classes": [],
1675
+ "_model_module": "@jupyter-widgets/controls",
1676
+ "_model_module_version": "2.0.0",
1677
+ "_model_name": "HTMLModel",
1678
+ "_view_count": null,
1679
+ "_view_module": "@jupyter-widgets/controls",
1680
+ "_view_module_version": "2.0.0",
1681
+ "_view_name": "HTMLView",
1682
+ "description": "",
1683
+ "description_allow_html": false,
1684
+ "layout": "IPY_MODEL_a72a536d760a4ccd95f857d2db3cc8be",
1685
+ "placeholder": "​",
1686
+ "style": "IPY_MODEL_045481258c7a4764b11034c22edd1940",
1687
+ "tabbable": null,
1688
+ "tooltip": null,
1689
+ "value": "Batches: 100%"
1690
+ }
1691
+ },
1692
+ "f2f35bcfdb8c44cda4afab0f92a73de8": {
1693
+ "model_module": "@jupyter-widgets/controls",
1694
+ "model_module_version": "2.0.0",
1695
+ "model_name": "HTMLStyleModel",
1696
+ "state": {
1697
+ "_model_module": "@jupyter-widgets/controls",
1698
+ "_model_module_version": "2.0.0",
1699
+ "_model_name": "HTMLStyleModel",
1700
+ "_view_count": null,
1701
+ "_view_module": "@jupyter-widgets/base",
1702
+ "_view_module_version": "2.0.0",
1703
+ "_view_name": "StyleView",
1704
+ "background": null,
1705
+ "description_width": "",
1706
+ "font_size": null,
1707
+ "text_color": null
1708
+ }
1319
1709
  }
1320
1710
  },
1321
1711
  "version_major": 2,