deepdoctection 0.30__py3-none-any.whl → 0.31__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.

Potentially problematic release.


This version of deepdoctection might be problematic. Click here for more details.

Files changed (74) hide show
  1. deepdoctection/__init__.py +4 -2
  2. deepdoctection/analyzer/dd.py +6 -5
  3. deepdoctection/dataflow/base.py +0 -19
  4. deepdoctection/dataflow/custom.py +4 -3
  5. deepdoctection/dataflow/custom_serialize.py +14 -5
  6. deepdoctection/dataflow/parallel_map.py +12 -11
  7. deepdoctection/dataflow/serialize.py +5 -4
  8. deepdoctection/datapoint/annotation.py +33 -12
  9. deepdoctection/datapoint/box.py +1 -4
  10. deepdoctection/datapoint/convert.py +3 -1
  11. deepdoctection/datapoint/image.py +66 -29
  12. deepdoctection/datapoint/view.py +57 -25
  13. deepdoctection/datasets/adapter.py +1 -1
  14. deepdoctection/datasets/base.py +83 -10
  15. deepdoctection/datasets/dataflow_builder.py +1 -1
  16. deepdoctection/datasets/info.py +2 -2
  17. deepdoctection/datasets/instances/layouttest.py +2 -7
  18. deepdoctection/eval/accmetric.py +1 -1
  19. deepdoctection/eval/base.py +5 -4
  20. deepdoctection/eval/eval.py +2 -2
  21. deepdoctection/eval/tp_eval_callback.py +5 -4
  22. deepdoctection/extern/base.py +39 -13
  23. deepdoctection/extern/d2detect.py +164 -64
  24. deepdoctection/extern/deskew.py +32 -7
  25. deepdoctection/extern/doctrocr.py +227 -39
  26. deepdoctection/extern/fastlang.py +45 -7
  27. deepdoctection/extern/hfdetr.py +90 -33
  28. deepdoctection/extern/hflayoutlm.py +109 -22
  29. deepdoctection/extern/pdftext.py +2 -1
  30. deepdoctection/extern/pt/ptutils.py +3 -2
  31. deepdoctection/extern/tessocr.py +134 -22
  32. deepdoctection/extern/texocr.py +2 -0
  33. deepdoctection/extern/tp/tpcompat.py +4 -4
  34. deepdoctection/extern/tp/tpfrcnn/preproc.py +2 -7
  35. deepdoctection/extern/tpdetect.py +50 -23
  36. deepdoctection/mapper/d2struct.py +1 -1
  37. deepdoctection/mapper/hfstruct.py +1 -1
  38. deepdoctection/mapper/laylmstruct.py +1 -1
  39. deepdoctection/mapper/maputils.py +13 -2
  40. deepdoctection/mapper/prodigystruct.py +1 -1
  41. deepdoctection/mapper/pubstruct.py +10 -10
  42. deepdoctection/mapper/tpstruct.py +1 -1
  43. deepdoctection/pipe/anngen.py +35 -8
  44. deepdoctection/pipe/base.py +53 -19
  45. deepdoctection/pipe/cell.py +29 -8
  46. deepdoctection/pipe/common.py +12 -4
  47. deepdoctection/pipe/doctectionpipe.py +2 -2
  48. deepdoctection/pipe/language.py +3 -2
  49. deepdoctection/pipe/layout.py +3 -2
  50. deepdoctection/pipe/lm.py +2 -2
  51. deepdoctection/pipe/refine.py +18 -10
  52. deepdoctection/pipe/segment.py +21 -16
  53. deepdoctection/pipe/text.py +14 -8
  54. deepdoctection/pipe/transform.py +16 -9
  55. deepdoctection/train/d2_frcnn_train.py +15 -12
  56. deepdoctection/train/hf_detr_train.py +8 -6
  57. deepdoctection/train/hf_layoutlm_train.py +16 -11
  58. deepdoctection/utils/__init__.py +3 -0
  59. deepdoctection/utils/concurrency.py +1 -1
  60. deepdoctection/utils/context.py +2 -2
  61. deepdoctection/utils/env_info.py +55 -22
  62. deepdoctection/utils/error.py +84 -0
  63. deepdoctection/utils/file_utils.py +4 -15
  64. deepdoctection/utils/fs.py +7 -7
  65. deepdoctection/utils/pdf_utils.py +5 -4
  66. deepdoctection/utils/settings.py +5 -1
  67. deepdoctection/utils/transform.py +1 -1
  68. deepdoctection/utils/utils.py +0 -6
  69. deepdoctection/utils/viz.py +44 -2
  70. {deepdoctection-0.30.dist-info → deepdoctection-0.31.dist-info}/METADATA +33 -58
  71. {deepdoctection-0.30.dist-info → deepdoctection-0.31.dist-info}/RECORD +74 -73
  72. {deepdoctection-0.30.dist-info → deepdoctection-0.31.dist-info}/WHEEL +1 -1
  73. {deepdoctection-0.30.dist-info → deepdoctection-0.31.dist-info}/LICENSE +0 -0
  74. {deepdoctection-0.30.dist-info → deepdoctection-0.31.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: deepdoctection
3
- Version: 0.30
3
+ Version: 0.31
4
4
  Summary: Repository for Document AI
5
5
  Home-page: https://github.com/deepdoctection/deepdoctection
6
6
  Author: Dr. Janis Meyer
@@ -17,9 +17,9 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
17
  Requires-Python: >=3.8
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: LICENSE
20
- Requires-Dist: catalogue ==2.0.7
20
+ Requires-Dist: catalogue ==2.0.10
21
21
  Requires-Dist: huggingface-hub >=0.12.0
22
- Requires-Dist: importlib-metadata >=4.11.2
22
+ Requires-Dist: importlib-metadata >=5.0.0
23
23
  Requires-Dist: jsonlines ==3.1.0
24
24
  Requires-Dist: mock ==4.0.3
25
25
  Requires-Dist: networkx >=2.7.1
@@ -27,7 +27,7 @@ Requires-Dist: numpy >=1.21
27
27
  Requires-Dist: packaging >=20.0
28
28
  Requires-Dist: Pillow >=10.0.0
29
29
  Requires-Dist: pypdf >=3.16.0
30
- Requires-Dist: pyyaml ==6.0
30
+ Requires-Dist: pyyaml >=6.0.1
31
31
  Requires-Dist: pyzmq >=16
32
32
  Requires-Dist: termcolor >=1.1
33
33
  Requires-Dist: tabulate >=0.7.7
@@ -36,61 +36,34 @@ Provides-Extra: dev
36
36
  Requires-Dist: python-dotenv ==1.0.0 ; extra == 'dev'
37
37
  Requires-Dist: click ; extra == 'dev'
38
38
  Requires-Dist: black ==23.7.0 ; extra == 'dev'
39
- Requires-Dist: isort ; extra == 'dev'
39
+ Requires-Dist: isort ==5.13.2 ; extra == 'dev'
40
40
  Requires-Dist: pylint ==2.17.4 ; extra == 'dev'
41
41
  Requires-Dist: mypy ==1.4.1 ; extra == 'dev'
42
42
  Requires-Dist: wandb ; extra == 'dev'
43
- Requires-Dist: types-PyYAML ; extra == 'dev'
44
- Requires-Dist: types-termcolor ==1.1.3 ; extra == 'dev'
45
- Requires-Dist: types-tabulate ; extra == 'dev'
46
- Requires-Dist: types-tqdm ; extra == 'dev'
47
- Requires-Dist: lxml-stubs ; extra == 'dev'
48
- Requires-Dist: types-Pillow ; extra == 'dev'
49
- Requires-Dist: types-urllib3 ; extra == 'dev'
43
+ Requires-Dist: types-PyYAML >=6.0.12.12 ; extra == 'dev'
44
+ Requires-Dist: types-termcolor >=1.1.3 ; extra == 'dev'
45
+ Requires-Dist: types-tabulate >=0.9.0.3 ; extra == 'dev'
46
+ Requires-Dist: types-tqdm >=4.66.0.5 ; extra == 'dev'
47
+ Requires-Dist: lxml-stubs >=0.5.1 ; extra == 'dev'
48
+ Requires-Dist: types-Pillow >=10.2.0.20240406 ; extra == 'dev'
49
+ Requires-Dist: types-urllib3 >=1.26.25.14 ; extra == 'dev'
50
50
  Provides-Extra: docs
51
- Requires-Dist: tensorpack ; extra == 'docs'
51
+ Requires-Dist: tensorpack ==0.11 ; extra == 'docs'
52
52
  Requires-Dist: boto3 ; extra == 'docs'
53
53
  Requires-Dist: transformers >=4.36.0 ; extra == 'docs'
54
- Requires-Dist: accelerate ; extra == 'docs'
54
+ Requires-Dist: accelerate >=0.29.1 ; extra == 'docs'
55
55
  Requires-Dist: pdfplumber >=0.7.1 ; extra == 'docs'
56
56
  Requires-Dist: lxml >=4.9.1 ; extra == 'docs'
57
- Requires-Dist: lxml-stubs ; extra == 'docs'
58
- Requires-Dist: jdeskew ; extra == 'docs'
57
+ Requires-Dist: lxml-stubs >=0.5.1 ; extra == 'docs'
58
+ Requires-Dist: jdeskew >=0.2.2 ; extra == 'docs'
59
59
  Requires-Dist: jinja2 ==3.0.3 ; extra == 'docs'
60
60
  Requires-Dist: mkdocs-material ; extra == 'docs'
61
61
  Requires-Dist: mkdocstrings-python ; extra == 'docs'
62
62
  Requires-Dist: griffe ==0.25.0 ; extra == 'docs'
63
- Provides-Extra: hf
64
- Requires-Dist: catalogue ==2.0.7 ; extra == 'hf'
65
- Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'hf'
66
- Requires-Dist: importlib-metadata >=4.11.2 ; extra == 'hf'
67
- Requires-Dist: jsonlines ==3.1.0 ; extra == 'hf'
68
- Requires-Dist: mock ==4.0.3 ; extra == 'hf'
69
- Requires-Dist: networkx >=2.7.1 ; extra == 'hf'
70
- Requires-Dist: numpy >=1.21 ; extra == 'hf'
71
- Requires-Dist: packaging >=20.0 ; extra == 'hf'
72
- Requires-Dist: Pillow >=10.0.0 ; extra == 'hf'
73
- Requires-Dist: pypdf >=3.16.0 ; extra == 'hf'
74
- Requires-Dist: pyyaml ==6.0 ; extra == 'hf'
75
- Requires-Dist: pyzmq >=16 ; extra == 'hf'
76
- Requires-Dist: termcolor >=1.1 ; extra == 'hf'
77
- Requires-Dist: tabulate >=0.7.7 ; extra == 'hf'
78
- Requires-Dist: tqdm ==4.64.0 ; extra == 'hf'
79
- Requires-Dist: timm ; extra == 'hf'
80
- Requires-Dist: transformers >=4.36.0 ; extra == 'hf'
81
- Requires-Dist: accelerate ; extra == 'hf'
82
- Requires-Dist: python-doctr ==0.7.0 ; extra == 'hf'
83
- Requires-Dist: boto3 ; extra == 'hf'
84
- Requires-Dist: pdfplumber >=0.7.1 ; extra == 'hf'
85
- Requires-Dist: fasttext ; extra == 'hf'
86
- Requires-Dist: jdeskew ; extra == 'hf'
87
- Requires-Dist: apted ==1.0.3 ; extra == 'hf'
88
- Requires-Dist: distance ==0.1.3 ; extra == 'hf'
89
- Requires-Dist: lxml >=4.9.1 ; extra == 'hf'
90
63
  Provides-Extra: pt
91
- Requires-Dist: catalogue ==2.0.7 ; extra == 'pt'
64
+ Requires-Dist: catalogue ==2.0.10 ; extra == 'pt'
92
65
  Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'pt'
93
- Requires-Dist: importlib-metadata >=4.11.2 ; extra == 'pt'
66
+ Requires-Dist: importlib-metadata >=5.0.0 ; extra == 'pt'
94
67
  Requires-Dist: jsonlines ==3.1.0 ; extra == 'pt'
95
68
  Requires-Dist: mock ==4.0.3 ; extra == 'pt'
96
69
  Requires-Dist: networkx >=2.7.1 ; extra == 'pt'
@@ -98,29 +71,29 @@ Requires-Dist: numpy >=1.21 ; extra == 'pt'
98
71
  Requires-Dist: packaging >=20.0 ; extra == 'pt'
99
72
  Requires-Dist: Pillow >=10.0.0 ; extra == 'pt'
100
73
  Requires-Dist: pypdf >=3.16.0 ; extra == 'pt'
101
- Requires-Dist: pyyaml ==6.0 ; extra == 'pt'
74
+ Requires-Dist: pyyaml >=6.0.1 ; extra == 'pt'
102
75
  Requires-Dist: pyzmq >=16 ; extra == 'pt'
103
76
  Requires-Dist: termcolor >=1.1 ; extra == 'pt'
104
77
  Requires-Dist: tabulate >=0.7.7 ; extra == 'pt'
105
78
  Requires-Dist: tqdm ==4.64.0 ; extra == 'pt'
106
- Requires-Dist: timm ; extra == 'pt'
79
+ Requires-Dist: timm >=0.9.16 ; extra == 'pt'
107
80
  Requires-Dist: transformers >=4.36.0 ; extra == 'pt'
108
- Requires-Dist: accelerate ; extra == 'pt'
81
+ Requires-Dist: accelerate >=0.29.1 ; extra == 'pt'
109
82
  Requires-Dist: python-doctr ==0.7.0 ; extra == 'pt'
110
83
  Requires-Dist: boto3 ; extra == 'pt'
111
84
  Requires-Dist: pdfplumber >=0.7.1 ; extra == 'pt'
112
- Requires-Dist: fasttext ; extra == 'pt'
113
- Requires-Dist: jdeskew ; extra == 'pt'
85
+ Requires-Dist: fasttext ==0.9.2 ; extra == 'pt'
86
+ Requires-Dist: jdeskew >=0.2.2 ; extra == 'pt'
114
87
  Requires-Dist: apted ==1.0.3 ; extra == 'pt'
115
88
  Requires-Dist: distance ==0.1.3 ; extra == 'pt'
116
89
  Requires-Dist: lxml >=4.9.1 ; extra == 'pt'
117
90
  Provides-Extra: test
118
- Requires-Dist: pytest ; extra == 'test'
91
+ Requires-Dist: pytest ==8.0.2 ; extra == 'test'
119
92
  Requires-Dist: pytest-cov ; extra == 'test'
120
93
  Provides-Extra: tf
121
- Requires-Dist: catalogue ==2.0.7 ; extra == 'tf'
94
+ Requires-Dist: catalogue ==2.0.10 ; extra == 'tf'
122
95
  Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'tf'
123
- Requires-Dist: importlib-metadata >=4.11.2 ; extra == 'tf'
96
+ Requires-Dist: importlib-metadata >=5.0.0 ; extra == 'tf'
124
97
  Requires-Dist: jsonlines ==3.1.0 ; extra == 'tf'
125
98
  Requires-Dist: mock ==4.0.3 ; extra == 'tf'
126
99
  Requires-Dist: networkx >=2.7.1 ; extra == 'tf'
@@ -128,12 +101,12 @@ Requires-Dist: numpy >=1.21 ; extra == 'tf'
128
101
  Requires-Dist: packaging >=20.0 ; extra == 'tf'
129
102
  Requires-Dist: Pillow >=10.0.0 ; extra == 'tf'
130
103
  Requires-Dist: pypdf >=3.16.0 ; extra == 'tf'
131
- Requires-Dist: pyyaml ==6.0 ; extra == 'tf'
104
+ Requires-Dist: pyyaml >=6.0.1 ; extra == 'tf'
132
105
  Requires-Dist: pyzmq >=16 ; extra == 'tf'
133
106
  Requires-Dist: termcolor >=1.1 ; extra == 'tf'
134
107
  Requires-Dist: tabulate >=0.7.7 ; extra == 'tf'
135
108
  Requires-Dist: tqdm ==4.64.0 ; extra == 'tf'
136
- Requires-Dist: tensorpack ; extra == 'tf'
109
+ Requires-Dist: tensorpack ==0.11 ; extra == 'tf'
137
110
  Requires-Dist: protobuf ==3.20.1 ; extra == 'tf'
138
111
  Requires-Dist: tensorflow-addons >=0.17.1 ; extra == 'tf'
139
112
  Requires-Dist: tf2onnx >=1.9.2 ; extra == 'tf'
@@ -141,8 +114,8 @@ Requires-Dist: python-doctr ==0.7.0 ; extra == 'tf'
141
114
  Requires-Dist: pycocotools >=2.0.2 ; extra == 'tf'
142
115
  Requires-Dist: boto3 ; extra == 'tf'
143
116
  Requires-Dist: pdfplumber >=0.7.1 ; extra == 'tf'
144
- Requires-Dist: fasttext ; extra == 'tf'
145
- Requires-Dist: jdeskew ; extra == 'tf'
117
+ Requires-Dist: fasttext ==0.9.2 ; extra == 'tf'
118
+ Requires-Dist: jdeskew >=0.2.2 ; extra == 'tf'
146
119
  Requires-Dist: apted ==1.0.3 ; extra == 'tf'
147
120
  Requires-Dist: distance ==0.1.3 ; extra == 'tf'
148
121
  Requires-Dist: lxml >=4.9.1 ; extra == 'tf'
@@ -191,7 +164,9 @@ pipelines. Its core function does not depend on any specific deep learning libra
191
164
  Check this [notebook](https://github.com/deepdoctection/notebooks/blob/main/Analyzer_Configuration.ipynb) or the
192
165
  [docs](https://deepdoctection.readthedocs.io/en/latest/tutorials/analyzer_configuration_notebook/) for more infos.
193
166
  - Document layout analysis and table recognition now runs with Torchscript (CPU) as well and Detectron2 is
194
- not required anymore for basic inference.
167
+ not required anymore for basic inference.
168
+ - [**new**] More angle predictors for determining the rotation of a document based on Tesseract and DocTr
169
+ (not contained in the built-in Analyzer).
195
170
 
196
171
  **deep**doctection provides on top of that methods for pre-processing inputs to models like cropping or resizing and to
197
172
  post-process results, like validating duplicate outputs, relating words to detected layout segments or ordering words
@@ -1,29 +1,29 @@
1
- deepdoctection/__init__.py,sha256=o2osznwJl8PmArjoZeD2EeyyjL9L9kS_U-vfCiV58co,12894
1
+ deepdoctection/__init__.py,sha256=a3xZV9sZJyqBy4_R2rHGSGI9jbnSAtvNtI_Eztu7S6U,12960
2
2
  deepdoctection/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  deepdoctection/analyzer/__init__.py,sha256=g86MeZz_BIQ2-b8kDIss7osPUNrFhT-Z3Eu7Wm02pFI,706
4
- deepdoctection/analyzer/dd.py,sha256=Hq43Msx4Nd5rUaxBjAEZlO4I3S5wfwXreeVswRri700,19017
4
+ deepdoctection/analyzer/dd.py,sha256=WII6u00TR95mM8mq4ZQ6W4kpIUglLR8M9_Ix4BgslII,19057
5
5
  deepdoctection/configs/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
6
6
  deepdoctection/configs/conf_dd_one.yaml,sha256=RqygpBPwWt_Xdrflg2M7liKNfnaRqONFzMQn1woBLMU,2227
7
7
  deepdoctection/configs/conf_tesseract.yaml,sha256=oF6szDyoi15FHvq7yFUNIEjfA_jNLhGxoowiRsz_zY4,35
8
8
  deepdoctection/dataflow/__init__.py,sha256=CWRHMpmJaPk4xY_oIIFubCt-z11SguWrMWxHZ7rdrvY,845
9
- deepdoctection/dataflow/base.py,sha256=0TxY5R7zNByUJNgut6FqXwX7_6fztj11r5U1-4FcWW8,6806
9
+ deepdoctection/dataflow/base.py,sha256=z4DCComSj5wStEPjtk0093cNNGfUMiDqx8dqz36nS_o,6221
10
10
  deepdoctection/dataflow/common.py,sha256=zujtMO55s4BrG_i1m2Xzwm5h-0bAEgYDl-TNjtgjf10,10018
11
- deepdoctection/dataflow/custom.py,sha256=CylSVM0usOBfcmPd92uRw7jJUnaOs8NLezh7Rs3kzGM,6769
12
- deepdoctection/dataflow/custom_serialize.py,sha256=l_5gOfORyo6JDblJH4ETBwp3tDs6FfMui1lmrtDWUG0,20542
13
- deepdoctection/dataflow/parallel_map.py,sha256=rCNnuNftBCV6Ub9Df8WIL3biEzCAMtHoNKr0NZn02RQ,15756
14
- deepdoctection/dataflow/serialize.py,sha256=VJfgUZS2aLL6__NLcABdYU0fsV_RNInKplaJZG7zKrA,4526
11
+ deepdoctection/dataflow/custom.py,sha256=eOE-M0SzBYSKGG4OCslpVfvujtfMEYGM9RIT3kBgeNo,6809
12
+ deepdoctection/dataflow/custom_serialize.py,sha256=83VCKHRcpXsD3xd8daZ5zFdtQodSPT4XhcO3fMRpszc,20851
13
+ deepdoctection/dataflow/parallel_map.py,sha256=EQHRKvmMsTJAElJdFwqIMdcDQDKtMXTYEYjTlT8u3v0,15843
14
+ deepdoctection/dataflow/serialize.py,sha256=lBx2BAtI9pTlU-b66ick2Vd-RpfsfOT4Lwfg5D7TFZ0,4568
15
15
  deepdoctection/dataflow/stats.py,sha256=8g1uZXslh-GuH6rJLL6qScYUaZ0TLj8QI5ov2Q8kTE4,9626
16
16
  deepdoctection/datapoint/__init__.py,sha256=3K406GbOPhoEp8koVaSbMocmSsmWifnSZ1SPb7C1lOY,1643
17
- deepdoctection/datapoint/annotation.py,sha256=LGcqNkCMOpW8LaJNLhNjcGTWl7iAbQhu7l6eJYcU8-A,20021
18
- deepdoctection/datapoint/box.py,sha256=Izh_r_c1LFOrALaXtY5stqfeSIgcLofJAwiwJ8v01Sg,23538
19
- deepdoctection/datapoint/convert.py,sha256=m3ofP4H6dAxN8V_sPD8SZNHLUvEX_UkZYoacqxdVXGQ,6651
20
- deepdoctection/datapoint/image.py,sha256=aLwku57ID6GFidsFgScsAtY2jHM7g9DoKuQac4sN_L4,27148
21
- deepdoctection/datapoint/view.py,sha256=C3BqHLA306g7zogxkikNuYdpQdAOU1hzikK60gRVyUM,37349
17
+ deepdoctection/datapoint/annotation.py,sha256=9tKUrOiYu_rdhEw-JhZcoGAS01SWhyXSkTQ9hQegQD8,21017
18
+ deepdoctection/datapoint/box.py,sha256=FFPPDriHqfWkf5NxLZ6fejQJPIov3MZo1mDYOsh6oi8,23489
19
+ deepdoctection/datapoint/convert.py,sha256=WRCpowR_TDYwr8b6zq4dbQGSMeg-7KJetehKY_mKAdM,6716
20
+ deepdoctection/datapoint/image.py,sha256=4Wufvkmk3voy9oLPvcwIvbU7p9C86kanliulSj65GiA,28754
21
+ deepdoctection/datapoint/view.py,sha256=vz7lnh3YBLwr3G5z52esPHGc-tF-RBNT1xTfs5vQ0HI,39112
22
22
  deepdoctection/datasets/__init__.py,sha256=rmqh0ASQhEajiOkFVGFxLGPjOWSPFpVTja1brwzVqHQ,1154
23
- deepdoctection/datasets/adapter.py,sha256=bjHhJnrsXwKKdbnq9xSgft42ba6EEnYB3qvVIPo1QR8,7404
24
- deepdoctection/datasets/base.py,sha256=N__QH1z41Fx4vlQ88sQ_MfDFd2wyM-uMxSZ8I2dJknU,18947
25
- deepdoctection/datasets/dataflow_builder.py,sha256=OxbnivLvWiO_5a9Vkhae2kLURWxkePfDPKmWmCtqOrY,4099
26
- deepdoctection/datasets/info.py,sha256=z3WW4cJ1oqg8hdVgGdocsyEuis7qAoGEOKN0WOcJ_A4,20603
23
+ deepdoctection/datasets/adapter.py,sha256=B8Q9lEAyqknLo-fkF--_GHTnupF7sFBKP56qa1w6u6g,7406
24
+ deepdoctection/datasets/base.py,sha256=NfYnnt-cwohgrWhiasWNgtaz2l-Vrxdj9W5Bm05MKVk,22274
25
+ deepdoctection/datasets/dataflow_builder.py,sha256=sppZgDyWMcSswLGZkST9t90hUAfa4yI8xtGTQE59yWE,4101
26
+ deepdoctection/datasets/info.py,sha256=7cwE8OhXLzHo5DaO4Vi8JmqC0EDXHy3Rpj2sAcgsKZo,20601
27
27
  deepdoctection/datasets/registry.py,sha256=ZjzVzjsCgNXJuZZZtR98_yKocADmh4EBGV5JqJbGjWk,2543
28
28
  deepdoctection/datasets/save.py,sha256=UxMKithQE4y-W4lsthCcbuIy-7dCYVmdHyriT4AzWyg,3364
29
29
  deepdoctection/datasets/instances/__init__.py,sha256=XEc_4vT5lDn6bbZID9ujDEumWu8Ec2W-QS4pI_bfWWE,1388
@@ -31,7 +31,7 @@ deepdoctection/datasets/instances/doclaynet.py,sha256=M0kSqB06XYmIOfqDC_Q4ooidyb
31
31
  deepdoctection/datasets/instances/fintabnet.py,sha256=8fH01pMMp45IijmhlPBR11DzbqC4Mh6vYGbvUzhkZtM,12013
32
32
  deepdoctection/datasets/instances/funsd.py,sha256=SpcP9YMiWUfjiRIjCDB2dAuxji_AmOUX4D96eqXg9G0,6938
33
33
  deepdoctection/datasets/instances/iiitar13k.py,sha256=isbF-4oGusqpNfSKmtswZyhL-JcdA_JVld_zI0ppCMk,6622
34
- deepdoctection/datasets/instances/layouttest.py,sha256=SK9cUEq9U-J3JD89pa23rk4uAeaFPh98fHh5cHdkJiM,4675
34
+ deepdoctection/datasets/instances/layouttest.py,sha256=UuAyMOdMeR3qPOUnvWxDxUErm2AeMdjsYKFb46Tgq4Y,4367
35
35
  deepdoctection/datasets/instances/publaynet.py,sha256=6TMizNfn2TwxjpScIbt_zWwKZ3OKD1RqcAiS1LEd-5s,5193
36
36
  deepdoctection/datasets/instances/pubtables1m.py,sha256=wgmtxcxeDDZ_FTDpAZqOv6yj3_SIpY3A4yLpdqHqsk0,12225
37
37
  deepdoctection/datasets/instances/pubtabnet.py,sha256=IKwlVIdxHtuoeFReXIoLScRYbzVT7x793AEEnGKHyBQ,8554
@@ -40,36 +40,36 @@ deepdoctection/datasets/instances/xfund.py,sha256=XwrRca8MoP73rWpjtBiaUljEiSLJvc
40
40
  deepdoctection/datasets/instances/xsl/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
41
41
  deepdoctection/datasets/instances/xsl/pascal_voc.xsl,sha256=DlzFV2P8NtQKXVe96i-mIcPWmL6tsW7NQjgCuz2pCL4,1952
42
42
  deepdoctection/eval/__init__.py,sha256=xi6i3cSWiswFBnoOjoQj3Kk4VXfzOKPd8qSJU1vo_nU,1006
43
- deepdoctection/eval/accmetric.py,sha256=J2GDwf4eLBHfzMKlmzm8pe6BkFoB1Huh3dMSJK9uH3c,19638
44
- deepdoctection/eval/base.py,sha256=XmEIBKEXvfO42Hu7idDu8g3EQ-__G7ycMuDArntUwDw,4803
43
+ deepdoctection/eval/accmetric.py,sha256=6dcKSgghtGK1Wkmuxl7MwxCHG_-heeMlRad1Fow4_1A,19639
44
+ deepdoctection/eval/base.py,sha256=Hf0K8L_TdQY1eto_0xUXHC4BI5IPTWm3ui5dGfTlryY,4855
45
45
  deepdoctection/eval/cocometric.py,sha256=iDZ8RmvrS3TmaRBDrYb4plbmF108ROpdsZuvj0y02vA,8755
46
- deepdoctection/eval/eval.py,sha256=STfAzn8pi2kvzuRIVs73oplAlsxg4eqbO2uTkFi6vrY,19182
46
+ deepdoctection/eval/eval.py,sha256=UHmWbNUKxQHN0lxnpOCrvFe4X7tVYctU31R4VBvc1m4,19186
47
47
  deepdoctection/eval/registry.py,sha256=v4mp-s67vBVRu1nQzuGlYPViQnMSeIXEcF_WmvfUCoU,1051
48
48
  deepdoctection/eval/tedsmetric.py,sha256=SuOkmXidkq6HGIQyQPp_y2s1Qdh4vQpTn0z_XpZfFhk,9212
49
- deepdoctection/eval/tp_eval_callback.py,sha256=Bp9raoLoyvx1nJDcUzDwCRuS3dVxG2vbY2ShPcXLZrg,5756
49
+ deepdoctection/eval/tp_eval_callback.py,sha256=s4P3hPcFDIBqNNgo1Cu_XPsI5ypiq20nuOrU7u3awZU,5795
50
50
  deepdoctection/extern/__init__.py,sha256=6htL-4-kZ3o_59IVXHKq-AzS8HuGuAmLWu7x1qpvbnA,1194
51
- deepdoctection/extern/base.py,sha256=YYFRthwzjoDbMTDBEDuh237dzz_rjBF7bOnSinJYwu0,11989
52
- deepdoctection/extern/d2detect.py,sha256=jD6SuylgylNRqCW6vsI53hZ6q13AF2XCANBQeaIiHmg,18703
53
- deepdoctection/extern/deskew.py,sha256=STEJZczPUlMQSvFpajuyVIdyA3h9ZqlqLEe4yvlrAXI,1866
54
- deepdoctection/extern/doctrocr.py,sha256=fPjwNZMIRRGRtqyycPYKtcmnDmVIpgQlzosEipATG9c,15015
55
- deepdoctection/extern/fastlang.py,sha256=F5sI4t0rZxW5ypj3UKuLow5-v4dK_sNd7xaGpzuZXZc,2999
56
- deepdoctection/extern/hfdetr.py,sha256=GWol2NNgATU1z-OwpfpzPQmASh9dmFh5mDfvYshWOmE,9319
57
- deepdoctection/extern/hflayoutlm.py,sha256=FlBz9irp2gTsSBlMYU0m7_mowKToya3x-TPyl-gc93Q,39398
51
+ deepdoctection/extern/base.py,sha256=0F6L2de8cH9nmKLwZAXOGw1ZtrE29MU4XS1tdMvQys4,12786
52
+ deepdoctection/extern/d2detect.py,sha256=6_j4aHdYVkSMrbeveZkxbg-sb0_XeQWE4A4g-0supL4,23071
53
+ deepdoctection/extern/deskew.py,sha256=ZnFiMqra3jG-MtKIWnpTkPtyCCH3R3WhFfNDkO6ULd0,2932
54
+ deepdoctection/extern/doctrocr.py,sha256=2q8v3-TmrbzpxCW3-8CMHS0rJkP0clqxLS_p_l6N7-M,24606
55
+ deepdoctection/extern/fastlang.py,sha256=dmPwnhHyda9-u8aYXEUoPELd2-4PKsNdUb0ZczdX1zk,4350
56
+ deepdoctection/extern/hfdetr.py,sha256=REjg1X4xrMmBb4fXUbFGV1tFvWjMXX4gzsh_OcpTyAw,11582
57
+ deepdoctection/extern/hflayoutlm.py,sha256=zOYe8EaMiiRTd2ri3YbEvhvWl80eW_f9PR1wjmsLEXE,42706
58
58
  deepdoctection/extern/model.py,sha256=bhAPv2w8U8EbPMvvsi3X1-4d0eS4ikPiu_B4s9C5Ado,51436
59
- deepdoctection/extern/pdftext.py,sha256=KLj0EKp9ITBHpMstpVB62pcftIuChnKmWAoaxYasdTs,3692
60
- deepdoctection/extern/tessocr.py,sha256=U4OPrY5LV5Hbnpz7Sgj8-_xaA_FmWcGwOabG01Kbkig,12292
61
- deepdoctection/extern/texocr.py,sha256=Oembj1al420vcQyF38djtLHueKlAGuBZQj-_OKclrkY,5700
62
- deepdoctection/extern/tpdetect.py,sha256=E2-23XFmomxGt3dh3k84kELVgQwtv6NQQoWoKQuCn5A,7525
59
+ deepdoctection/extern/pdftext.py,sha256=P1HR6PeHgoNRJPMzWWOBDoi1uV7SHYcM4U8I01yQETg,3736
60
+ deepdoctection/extern/tessocr.py,sha256=WiOA2Cn27ZZDRJGIzcm_Ubu-6Fg_F3wN3OiMsKomKSQ,17143
61
+ deepdoctection/extern/texocr.py,sha256=dzz2lp6XScHve_opAPxiHZFThZbm2i3Alkr35rWXtpY,5745
62
+ deepdoctection/extern/tpdetect.py,sha256=IAVyX-Fg9EhFs47KAO3KdmX6svRSsJkoFWzswnbt-ww,8780
63
63
  deepdoctection/extern/pt/__init__.py,sha256=h2kxWPEqmTJAQCvYQfDbUZdFWZhQm2Gd5Lhz1NYEpkc,771
64
64
  deepdoctection/extern/pt/nms.py,sha256=B1h8B-OGOxHiht0Dmh_i52xNVG0QDoptSPKAs8-otiU,1458
65
- deepdoctection/extern/pt/ptutils.py,sha256=ktJzEdFOZSol_SoRWe14BX59R6TBmSgkQruWPoAWkuU,1372
65
+ deepdoctection/extern/pt/ptutils.py,sha256=McuBUAyDeBjtTepdzWoucgtrmcX4K3lhSCwYHWYxwkQ,1407
66
66
  deepdoctection/extern/tp/__init__.py,sha256=8QMkcA7tChCr1QXiA0551lZS2jTsECBrrL2YUanpFAk,706
67
67
  deepdoctection/extern/tp/tfutils.py,sha256=GvDOG1bj60h8qusm3NCnEm16YlUjPtv_iKULYaWYV7Y,1479
68
- deepdoctection/extern/tp/tpcompat.py,sha256=4ZHUqn5ezHSs3NSwJnlWThjPGevpu_1g0lTRVMMKEf4,5054
68
+ deepdoctection/extern/tp/tpcompat.py,sha256=nlpmeNcXjdU_BL3zqytmJajoILJ5UU3hqtR2vK8Gpuk,5068
69
69
  deepdoctection/extern/tp/tpfrcnn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
70
  deepdoctection/extern/tp/tpfrcnn/common.py,sha256=vrAIk6kiryTP8bQZrXCmD-5gKhxNdl34SO-mzN9OdJ0,3711
71
71
  deepdoctection/extern/tp/tpfrcnn/predict.py,sha256=OW-JMgqSxdZFsQth1D1NhzUC-0JYd5wirHvcM6xNe24,4216
72
- deepdoctection/extern/tp/tpfrcnn/preproc.py,sha256=ZPBIBdUiw9DuaUZ5JbDA_pFHfNyet2y2P39R0YcjKjk,11947
72
+ deepdoctection/extern/tp/tpfrcnn/preproc.py,sha256=DvZ8fv1VkeeXBf8pZBS8Gc-9WNfNh7tgX6tIjdF4_NU,11898
73
73
  deepdoctection/extern/tp/tpfrcnn/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
74
  deepdoctection/extern/tp/tpfrcnn/config/config.py,sha256=OAioHcO2amPJIvy73dSGqj0daNzp1wAFQD0nGw9oOOM,11284
75
75
  deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -87,57 +87,58 @@ deepdoctection/extern/tp/tpfrcnn/utils/np_box_ops.py,sha256=O-q1GQiOEd1lN1MQDsJv
87
87
  deepdoctection/mapper/__init__.py,sha256=6A-1kW2O5-zMK5qaWTsxcVIPKRJERUoSn3KUtRXKkgI,1294
88
88
  deepdoctection/mapper/cats.py,sha256=EIvemufdhkjXpslQP0zNIIlw2fEWGPzZZRRppLFQXSU,15922
89
89
  deepdoctection/mapper/cocostruct.py,sha256=7s6ndLxXiYN2mq43YhSQQwGT0MesRXqB1xd1EY5G08A,5840
90
- deepdoctection/mapper/d2struct.py,sha256=0d7jbom4RgYFscJZxKaj1tooElN2d-l4PPXM9n-x9VY,8422
91
- deepdoctection/mapper/hfstruct.py,sha256=8-YzdhhaQGo3oX_ib944W_ME7JiC6PAj5Fgxp934h0E,5428
92
- deepdoctection/mapper/laylmstruct.py,sha256=ZOQwMcDNaL5hozQLD3zaqHa4lMuXPIlDfaWspBD4CYw,35348
93
- deepdoctection/mapper/maputils.py,sha256=BbXQkZ74geR2ujTeDl9-6hYIRdKMRWb-EPuUlDScLMc,7896
90
+ deepdoctection/mapper/d2struct.py,sha256=VocWJskQY4_FLfjBDUoz7QVjdmIH1U17Kk9nV8FS8qI,8473
91
+ deepdoctection/mapper/hfstruct.py,sha256=lC1bykHO6Wt01F_oPVL7fqybGkH4YC6wtPoO4-ki5Go,5479
92
+ deepdoctection/mapper/laylmstruct.py,sha256=8nSTP2Fu0QXjPwryCpFMsAIkkua465ohopk30hjli7w,35347
93
+ deepdoctection/mapper/maputils.py,sha256=5wD4ECsMMaB4O2f8IfPyG2sb8Rp0QdMrcMD2AXSz43o,8149
94
94
  deepdoctection/mapper/match.py,sha256=cciFy1lim6M-Uvbb6Zq77kcvDk-GmJeD3ui-H_K7Q6I,7780
95
95
  deepdoctection/mapper/misc.py,sha256=XtC0Mv0TfkRowVVpLgVU07SvDCiKr1q0k2Rd8fy41LU,6520
96
96
  deepdoctection/mapper/pascalstruct.py,sha256=3SpyZhUL0ca1j4sSskR-iQhswDUTeXElyLluYsXp2jo,3844
97
- deepdoctection/mapper/prodigystruct.py,sha256=_T32ELYihb8sCdUtYUWYrnK9ebdRotjhv0Uh8sdnUpU,6822
98
- deepdoctection/mapper/pubstruct.py,sha256=wKebynwZV-71d2QXb60cnhlKz_9lIC-FyEkXw4QNXws,23567
99
- deepdoctection/mapper/tpstruct.py,sha256=_lQPHZsYji8E-3-KhtrHU5dyQ5VkyGk9908LUlGOtjc,4504
97
+ deepdoctection/mapper/prodigystruct.py,sha256=_oAVVv4eA7_fyCyhdtJSd0Wg6YYhonY8H8MGKUY-Fhw,6804
98
+ deepdoctection/mapper/pubstruct.py,sha256=UjVSgtw8n6Ib4_q7yc2CDLYRch6AXasjvNdGtmfpwis,23588
99
+ deepdoctection/mapper/tpstruct.py,sha256=dOfjmbPsRpFAPas5yQScK-WkpIR1HpbuKc1kkNIczbs,4506
100
100
  deepdoctection/mapper/xfundstruct.py,sha256=mFzRojnKzLiQ82kxHgYz8dvsQCXQaiFlcbP5R5hdBAw,8807
101
101
  deepdoctection/pipe/__init__.py,sha256=Keyj5wNWT16hgtvZn4ZqhK7HMU6i9bWQ5dU1e7-j7-A,1121
102
- deepdoctection/pipe/anngen.py,sha256=s-G5D7Tf1uyqHRIj7SGqXfKzoAW2qOX604H3AGFcp5g,14111
103
- deepdoctection/pipe/base.py,sha256=X2X__runxzd5yPSBplTAae8FHEvhI6siPsWB1En47zQ,13182
104
- deepdoctection/pipe/cell.py,sha256=WmFf3oExmticjy_rLtCK3_Wvw7ix5G46iHwcvSSGsIU,11062
105
- deepdoctection/pipe/common.py,sha256=KzqkFS1pg8MC7joC-a-fg5OkX4O6730yBpmoB4vMJ00,14378
102
+ deepdoctection/pipe/anngen.py,sha256=h5QF_anEuz1W5nwLkGpPoxao92rM7Y8rXEMG05uDq3U,15198
103
+ deepdoctection/pipe/base.py,sha256=iLRfDv92o5J0NfhOdjC4CbNy-PVLhqggsMPGQ9qmNBU,14618
104
+ deepdoctection/pipe/cell.py,sha256=4CIDL-vD60lbQOTgAvkeXW5ezo_IZyztvqBf2_ChYZ4,12149
105
+ deepdoctection/pipe/common.py,sha256=5lutsuLs06TdjFRfdA03FQVHjzCPDkagpJqnBGRamhg,14782
106
106
  deepdoctection/pipe/concurrency.py,sha256=pz-2NoI9HeLFgixN83ALTDT37uwunwN8ww0g1odTzfE,9531
107
- deepdoctection/pipe/doctectionpipe.py,sha256=YvWD0Vh2my-XkKzQhCq2yNYRK2KxdydSY88_lzcrmA0,9007
108
- deepdoctection/pipe/language.py,sha256=yNMIZCPBE_1ier6qjeZoFkp9Aub34gK3rTs7XePkxbg,5579
109
- deepdoctection/pipe/layout.py,sha256=2USk4rSMQIOVQcPA2Qdbm43mD_vTup5bOjSjzH56ykg,5262
110
- deepdoctection/pipe/lm.py,sha256=eJ-RHOenFFNmifEYakncUvwi1CRxhyzU7ckM0U3rUn0,18031
107
+ deepdoctection/pipe/doctectionpipe.py,sha256=ru2jHnkfvPFkN-jZ-WLUPxmIHOyqpQyBu5NKpz9S98Y,8986
108
+ deepdoctection/pipe/language.py,sha256=5uk-oBvDhfBD4YmwVrvhHXD7ooSl23zxEVbV6lfNKrQ,5612
109
+ deepdoctection/pipe/layout.py,sha256=ptK5CoRW5YbSy5TWXeU_ClR1_t2wWGCH1EuSUB-N-AY,5298
110
+ deepdoctection/pipe/lm.py,sha256=8gmFEdUFGuBkWZ3Gz-53s30m2UIJHz_Cui9_eXY1BKU,18029
111
111
  deepdoctection/pipe/order.py,sha256=tNC48ucCsLCM9Qxs0gaKolk2bSIO62LD9C6TtJrlIh8,35266
112
- deepdoctection/pipe/refine.py,sha256=qQtL0DFuO8ztYhfTWVX5w_W6MvVr3bpQ2M26_iNksK8,22439
112
+ deepdoctection/pipe/refine.py,sha256=TcPNa5Vxkn8CxyGruRqf2-zSwqu_xX1UjQ0v560j4gI,22921
113
113
  deepdoctection/pipe/registry.py,sha256=aFx-Tn0xhVA5l5H18duNW5QoTNKQltybsEUEzsMgUfg,902
114
- deepdoctection/pipe/segment.py,sha256=C1BBjBzKFik1wWdt8DgtiGHH53YNeFn2kapg5dKEfZ0,50474
115
- deepdoctection/pipe/text.py,sha256=egFo-T8QgukiNSkLxbasIJC9aejNYdOe7Ry_r0vgjoc,10985
116
- deepdoctection/pipe/transform.py,sha256=elR0vlsRCoZHXHzJjNAcie1Yr7GkVJzsiTrq_e2MgS4,3193
114
+ deepdoctection/pipe/segment.py,sha256=bKGon-P3GkibrUHsjmy8qivv1QmIUkb_1mhluMrhnss,50631
115
+ deepdoctection/pipe/text.py,sha256=-eDjAPC5mE-vuZyNqfzZAbeMoXMRZmlVx4R3Q6VtTtw,11168
116
+ deepdoctection/pipe/transform.py,sha256=9CGTaM7rjwMtbsK_lDqlLV1Qqnq6FA0N-K_Spp_9MqE,3736
117
117
  deepdoctection/train/__init__.py,sha256=BHnGumRvKGJQX7TYfqSEPdiiLrWK64Vpw5o9dJWDS6c,1196
118
- deepdoctection/train/d2_frcnn_train.py,sha256=6zF3lKl7OVzBOnq_jxEzFjajBkp-jlQPC4_Q-8thD90,15740
119
- deepdoctection/train/hf_detr_train.py,sha256=DVrdIKSkmC3_8wZ2diFpjUN_-WDpNyqfh_rsACK0Awo,10610
120
- deepdoctection/train/hf_layoutlm_train.py,sha256=BzCCgkF89DbGLCiuedm69NRN0KHiYXbgPjw5eVd3Oow,21335
118
+ deepdoctection/train/d2_frcnn_train.py,sha256=Tqx0LNh-sNWDY5WDUBaDO287ehM-Zl6XinjB5fz-Gfo,15856
119
+ deepdoctection/train/hf_detr_train.py,sha256=OLJbXqIx49y7Pj5cYLIw0dG36aie7Plu7PlTMCDWMDs,10717
120
+ deepdoctection/train/hf_layoutlm_train.py,sha256=Lj47bn-20jAQ9sbg2EudI_y4sGOlUS_14MqMEI08tAw,21695
121
121
  deepdoctection/train/tp_frcnn_train.py,sha256=D-LZrg-WcKhSSGQ3ZllzPrsJ6OZ1aRKFODmVKc3YckU,12952
122
- deepdoctection/utils/__init__.py,sha256=LZvc1VcTzB_orZCkBwHCHPvbGuWNyIywGYrZloU-WxE,2299
123
- deepdoctection/utils/concurrency.py,sha256=jwMCqReqkIpZ6tMGkTPEA5dIbMQL8jsxQ6WkNsTQJbE,4583
124
- deepdoctection/utils/context.py,sha256=KQ4Ci8VVsfCj65_okFWIhBcOpZpzlDzdX3I7EZrRMUY,4060
122
+ deepdoctection/utils/__init__.py,sha256=brBceRWeov9WXMiJTjyJOF2rHMP8trGGRRjhMdZ61nI,2371
123
+ deepdoctection/utils/concurrency.py,sha256=s-9kkVVmZs9A-D9cvCO9rzFvBoJHuMLxL2dy8EUyGpE,4608
124
+ deepdoctection/utils/context.py,sha256=er2G86Lv96YlrwmY6EX2FS1-tZVu04jP4UEfTnL8DgE,4076
125
125
  deepdoctection/utils/detection_types.py,sha256=n_pnSzJ44MdRhLrtNfh5E98tbKSdTuz-L-aed4w42Pc,1931
126
126
  deepdoctection/utils/develop.py,sha256=MaG3h5a6k26TbAoqLB1yPcME_uUziN_p0PxhkZrmhcg,3470
127
- deepdoctection/utils/env_info.py,sha256=E43C72DSeOxJancHQnhbhCRvKQsLkmK5utopLngDCOs,17620
128
- deepdoctection/utils/file_utils.py,sha256=LXFHpT35sOHdW2AMjxoMO4ydkPKfvTZ9kzEEotPEhwg,19248
129
- deepdoctection/utils/fs.py,sha256=H4iqUGASp6UA4I6lQ4Muvc2rxP627maZsV5pncCNmmI,9094
127
+ deepdoctection/utils/env_info.py,sha256=h0_gwSgvE8_kGzrggeZ2nKC6qwCMBZEfuSb3hZtr2oM,18629
128
+ deepdoctection/utils/error.py,sha256=_3q9VepKfEhsM3H033_Fu0hwBzMSjsWALsjyJbGAZr8,2367
129
+ deepdoctection/utils/file_utils.py,sha256=TG-hMFoaJYxTS-XOJ22fiLoThtRrm7SVBGJXx0lq11Q,19089
130
+ deepdoctection/utils/fs.py,sha256=b2E3StYRVklbpS2ABh-JL_8rm5BFjb61faD44nBfzQk,9142
130
131
  deepdoctection/utils/identifier.py,sha256=ICi7bT69y2TP8PP3Z14eyTca9oZT6Mzv-Y0eUrvNM9Q,2159
131
132
  deepdoctection/utils/logger.py,sha256=z5GPpNJ0X1Rb_QYTBoHGKFDOXoT63MaI03gDARm1wSI,9931
132
133
  deepdoctection/utils/metacfg.py,sha256=wk_jM6tAJhWapCjNR8yZo_fs91YTM-tsX7eM30w0gzQ,5203
133
- deepdoctection/utils/pdf_utils.py,sha256=hAClsxOTpGTWBqHtoOwEsiKMYzxgHv-PJU1AEhqRang,7693
134
- deepdoctection/utils/settings.py,sha256=-Zx_fm4kWeBro22aHsrzvd48ieD5JMca90vZmSXXMj0,12188
134
+ deepdoctection/utils/pdf_utils.py,sha256=Au83NA2cpjp_wjjaEhEAKqVQP6bVWE9l14lw9EqagXs,7711
135
+ deepdoctection/utils/settings.py,sha256=tmVvzHBJN9K7kvTXFZD7W-5kaqg5mhMEdqOSB0tNMSw,12290
135
136
  deepdoctection/utils/tqdm.py,sha256=1MDzkqgCAO3o8OkQTL-46866MpLqbMab9w6go3IpbKI,1830
136
- deepdoctection/utils/transform.py,sha256=L43iTqe3j1HWwFOTlzjiu45WXMfycW-hvu7vyuKuE-I,8379
137
- deepdoctection/utils/utils.py,sha256=OTtOQcXFg0U1t5-bsNui0upUbgYiK-EIBmykAL8kroM,5323
138
- deepdoctection/utils/viz.py,sha256=vW9acIy1AF0iMmm8cO8KpsX1IbPccZLWcAUR9u7VVCM,23693
139
- deepdoctection-0.30.dist-info/LICENSE,sha256=GQ0rUvuGdrMNEI3iHK5UQx6dIMU1QwAuyXsxUHn5MEQ,11351
140
- deepdoctection-0.30.dist-info/METADATA,sha256=7u_9cPdwql7dmfg-fbipBttE8eCe-uKgrNB3KQeEjJQ,18983
141
- deepdoctection-0.30.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
142
- deepdoctection-0.30.dist-info/top_level.txt,sha256=hs2DdoOL9h4mnHhmO82BT4pz4QATIoOZ20PZmlnxFI8,15
143
- deepdoctection-0.30.dist-info/RECORD,,
137
+ deepdoctection/utils/transform.py,sha256=NILVQM8CGwpJO2oHFyi5QqZNeBRxh8FDcIEPtJRLk1A,8381
138
+ deepdoctection/utils/utils.py,sha256=ly6Sqhufe9fdMiJV7JqQCS8C5FzFEUH5R3pvuuCvGYw,5185
139
+ deepdoctection/utils/viz.py,sha256=gb-L3olyVJzGP5CM6yByZ3KElduyyiWL1RF-iPXDIz0,25468
140
+ deepdoctection-0.31.dist-info/LICENSE,sha256=GQ0rUvuGdrMNEI3iHK5UQx6dIMU1QwAuyXsxUHn5MEQ,11351
141
+ deepdoctection-0.31.dist-info/METADATA,sha256=64Okbccoj2Xi_MqV9YgoO74fL70X-sT4O2BKZI28akE,18098
142
+ deepdoctection-0.31.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
143
+ deepdoctection-0.31.dist-info/top_level.txt,sha256=hs2DdoOL9h4mnHhmO82BT4pz4QATIoOZ20PZmlnxFI8,15
144
+ deepdoctection-0.31.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5