deepdoctection 0.31__py3-none-any.whl → 0.32__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 (91) hide show
  1. deepdoctection/__init__.py +35 -28
  2. deepdoctection/analyzer/dd.py +30 -24
  3. deepdoctection/configs/conf_dd_one.yaml +34 -31
  4. deepdoctection/datapoint/annotation.py +2 -1
  5. deepdoctection/datapoint/box.py +2 -1
  6. deepdoctection/datapoint/image.py +13 -7
  7. deepdoctection/datapoint/view.py +95 -24
  8. deepdoctection/datasets/__init__.py +1 -4
  9. deepdoctection/datasets/adapter.py +5 -2
  10. deepdoctection/datasets/base.py +5 -3
  11. deepdoctection/datasets/info.py +2 -2
  12. deepdoctection/datasets/instances/doclaynet.py +3 -2
  13. deepdoctection/datasets/instances/fintabnet.py +2 -1
  14. deepdoctection/datasets/instances/funsd.py +2 -1
  15. deepdoctection/datasets/instances/iiitar13k.py +5 -2
  16. deepdoctection/datasets/instances/layouttest.py +2 -1
  17. deepdoctection/datasets/instances/publaynet.py +2 -2
  18. deepdoctection/datasets/instances/pubtables1m.py +6 -3
  19. deepdoctection/datasets/instances/pubtabnet.py +2 -1
  20. deepdoctection/datasets/instances/rvlcdip.py +2 -1
  21. deepdoctection/datasets/instances/xfund.py +2 -1
  22. deepdoctection/eval/__init__.py +1 -4
  23. deepdoctection/eval/cocometric.py +2 -1
  24. deepdoctection/eval/eval.py +17 -13
  25. deepdoctection/eval/tedsmetric.py +14 -11
  26. deepdoctection/eval/tp_eval_callback.py +9 -3
  27. deepdoctection/extern/__init__.py +2 -7
  28. deepdoctection/extern/d2detect.py +24 -32
  29. deepdoctection/extern/deskew.py +4 -2
  30. deepdoctection/extern/doctrocr.py +75 -81
  31. deepdoctection/extern/fastlang.py +4 -2
  32. deepdoctection/extern/hfdetr.py +22 -28
  33. deepdoctection/extern/hflayoutlm.py +335 -103
  34. deepdoctection/extern/hflm.py +225 -0
  35. deepdoctection/extern/model.py +56 -47
  36. deepdoctection/extern/pdftext.py +8 -4
  37. deepdoctection/extern/pt/__init__.py +1 -3
  38. deepdoctection/extern/pt/nms.py +6 -2
  39. deepdoctection/extern/pt/ptutils.py +27 -19
  40. deepdoctection/extern/texocr.py +4 -2
  41. deepdoctection/extern/tp/tfutils.py +43 -9
  42. deepdoctection/extern/tp/tpcompat.py +10 -7
  43. deepdoctection/extern/tp/tpfrcnn/__init__.py +20 -0
  44. deepdoctection/extern/tp/tpfrcnn/common.py +7 -3
  45. deepdoctection/extern/tp/tpfrcnn/config/__init__.py +20 -0
  46. deepdoctection/extern/tp/tpfrcnn/config/config.py +9 -6
  47. deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py +20 -0
  48. deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py +17 -7
  49. deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py +12 -6
  50. deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py +9 -4
  51. deepdoctection/extern/tp/tpfrcnn/modeling/model_cascade.py +8 -5
  52. deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py +16 -11
  53. deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py +17 -10
  54. deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py +14 -8
  55. deepdoctection/extern/tp/tpfrcnn/modeling/model_rpn.py +15 -10
  56. deepdoctection/extern/tp/tpfrcnn/predict.py +9 -4
  57. deepdoctection/extern/tp/tpfrcnn/preproc.py +7 -3
  58. deepdoctection/extern/tp/tpfrcnn/utils/__init__.py +20 -0
  59. deepdoctection/extern/tp/tpfrcnn/utils/box_ops.py +10 -2
  60. deepdoctection/extern/tpdetect.py +5 -8
  61. deepdoctection/mapper/__init__.py +3 -8
  62. deepdoctection/mapper/d2struct.py +8 -6
  63. deepdoctection/mapper/hfstruct.py +6 -1
  64. deepdoctection/mapper/laylmstruct.py +163 -20
  65. deepdoctection/mapper/maputils.py +3 -1
  66. deepdoctection/mapper/misc.py +6 -3
  67. deepdoctection/mapper/tpstruct.py +2 -2
  68. deepdoctection/pipe/__init__.py +1 -1
  69. deepdoctection/pipe/common.py +11 -9
  70. deepdoctection/pipe/concurrency.py +2 -1
  71. deepdoctection/pipe/layout.py +3 -1
  72. deepdoctection/pipe/lm.py +32 -64
  73. deepdoctection/pipe/order.py +142 -35
  74. deepdoctection/pipe/refine.py +8 -14
  75. deepdoctection/pipe/{cell.py → sub_layout.py} +1 -1
  76. deepdoctection/train/__init__.py +6 -12
  77. deepdoctection/train/d2_frcnn_train.py +21 -16
  78. deepdoctection/train/hf_detr_train.py +18 -11
  79. deepdoctection/train/hf_layoutlm_train.py +118 -101
  80. deepdoctection/train/tp_frcnn_train.py +21 -19
  81. deepdoctection/utils/env_info.py +41 -117
  82. deepdoctection/utils/logger.py +1 -0
  83. deepdoctection/utils/mocks.py +93 -0
  84. deepdoctection/utils/settings.py +1 -0
  85. deepdoctection/utils/viz.py +4 -3
  86. {deepdoctection-0.31.dist-info → deepdoctection-0.32.dist-info}/METADATA +27 -18
  87. deepdoctection-0.32.dist-info/RECORD +146 -0
  88. deepdoctection-0.31.dist-info/RECORD +0 -144
  89. {deepdoctection-0.31.dist-info → deepdoctection-0.32.dist-info}/LICENSE +0 -0
  90. {deepdoctection-0.31.dist-info → deepdoctection-0.32.dist-info}/WHEEL +0 -0
  91. {deepdoctection-0.31.dist-info → deepdoctection-0.32.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,93 @@
1
+ # -*- coding: utf-8 -*-
2
+ # File: mocks.py
3
+
4
+ # Copyright 2024 Dr. Janis Meyer. All rights reserved.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+
18
+ """
19
+ Some classes with the purpose to mock the original classes from the Tensorpack library, if Tensorpack is not installed
20
+ """
21
+
22
+ from deepdoctection.utils.error import DependencyError
23
+
24
+
25
+ def layer_register(log_shape): # pylint: disable=W0613
26
+ """Mock layer_register function from tensorpack."""
27
+
28
+ def inner(inputs): # pylint: disable=W0613
29
+ pass
30
+
31
+ return inner
32
+
33
+
34
+ def under_name_scope():
35
+ """Mock under_name_scope function from tensorpack."""
36
+
37
+ def inner(inputs): # pylint: disable=W0613
38
+ pass
39
+
40
+ return inner
41
+
42
+
43
+ def memoized(func):
44
+ """Mock memoized function from tensorpack."""
45
+ return func
46
+
47
+
48
+ def memoized_method(func):
49
+ """Mock memoized_method function from tensorpack."""
50
+ return func
51
+
52
+
53
+ def auto_reuse_variable_scope(inputs): # pylint: disable=W0613
54
+ """Mock auto_reuse_variable_scope function from tensorpack."""
55
+
56
+
57
+ class ModelDesc: # pylint: disable=R0903
58
+ """Mock ModelDesc class from tensorpack."""
59
+
60
+ def __init__(self) -> None:
61
+ raise DependencyError("Tensorpack not found.")
62
+
63
+
64
+ class ImageAugmentor: # pylint: disable=R0903
65
+ """Mock ImageAugmentor class from tensorpack."""
66
+
67
+ def __init__(self) -> None:
68
+ raise DependencyError("Tensorpack not found.")
69
+
70
+
71
+ class Callback: # pylint: disable=R0903
72
+ """Mock Callback class from tensor"""
73
+
74
+ def __init__(self) -> None:
75
+ raise DependencyError("Tensorpack not found.")
76
+
77
+
78
+ class Config: # pylint: disable=R0903
79
+ """Mock class for Config"""
80
+
81
+ pass # pylint: disable=W0107
82
+
83
+
84
+ class Tree: # pylint: disable=R0903
85
+ """Mock class for Tree"""
86
+
87
+ pass # pylint: disable=W0107
88
+
89
+
90
+ class IterableDataset: # pylint: disable=R0903
91
+ """Mock class for IterableDataset"""
92
+
93
+ pass # pylint: disable=W0107
@@ -293,6 +293,7 @@ class DatasetType(ObjectTypes):
293
293
  sequence_classification = "sequence_classification"
294
294
  token_classification = "token_classification"
295
295
  publaynet = "publaynet"
296
+ default = "default"
296
297
 
297
298
 
298
299
  _TOKEN_AND_TAG_TO_TOKEN_CLASS_WITH_TAG = {
@@ -34,17 +34,18 @@ from typing import Any, Dict, List, Optional, Sequence, Tuple, no_type_check
34
34
 
35
35
  import numpy as np
36
36
  import numpy.typing as npt
37
+ from lazy_imports import try_import
37
38
  from numpy import float32, uint8
38
39
 
39
40
  from .detection_types import ImageType
40
41
  from .env_info import auto_select_viz_library
41
42
  from .error import DependencyError
42
- from .file_utils import get_opencv_requirement, get_pillow_requirement, opencv_available, pillow_available
43
+ from .file_utils import get_opencv_requirement, get_pillow_requirement
43
44
 
44
- if opencv_available():
45
+ with try_import() as cv2_import_guard:
45
46
  import cv2
46
47
 
47
- if pillow_available():
48
+ with try_import() as pil_import_guard:
48
49
  from PIL import Image, ImageDraw
49
50
 
50
51
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: deepdoctection
3
- Version: 0.31
3
+ Version: 0.32
4
4
  Summary: Repository for Document AI
5
5
  Home-page: https://github.com/deepdoctection/deepdoctection
6
6
  Author: Dr. Janis Meyer
@@ -9,18 +9,18 @@ Classifier: Development Status :: 4 - Beta
9
9
  Classifier: License :: OSI Approved :: Apache Software License
10
10
  Classifier: Natural Language :: English
11
11
  Classifier: Operating System :: POSIX :: Linux
12
- Classifier: Programming Language :: Python :: 3.8
13
12
  Classifier: Programming Language :: Python :: 3.9
14
13
  Classifier: Programming Language :: Python :: 3.10
15
14
  Classifier: Programming Language :: Python :: 3.11
16
15
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
- Requires-Python: >=3.8
16
+ Requires-Python: >=3.9
18
17
  Description-Content-Type: text/markdown
19
18
  License-File: LICENSE
20
19
  Requires-Dist: catalogue ==2.0.10
21
20
  Requires-Dist: huggingface-hub >=0.12.0
22
21
  Requires-Dist: importlib-metadata >=5.0.0
23
22
  Requires-Dist: jsonlines ==3.1.0
23
+ Requires-Dist: lazy-imports ==0.3.1
24
24
  Requires-Dist: mock ==4.0.3
25
25
  Requires-Dist: networkx >=2.7.1
26
26
  Requires-Dist: numpy >=1.21
@@ -49,10 +49,10 @@ Requires-Dist: types-Pillow >=10.2.0.20240406 ; extra == 'dev'
49
49
  Requires-Dist: types-urllib3 >=1.26.25.14 ; extra == 'dev'
50
50
  Provides-Extra: docs
51
51
  Requires-Dist: tensorpack ==0.11 ; extra == 'docs'
52
- Requires-Dist: boto3 ; extra == 'docs'
52
+ Requires-Dist: boto3 ==1.34.102 ; extra == 'docs'
53
53
  Requires-Dist: transformers >=4.36.0 ; extra == 'docs'
54
54
  Requires-Dist: accelerate >=0.29.1 ; extra == 'docs'
55
- Requires-Dist: pdfplumber >=0.7.1 ; extra == 'docs'
55
+ Requires-Dist: pdfplumber >=0.11.0 ; extra == 'docs'
56
56
  Requires-Dist: lxml >=4.9.1 ; extra == 'docs'
57
57
  Requires-Dist: lxml-stubs >=0.5.1 ; extra == 'docs'
58
58
  Requires-Dist: jdeskew >=0.2.2 ; extra == 'docs'
@@ -65,6 +65,7 @@ Requires-Dist: catalogue ==2.0.10 ; extra == 'pt'
65
65
  Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'pt'
66
66
  Requires-Dist: importlib-metadata >=5.0.0 ; extra == 'pt'
67
67
  Requires-Dist: jsonlines ==3.1.0 ; extra == 'pt'
68
+ Requires-Dist: lazy-imports ==0.3.1 ; extra == 'pt'
68
69
  Requires-Dist: mock ==4.0.3 ; extra == 'pt'
69
70
  Requires-Dist: networkx >=2.7.1 ; extra == 'pt'
70
71
  Requires-Dist: numpy >=1.21 ; extra == 'pt'
@@ -79,9 +80,9 @@ Requires-Dist: tqdm ==4.64.0 ; extra == 'pt'
79
80
  Requires-Dist: timm >=0.9.16 ; extra == 'pt'
80
81
  Requires-Dist: transformers >=4.36.0 ; extra == 'pt'
81
82
  Requires-Dist: accelerate >=0.29.1 ; extra == 'pt'
82
- Requires-Dist: python-doctr ==0.7.0 ; extra == 'pt'
83
- Requires-Dist: boto3 ; extra == 'pt'
84
- Requires-Dist: pdfplumber >=0.7.1 ; extra == 'pt'
83
+ Requires-Dist: python-doctr ==0.8.1 ; extra == 'pt'
84
+ Requires-Dist: boto3 ==1.34.102 ; extra == 'pt'
85
+ Requires-Dist: pdfplumber >=0.11.0 ; extra == 'pt'
85
86
  Requires-Dist: fasttext ==0.9.2 ; extra == 'pt'
86
87
  Requires-Dist: jdeskew >=0.2.2 ; extra == 'pt'
87
88
  Requires-Dist: apted ==1.0.3 ; extra == 'pt'
@@ -95,6 +96,7 @@ Requires-Dist: catalogue ==2.0.10 ; extra == 'tf'
95
96
  Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'tf'
96
97
  Requires-Dist: importlib-metadata >=5.0.0 ; extra == 'tf'
97
98
  Requires-Dist: jsonlines ==3.1.0 ; extra == 'tf'
99
+ Requires-Dist: lazy-imports ==0.3.1 ; extra == 'tf'
98
100
  Requires-Dist: mock ==4.0.3 ; extra == 'tf'
99
101
  Requires-Dist: networkx >=2.7.1 ; extra == 'tf'
100
102
  Requires-Dist: numpy >=1.21 ; extra == 'tf'
@@ -110,10 +112,10 @@ Requires-Dist: tensorpack ==0.11 ; extra == 'tf'
110
112
  Requires-Dist: protobuf ==3.20.1 ; extra == 'tf'
111
113
  Requires-Dist: tensorflow-addons >=0.17.1 ; extra == 'tf'
112
114
  Requires-Dist: tf2onnx >=1.9.2 ; extra == 'tf'
113
- Requires-Dist: python-doctr ==0.7.0 ; extra == 'tf'
115
+ Requires-Dist: python-doctr ==0.8.1 ; extra == 'tf'
114
116
  Requires-Dist: pycocotools >=2.0.2 ; extra == 'tf'
115
- Requires-Dist: boto3 ; extra == 'tf'
116
- Requires-Dist: pdfplumber >=0.7.1 ; extra == 'tf'
117
+ Requires-Dist: boto3 ==1.34.102 ; extra == 'tf'
118
+ Requires-Dist: pdfplumber >=0.11.0 ; extra == 'tf'
117
119
  Requires-Dist: fasttext ==0.9.2 ; extra == 'tf'
118
120
  Requires-Dist: jdeskew >=0.2.2 ; extra == 'tf'
119
121
  Requires-Dist: apted ==1.0.3 ; extra == 'tf'
@@ -153,7 +155,8 @@ pipelines. Its core function does not depend on any specific deep learning libra
153
155
  - Text mining for native PDFs with [**pdfplumber**](https://github.com/jsvine/pdfplumber),
154
156
  - Language detection with [**fastText**](https://github.com/facebookresearch/fastText),
155
157
  - Deskewing and rotating images with [**jdeskew**](https://github.com/phamquiluan/jdeskew).
156
- - Document and token classification with all LayoutLM models provided by the Transformer library.
158
+ - Document and token classification with all LayoutLM models provided by the
159
+ [**Transformer library**](https://github.com/huggingface/transformers).
157
160
  (Yes, you can use any LayoutLM-model with any of the provided OCR-or pdfplumber tools straight away!).
158
161
  - Table detection and table structure recognition with
159
162
  [**table-transformer**](https://github.com/microsoft/table-transformer).
@@ -163,10 +166,16 @@ pipelines. Its core function does not depend on any specific deep learning libra
163
166
  - Comprehensive configuration of **analyzer** like choosing different models, output parsing, OCR selection.
164
167
  Check this [notebook](https://github.com/deepdoctection/notebooks/blob/main/Analyzer_Configuration.ipynb) or the
165
168
  [docs](https://deepdoctection.readthedocs.io/en/latest/tutorials/analyzer_configuration_notebook/) for more infos.
166
- - Document layout analysis and table recognition now runs with Torchscript (CPU) as well and Detectron2 is
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
+ - Document layout analysis and table recognition now runs with
170
+ [**Torchscript**](https://pytorch.org/docs/stable/jit.html) (CPU) as well and [**Detectron2**](https://github.com/facebookresearch/detectron2/tree/main/detectron2) is not required
171
+ anymore for basic inference.
172
+ - [**new**] More angle predictors for determining the rotation of a document based on [**Tesseract**](https://github.com/tesseract-ocr/tesseract) and [**DocTr**](https://github.com/mindee/doctr)
169
173
  (not contained in the built-in Analyzer).
174
+ - [**new**] Token classification with [**LiLT**](https://github.com/jpWang/LiLT) via
175
+ [**transformers**](https://github.com/huggingface/transformers).
176
+ We have added a model wrapper for token classification with LiLT and added a some LiLT models to the model catalog
177
+ that seem to look promising, especially if you want to train a model on non-english data. The training script for
178
+ LayoutLM can be used for LiLT as well and we will be providing a notebook on how to train a model on a custom dataset soon.
170
179
 
171
180
  **deep**doctection provides on top of that methods for pre-processing inputs to models like cropping or resizing and to
172
181
  post-process results, like validating duplicate outputs, relating words to detected layout segments or ordering words
@@ -257,9 +266,9 @@ Everything in the overview listed below the **deep**doctection layer are necessa
257
266
  separately.
258
267
 
259
268
  - Linux or macOS. (Windows is not supported but there is a [Dockerfile](./docker/pytorch-cpu-jupyter/Dockerfile) available)
260
- - Python >= 3.8
261
- - 1.12 <= PyTorch < 2.0 **or** Tensorflow >= 2.9 and CUDA. If you want to run the models provided by Tensorpack a GPU is
262
- required. You can run on PyTorch with a CPU only.
269
+ - Python >= 3.9
270
+ - 1.13 <= PyTorch **or** 2.11 <= Tensorflow < 2.16. (For lower Tensorflow versions the code will only run on a GPU).
271
+ In general, if you want to train or fine-tune models, a GPU is required.
263
272
  - **deep**doctection uses Python wrappers for [Poppler](https://poppler.freedesktop.org/) to convert PDF documents into
264
273
  images.
265
274
  - With respect to the Deep Learning framework, you must decide between [Tensorflow](https://www.tensorflow.org/install?hl=en)
@@ -0,0 +1,146 @@
1
+ deepdoctection/__init__.py,sha256=dZ-kgHOzQTY-P6emJOCUnc2iBLzj6_diTOIiDJCFzXY,13365
2
+ deepdoctection/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ deepdoctection/analyzer/__init__.py,sha256=g86MeZz_BIQ2-b8kDIss7osPUNrFhT-Z3Eu7Wm02pFI,706
4
+ deepdoctection/analyzer/dd.py,sha256=_F-fKLK1ft0OXJayfmuAI3LWml9bnyZxc8kgV7C5Gog,19603
5
+ deepdoctection/configs/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
6
+ deepdoctection/configs/conf_dd_one.yaml,sha256=d4ZTMQ1oTIYMFctQAaQBKK6iQP4LsViUDrPvsnaLumo,2220
7
+ deepdoctection/configs/conf_tesseract.yaml,sha256=oF6szDyoi15FHvq7yFUNIEjfA_jNLhGxoowiRsz_zY4,35
8
+ deepdoctection/dataflow/__init__.py,sha256=CWRHMpmJaPk4xY_oIIFubCt-z11SguWrMWxHZ7rdrvY,845
9
+ deepdoctection/dataflow/base.py,sha256=z4DCComSj5wStEPjtk0093cNNGfUMiDqx8dqz36nS_o,6221
10
+ deepdoctection/dataflow/common.py,sha256=zujtMO55s4BrG_i1m2Xzwm5h-0bAEgYDl-TNjtgjf10,10018
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
+ deepdoctection/dataflow/stats.py,sha256=8g1uZXslh-GuH6rJLL6qScYUaZ0TLj8QI5ov2Q8kTE4,9626
16
+ deepdoctection/datapoint/__init__.py,sha256=3K406GbOPhoEp8koVaSbMocmSsmWifnSZ1SPb7C1lOY,1643
17
+ deepdoctection/datapoint/annotation.py,sha256=aHkjlGNYPkjmKMwDilFamEJ4X60Nkk9gNCxhxyNzTEQ,21086
18
+ deepdoctection/datapoint/box.py,sha256=-uPn4Q_8uOgL3Nzz_3s56QEs4rOKEE0aL-vwkgHlpTI,23534
19
+ deepdoctection/datapoint/convert.py,sha256=WRCpowR_TDYwr8b6zq4dbQGSMeg-7KJetehKY_mKAdM,6716
20
+ deepdoctection/datapoint/image.py,sha256=BbfFyQvM2FfW-9DDIDPSiDf93SEOQ9kgRdytUgaZV30,28991
21
+ deepdoctection/datapoint/view.py,sha256=gLeMxuZTfdsJppwlnmM3-82T1LdYNeBLwO-HVAERF4Q,41795
22
+ deepdoctection/datasets/__init__.py,sha256=-A3aR90aDsHPmVM35JavfnQ2itYSCn3ujl4krRni1QU,1076
23
+ deepdoctection/datasets/adapter.py,sha256=moYOqvvl8x0FI2M6GkiCv6EonjYkYGGAE0KU3J29AAA,7504
24
+ deepdoctection/datasets/base.py,sha256=ap0gk8_8RKjgezmoxcyxSPSsA3-OfHzq6tVXOEnedno,22350
25
+ deepdoctection/datasets/dataflow_builder.py,sha256=sppZgDyWMcSswLGZkST9t90hUAfa4yI8xtGTQE59yWE,4101
26
+ deepdoctection/datasets/info.py,sha256=4QcnSBLc_svFWp9QJ5CEDwcaxDlng1blFP_gdPtBfpA,20596
27
+ deepdoctection/datasets/registry.py,sha256=ZjzVzjsCgNXJuZZZtR98_yKocADmh4EBGV5JqJbGjWk,2543
28
+ deepdoctection/datasets/save.py,sha256=UxMKithQE4y-W4lsthCcbuIy-7dCYVmdHyriT4AzWyg,3364
29
+ deepdoctection/datasets/instances/__init__.py,sha256=XEc_4vT5lDn6bbZID9ujDEumWu8Ec2W-QS4pI_bfWWE,1388
30
+ deepdoctection/datasets/instances/doclaynet.py,sha256=denBTf4qVYfEGGG_e5lzfeQmmEK1Obbm16_tNEjvy84,12045
31
+ deepdoctection/datasets/instances/fintabnet.py,sha256=PATlxLIVjELuyHhtjQznRGVXMfzh5oyD2i6T6j1YlnM,12046
32
+ deepdoctection/datasets/instances/funsd.py,sha256=aOGsSqNyeenvTtBUE5I1A3bh93_ePg0a5LFdSBw1-HM,6971
33
+ deepdoctection/datasets/instances/iiitar13k.py,sha256=Gn19Au8iHq_82XZGwfXnw6wUkQk5WZw65adssL44u84,6706
34
+ deepdoctection/datasets/instances/layouttest.py,sha256=LM-XGlg74OZT_f6UVmMyW_M3ujM4S87yxsxJazJd25Y,4400
35
+ deepdoctection/datasets/instances/publaynet.py,sha256=SY1qr8mPXmMkFhH2zJLS5maTHSnr_9372q7fF9N2hK8,5225
36
+ deepdoctection/datasets/instances/pubtables1m.py,sha256=RukNbUKzfzfSngSQrW_A8xfRUnjdfT6mW3UUkO2GHqw,12307
37
+ deepdoctection/datasets/instances/pubtabnet.py,sha256=DJETQeHmPPXM-PfDNjOYi33XIfE9QO4juJW3KwAjoqU,8587
38
+ deepdoctection/datasets/instances/rvlcdip.py,sha256=axHcvb9R4h-yIyqvrjVQUISS_zef2WcKafVEA2agK9c,6641
39
+ deepdoctection/datasets/instances/xfund.py,sha256=6sOFFJ0PNJNneLJYNqE8y8Uz1f_UTiIRF8z9j_HEuyw,7748
40
+ deepdoctection/datasets/instances/xsl/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
41
+ deepdoctection/datasets/instances/xsl/pascal_voc.xsl,sha256=DlzFV2P8NtQKXVe96i-mIcPWmL6tsW7NQjgCuz2pCL4,1952
42
+ deepdoctection/eval/__init__.py,sha256=rbns4tSEQ30QLj8h0mm3A0dCaKuN9LDxxpVypKKSXSE,932
43
+ deepdoctection/eval/accmetric.py,sha256=6dcKSgghtGK1Wkmuxl7MwxCHG_-heeMlRad1Fow4_1A,19639
44
+ deepdoctection/eval/base.py,sha256=Hf0K8L_TdQY1eto_0xUXHC4BI5IPTWm3ui5dGfTlryY,4855
45
+ deepdoctection/eval/cocometric.py,sha256=ucra2Wu_fMS8weyhSypYCPSF1VRFfeoZeaggbRl19S0,8803
46
+ deepdoctection/eval/eval.py,sha256=5qBckwEWen0PJ6L0AYpzKHEEOe9OH3Ix29DVXgZBVqg,19540
47
+ deepdoctection/eval/registry.py,sha256=v4mp-s67vBVRu1nQzuGlYPViQnMSeIXEcF_WmvfUCoU,1051
48
+ deepdoctection/eval/tedsmetric.py,sha256=w7-ZBub5jDJCSsJX-5s95mUf9xl_w-QwRHmSPLR7xXk,9297
49
+ deepdoctection/eval/tp_eval_callback.py,sha256=KCa6KslP3dHktdCe9r25IgUJHfAXhHC5vGMY80lus4g,5926
50
+ deepdoctection/extern/__init__.py,sha256=9Iks9b4Q_LynjcV167TVCoK8YsQRUcA2jjmAmDNA_X8,1056
51
+ deepdoctection/extern/base.py,sha256=0F6L2de8cH9nmKLwZAXOGw1ZtrE29MU4XS1tdMvQys4,12786
52
+ deepdoctection/extern/d2detect.py,sha256=lMOnUDoe7YxClvnWyUymiQeAvbhsZCcxcEtwD1Si1XY,22962
53
+ deepdoctection/extern/deskew.py,sha256=jVz14ncPDY3hbWZ3NNqijh_UHI5CXSiUDFTvUQZbdJ0,2961
54
+ deepdoctection/extern/doctrocr.py,sha256=IwYc1HE1Sr1WBIETl26Yv69CT8R5Iv0Ogmo5k-1nrYA,23942
55
+ deepdoctection/extern/fastlang.py,sha256=H7yw25obcyYk_F8ifm_3QfkjKQt80RpdWcNskKiyDD0,4377
56
+ deepdoctection/extern/hfdetr.py,sha256=GEu9OLC7BrOHIUGdki8XDfaIA-CA4N756ZWOqmACXsM,11506
57
+ deepdoctection/extern/hflayoutlm.py,sha256=wOCTIaNt0iOVhDtAQd-vlRxTRqjJIff4Rfahb2P5qOo,54396
58
+ deepdoctection/extern/hflm.py,sha256=LtoKcxvI_PzO8SaRbGNVcuSVy8gZrhrRHSbHsF3mK64,8960
59
+ deepdoctection/extern/model.py,sha256=XaKjEAnbb8nY3mPPpVtcohF1US5KxrLaohRVEVJ7W94,52301
60
+ deepdoctection/extern/pdftext.py,sha256=7exOLVJuKxMODimXuH5kvM0Avm-bWpUTqwMyrO5iJoM,3939
61
+ deepdoctection/extern/tessocr.py,sha256=WiOA2Cn27ZZDRJGIzcm_Ubu-6Fg_F3wN3OiMsKomKSQ,17143
62
+ deepdoctection/extern/texocr.py,sha256=F7b_YeeNvD2NXC-KvmXBZ2O-a_dpQFU49x1Nshxtj0s,5778
63
+ deepdoctection/extern/tpdetect.py,sha256=l4S2Nst_3RaJqc3Y0jim67mJHhcVLFU1fC2cAfPbMmY,8636
64
+ deepdoctection/extern/pt/__init__.py,sha256=3Cu0ZHjbYsJomru7-RQXEHihEQLegZrmLetlHiqS58I,742
65
+ deepdoctection/extern/pt/nms.py,sha256=Zr1rwWSnMKg2Ukq1N4i9C-ey-9bS5TlfJ9YTL8d1RwA,1573
66
+ deepdoctection/extern/pt/ptutils.py,sha256=H1BSqhg4f1M6X2OfwaiQyHZPsCdHaQJhYlernmD3QqQ,1897
67
+ deepdoctection/extern/tp/__init__.py,sha256=8QMkcA7tChCr1QXiA0551lZS2jTsECBrrL2YUanpFAk,706
68
+ deepdoctection/extern/tp/tfutils.py,sha256=S0aeZTlZriRg81npGCnuovXHfkV9eZbe_tajidRPH8A,2858
69
+ deepdoctection/extern/tp/tpcompat.py,sha256=i2cBY0nu3ekmiXvqZBVAuV_-L5h1WmCWZwHZ49NPLuc,5257
70
+ deepdoctection/extern/tp/tpfrcnn/__init__.py,sha256=OzDaR5A8HGz9a4VwjLiR9rN1Nf1cSebv8DVEMxStFOw,703
71
+ deepdoctection/extern/tp/tpfrcnn/common.py,sha256=fCxwi2u752ZlI_DtIkLC_x9j9tyo1nnirAi2PmnziD4,3830
72
+ deepdoctection/extern/tp/tpfrcnn/predict.py,sha256=957dnhCByS-FZH13efFWADhodaV4lKto-ikLPetfvEQ,4338
73
+ deepdoctection/extern/tp/tpfrcnn/preproc.py,sha256=CnwG7XnJYn4jrj8wlCeslWWp101NPNXiPvreOv0XxsE,12009
74
+ deepdoctection/extern/tp/tpfrcnn/config/__init__.py,sha256=RhJiXId6vUSw_Pi49SPwj0jrf61VxxptXoGeBKtT42M,705
75
+ deepdoctection/extern/tp/tpfrcnn/config/config.py,sha256=zuns7wq2OgAZ9eaoekT1RtadpPjRDPE-JVs0gMqv1eM,11376
76
+ deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py,sha256=RhJiXId6vUSw_Pi49SPwj0jrf61VxxptXoGeBKtT42M,705
77
+ deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py,sha256=Dxh_2RM7Yc0SByBgX-gDM1ds4KWydKgv8gVjRZWcN1Y,9810
78
+ deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py,sha256=4jgWyja-_V44zJVfK4ySmknhnhqfb9f6ruVwbh387aE,13752
79
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py,sha256=KxglPdWmAzB9b5fY0c92dDU357rTwEzjtAdmh1NZ21Y,7236
80
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_cascade.py,sha256=plovKReX6rFjnL_ravLUUCZ49ZFni87FlRJGK0fXqco,5777
81
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py,sha256=Re51RkThc-YL7TemPPkngkXkwlwy070hVfio1sKFD6g,11333
82
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py,sha256=xbRCVfyHBvrFPCDgvnB4tHyCGjJ857r2Rtv_Nfb7kKA,18066
83
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py,sha256=Fj_5dj9Wg3izp7atPZJ4HaWPkZFViJlNz30QOm4bJ0M,4852
84
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_rpn.py,sha256=F7NGrvKyPZRxnl96zoFyezNzymFJvQghMjGslsc7iFg,9028
85
+ deepdoctection/extern/tp/tpfrcnn/utils/__init__.py,sha256=kiPlXxHlTGN9eI7YE9BgwteOQ_nCYCuqqSLO5JfkCTQ,695
86
+ deepdoctection/extern/tp/tpfrcnn/utils/box_ops.py,sha256=aBLqPg_ApaiimtBRaOsLKTZZFIBh87vVtqjLPMaX9fQ,2379
87
+ deepdoctection/extern/tp/tpfrcnn/utils/np_box_ops.py,sha256=O-q1GQiOEd1lN1MQDsJvHwD2OmBO-qHNeqJ1Qnec93g,3539
88
+ deepdoctection/mapper/__init__.py,sha256=Xqb34aCjslZDQnqQgCSvnloL5DbdT9eHhn-StpVPbzE,1130
89
+ deepdoctection/mapper/cats.py,sha256=EIvemufdhkjXpslQP0zNIIlw2fEWGPzZZRRppLFQXSU,15922
90
+ deepdoctection/mapper/cocostruct.py,sha256=7s6ndLxXiYN2mq43YhSQQwGT0MesRXqB1xd1EY5G08A,5840
91
+ deepdoctection/mapper/d2struct.py,sha256=CUgrkDbhEKgbCkRG4PvRDIUat7qpOBmkUabZHme9jkw,8542
92
+ deepdoctection/mapper/hfstruct.py,sha256=S06EgJXdO9EbmuNpdwQKDW-rmfyQEU9ASSXGdyG35P4,5594
93
+ deepdoctection/mapper/laylmstruct.py,sha256=hGZ9OYVE8DKo5zGaz96J4WF306s6EzG6S4bPPszHORw,43049
94
+ deepdoctection/mapper/maputils.py,sha256=ohaK548HDTcIol79qyhF8asVNV0HSVdXZxibnrhFssA,8183
95
+ deepdoctection/mapper/match.py,sha256=cciFy1lim6M-Uvbb6Zq77kcvDk-GmJeD3ui-H_K7Q6I,7780
96
+ deepdoctection/mapper/misc.py,sha256=LSkSRYMZ3l4C92Whv68CvrZftpS6x9iy9G-vemMAJCs,6559
97
+ deepdoctection/mapper/pascalstruct.py,sha256=3SpyZhUL0ca1j4sSskR-iQhswDUTeXElyLluYsXp2jo,3844
98
+ deepdoctection/mapper/prodigystruct.py,sha256=_oAVVv4eA7_fyCyhdtJSd0Wg6YYhonY8H8MGKUY-Fhw,6804
99
+ deepdoctection/mapper/pubstruct.py,sha256=UjVSgtw8n6Ib4_q7yc2CDLYRch6AXasjvNdGtmfpwis,23588
100
+ deepdoctection/mapper/tpstruct.py,sha256=oBHOZ33CHt_PdV1riXNl_BJfZi1EXaezyIyJr4a0IRA,4514
101
+ deepdoctection/mapper/xfundstruct.py,sha256=mFzRojnKzLiQ82kxHgYz8dvsQCXQaiFlcbP5R5hdBAw,8807
102
+ deepdoctection/pipe/__init__.py,sha256=ywTVoetftdL6plXg2YlBzMfmqBZupq7yXblSVyvvkcQ,1127
103
+ deepdoctection/pipe/anngen.py,sha256=h5QF_anEuz1W5nwLkGpPoxao92rM7Y8rXEMG05uDq3U,15198
104
+ deepdoctection/pipe/base.py,sha256=iLRfDv92o5J0NfhOdjC4CbNy-PVLhqggsMPGQ9qmNBU,14618
105
+ deepdoctection/pipe/common.py,sha256=v6LG5X9fK-U4atIp_Zs3s-X1k-yf5uMYtCkOKGWGvts,14732
106
+ deepdoctection/pipe/concurrency.py,sha256=nmbxIl3T2jZez7j0bcvltExq8XHmGhbEFiWoJyrkvYo,9564
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=fYyHPj1Eyd9Rh9WxIH6nW9zUoWf3_47qe0YbSoCwNCA,5332
110
+ deepdoctection/pipe/lm.py,sha256=HiJL9H5jA2z4MjC2MjvZyNiqigWHHlH527dqU29j6Hc,16578
111
+ deepdoctection/pipe/order.py,sha256=tdayhu27AlBh-kaFWfbIOAYDoPDZbwTO7aMMTC4wYGc,40136
112
+ deepdoctection/pipe/refine.py,sha256=P_bcZYMD9BP6iofI6CYO8kKRR_IgsbuWke7KAZReNm0,22835
113
+ deepdoctection/pipe/registry.py,sha256=aFx-Tn0xhVA5l5H18duNW5QoTNKQltybsEUEzsMgUfg,902
114
+ deepdoctection/pipe/segment.py,sha256=bKGon-P3GkibrUHsjmy8qivv1QmIUkb_1mhluMrhnss,50631
115
+ deepdoctection/pipe/sub_layout.py,sha256=dKVZMvSiDjxJkwHj8LYanaD6t8khMJiGkPtD6G9XBw4,12155
116
+ deepdoctection/pipe/text.py,sha256=-eDjAPC5mE-vuZyNqfzZAbeMoXMRZmlVx4R3Q6VtTtw,11168
117
+ deepdoctection/pipe/transform.py,sha256=9CGTaM7rjwMtbsK_lDqlLV1Qqnq6FA0N-K_Spp_9MqE,3736
118
+ deepdoctection/train/__init__.py,sha256=YFTRAZF1F7cEAKTdAIi1BLyYb6rSRcwq09Ui5Lu8d6E,1071
119
+ deepdoctection/train/d2_frcnn_train.py,sha256=WU3EjvK522tQSVHkiN9QeYd9q69Jd9BYcDHdZj0VCbc,16002
120
+ deepdoctection/train/hf_detr_train.py,sha256=DI11nj3QTt1Cdm76bGbFDX4UC4HcqTUVmXGbb-n48zU,10882
121
+ deepdoctection/train/hf_layoutlm_train.py,sha256=alYEWijIau-NV1vBb1xwkGEpJ40WTaRF8zHqupgO3is,22461
122
+ deepdoctection/train/tp_frcnn_train.py,sha256=-tWbERw4soZoJ7Z-lkJ3fqwQectvAf8D3SYfxILWWLg,13101
123
+ deepdoctection/utils/__init__.py,sha256=brBceRWeov9WXMiJTjyJOF2rHMP8trGGRRjhMdZ61nI,2371
124
+ deepdoctection/utils/concurrency.py,sha256=s-9kkVVmZs9A-D9cvCO9rzFvBoJHuMLxL2dy8EUyGpE,4608
125
+ deepdoctection/utils/context.py,sha256=er2G86Lv96YlrwmY6EX2FS1-tZVu04jP4UEfTnL8DgE,4076
126
+ deepdoctection/utils/detection_types.py,sha256=n_pnSzJ44MdRhLrtNfh5E98tbKSdTuz-L-aed4w42Pc,1931
127
+ deepdoctection/utils/develop.py,sha256=MaG3h5a6k26TbAoqLB1yPcME_uUziN_p0PxhkZrmhcg,3470
128
+ deepdoctection/utils/env_info.py,sha256=618uCktaNIBsOIzt8hoX1bgh0UoztJwj0skfooXAOr8,16249
129
+ deepdoctection/utils/error.py,sha256=_3q9VepKfEhsM3H033_Fu0hwBzMSjsWALsjyJbGAZr8,2367
130
+ deepdoctection/utils/file_utils.py,sha256=TG-hMFoaJYxTS-XOJ22fiLoThtRrm7SVBGJXx0lq11Q,19089
131
+ deepdoctection/utils/fs.py,sha256=b2E3StYRVklbpS2ABh-JL_8rm5BFjb61faD44nBfzQk,9142
132
+ deepdoctection/utils/identifier.py,sha256=ICi7bT69y2TP8PP3Z14eyTca9oZT6Mzv-Y0eUrvNM9Q,2159
133
+ deepdoctection/utils/logger.py,sha256=I51DR6pbV7g5CfS3aN-fCqitdNB8FaPLFon1r0LXmQE,9970
134
+ deepdoctection/utils/metacfg.py,sha256=wk_jM6tAJhWapCjNR8yZo_fs91YTM-tsX7eM30w0gzQ,5203
135
+ deepdoctection/utils/mocks.py,sha256=IkN3-IzAl4eX0ibgKIHg8IY7ykVw6BnpF6XnxKnKaZI,2389
136
+ deepdoctection/utils/pdf_utils.py,sha256=Au83NA2cpjp_wjjaEhEAKqVQP6bVWE9l14lw9EqagXs,7711
137
+ deepdoctection/utils/settings.py,sha256=h9Y5SiD_nQl9-Z8l0P1Amd4b76Sps_KAuOjNyQfNUoo,12314
138
+ deepdoctection/utils/tqdm.py,sha256=1MDzkqgCAO3o8OkQTL-46866MpLqbMab9w6go3IpbKI,1830
139
+ deepdoctection/utils/transform.py,sha256=NILVQM8CGwpJO2oHFyi5QqZNeBRxh8FDcIEPtJRLk1A,8381
140
+ deepdoctection/utils/utils.py,sha256=ly6Sqhufe9fdMiJV7JqQCS8C5FzFEUH5R3pvuuCvGYw,5185
141
+ deepdoctection/utils/viz.py,sha256=vWPnk8QrF3xL2wbM3oJuanBXZH9jNPzgOmJ1_qpHtfw,25500
142
+ deepdoctection-0.32.dist-info/LICENSE,sha256=GQ0rUvuGdrMNEI3iHK5UQx6dIMU1QwAuyXsxUHn5MEQ,11351
143
+ deepdoctection-0.32.dist-info/METADATA,sha256=qhe0Qw0COBjSOzaUemVBcIfyJgO87P8o2-nWNv07ajI,19032
144
+ deepdoctection-0.32.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
145
+ deepdoctection-0.32.dist-info/top_level.txt,sha256=hs2DdoOL9h4mnHhmO82BT4pz4QATIoOZ20PZmlnxFI8,15
146
+ deepdoctection-0.32.dist-info/RECORD,,
@@ -1,144 +0,0 @@
1
- deepdoctection/__init__.py,sha256=a3xZV9sZJyqBy4_R2rHGSGI9jbnSAtvNtI_Eztu7S6U,12960
2
- deepdoctection/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- deepdoctection/analyzer/__init__.py,sha256=g86MeZz_BIQ2-b8kDIss7osPUNrFhT-Z3Eu7Wm02pFI,706
4
- deepdoctection/analyzer/dd.py,sha256=WII6u00TR95mM8mq4ZQ6W4kpIUglLR8M9_Ix4BgslII,19057
5
- deepdoctection/configs/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
6
- deepdoctection/configs/conf_dd_one.yaml,sha256=RqygpBPwWt_Xdrflg2M7liKNfnaRqONFzMQn1woBLMU,2227
7
- deepdoctection/configs/conf_tesseract.yaml,sha256=oF6szDyoi15FHvq7yFUNIEjfA_jNLhGxoowiRsz_zY4,35
8
- deepdoctection/dataflow/__init__.py,sha256=CWRHMpmJaPk4xY_oIIFubCt-z11SguWrMWxHZ7rdrvY,845
9
- deepdoctection/dataflow/base.py,sha256=z4DCComSj5wStEPjtk0093cNNGfUMiDqx8dqz36nS_o,6221
10
- deepdoctection/dataflow/common.py,sha256=zujtMO55s4BrG_i1m2Xzwm5h-0bAEgYDl-TNjtgjf10,10018
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
- deepdoctection/dataflow/stats.py,sha256=8g1uZXslh-GuH6rJLL6qScYUaZ0TLj8QI5ov2Q8kTE4,9626
16
- deepdoctection/datapoint/__init__.py,sha256=3K406GbOPhoEp8koVaSbMocmSsmWifnSZ1SPb7C1lOY,1643
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
- deepdoctection/datasets/__init__.py,sha256=rmqh0ASQhEajiOkFVGFxLGPjOWSPFpVTja1brwzVqHQ,1154
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
- deepdoctection/datasets/registry.py,sha256=ZjzVzjsCgNXJuZZZtR98_yKocADmh4EBGV5JqJbGjWk,2543
28
- deepdoctection/datasets/save.py,sha256=UxMKithQE4y-W4lsthCcbuIy-7dCYVmdHyriT4AzWyg,3364
29
- deepdoctection/datasets/instances/__init__.py,sha256=XEc_4vT5lDn6bbZID9ujDEumWu8Ec2W-QS4pI_bfWWE,1388
30
- deepdoctection/datasets/instances/doclaynet.py,sha256=M0kSqB06XYmIOfqDC_Q4ooidybTJz2PBU8QGkdjiOeg,12014
31
- deepdoctection/datasets/instances/fintabnet.py,sha256=8fH01pMMp45IijmhlPBR11DzbqC4Mh6vYGbvUzhkZtM,12013
32
- deepdoctection/datasets/instances/funsd.py,sha256=SpcP9YMiWUfjiRIjCDB2dAuxji_AmOUX4D96eqXg9G0,6938
33
- deepdoctection/datasets/instances/iiitar13k.py,sha256=isbF-4oGusqpNfSKmtswZyhL-JcdA_JVld_zI0ppCMk,6622
34
- deepdoctection/datasets/instances/layouttest.py,sha256=UuAyMOdMeR3qPOUnvWxDxUErm2AeMdjsYKFb46Tgq4Y,4367
35
- deepdoctection/datasets/instances/publaynet.py,sha256=6TMizNfn2TwxjpScIbt_zWwKZ3OKD1RqcAiS1LEd-5s,5193
36
- deepdoctection/datasets/instances/pubtables1m.py,sha256=wgmtxcxeDDZ_FTDpAZqOv6yj3_SIpY3A4yLpdqHqsk0,12225
37
- deepdoctection/datasets/instances/pubtabnet.py,sha256=IKwlVIdxHtuoeFReXIoLScRYbzVT7x793AEEnGKHyBQ,8554
38
- deepdoctection/datasets/instances/rvlcdip.py,sha256=rmyOL-NiUSe1NXMEbD9dzyl92oY5dsMRkHc_vWnRdyc,6608
39
- deepdoctection/datasets/instances/xfund.py,sha256=XwrRca8MoP73rWpjtBiaUljEiSLJvcNOWYpRrt0IZmw,7715
40
- deepdoctection/datasets/instances/xsl/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
41
- deepdoctection/datasets/instances/xsl/pascal_voc.xsl,sha256=DlzFV2P8NtQKXVe96i-mIcPWmL6tsW7NQjgCuz2pCL4,1952
42
- deepdoctection/eval/__init__.py,sha256=xi6i3cSWiswFBnoOjoQj3Kk4VXfzOKPd8qSJU1vo_nU,1006
43
- deepdoctection/eval/accmetric.py,sha256=6dcKSgghtGK1Wkmuxl7MwxCHG_-heeMlRad1Fow4_1A,19639
44
- deepdoctection/eval/base.py,sha256=Hf0K8L_TdQY1eto_0xUXHC4BI5IPTWm3ui5dGfTlryY,4855
45
- deepdoctection/eval/cocometric.py,sha256=iDZ8RmvrS3TmaRBDrYb4plbmF108ROpdsZuvj0y02vA,8755
46
- deepdoctection/eval/eval.py,sha256=UHmWbNUKxQHN0lxnpOCrvFe4X7tVYctU31R4VBvc1m4,19186
47
- deepdoctection/eval/registry.py,sha256=v4mp-s67vBVRu1nQzuGlYPViQnMSeIXEcF_WmvfUCoU,1051
48
- deepdoctection/eval/tedsmetric.py,sha256=SuOkmXidkq6HGIQyQPp_y2s1Qdh4vQpTn0z_XpZfFhk,9212
49
- deepdoctection/eval/tp_eval_callback.py,sha256=s4P3hPcFDIBqNNgo1Cu_XPsI5ypiq20nuOrU7u3awZU,5795
50
- deepdoctection/extern/__init__.py,sha256=6htL-4-kZ3o_59IVXHKq-AzS8HuGuAmLWu7x1qpvbnA,1194
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
- deepdoctection/extern/model.py,sha256=bhAPv2w8U8EbPMvvsi3X1-4d0eS4ikPiu_B4s9C5Ado,51436
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
- deepdoctection/extern/pt/__init__.py,sha256=h2kxWPEqmTJAQCvYQfDbUZdFWZhQm2Gd5Lhz1NYEpkc,771
64
- deepdoctection/extern/pt/nms.py,sha256=B1h8B-OGOxHiht0Dmh_i52xNVG0QDoptSPKAs8-otiU,1458
65
- deepdoctection/extern/pt/ptutils.py,sha256=McuBUAyDeBjtTepdzWoucgtrmcX4K3lhSCwYHWYxwkQ,1407
66
- deepdoctection/extern/tp/__init__.py,sha256=8QMkcA7tChCr1QXiA0551lZS2jTsECBrrL2YUanpFAk,706
67
- deepdoctection/extern/tp/tfutils.py,sha256=GvDOG1bj60h8qusm3NCnEm16YlUjPtv_iKULYaWYV7Y,1479
68
- deepdoctection/extern/tp/tpcompat.py,sha256=nlpmeNcXjdU_BL3zqytmJajoILJ5UU3hqtR2vK8Gpuk,5068
69
- deepdoctection/extern/tp/tpfrcnn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- deepdoctection/extern/tp/tpfrcnn/common.py,sha256=vrAIk6kiryTP8bQZrXCmD-5gKhxNdl34SO-mzN9OdJ0,3711
71
- deepdoctection/extern/tp/tpfrcnn/predict.py,sha256=OW-JMgqSxdZFsQth1D1NhzUC-0JYd5wirHvcM6xNe24,4216
72
- deepdoctection/extern/tp/tpfrcnn/preproc.py,sha256=DvZ8fv1VkeeXBf8pZBS8Gc-9WNfNh7tgX6tIjdF4_NU,11898
73
- deepdoctection/extern/tp/tpfrcnn/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
- deepdoctection/extern/tp/tpfrcnn/config/config.py,sha256=OAioHcO2amPJIvy73dSGqj0daNzp1wAFQD0nGw9oOOM,11284
75
- deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py,sha256=gxSfccrCp32hrnV4cEJW_kX4qCAoaBaIxZEKfAXWWD4,9512
77
- deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py,sha256=t7F67afnfNJrHMt-kk2Y0REcy8MgiZ8IrR0J1OdXq40,13620
78
- deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py,sha256=G62nkoVSTPBoZRmQOZhBWNZHEK62Hs_xXdsROl8WII4,7061
79
- deepdoctection/extern/tp/tpfrcnn/modeling/model_cascade.py,sha256=x1MvbgGpX_lXNTPlPofQhZMyeVegfXh0Rgw3D-xBZ6E,5685
80
- deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py,sha256=1dYmCcYE3P6ZyHRBjK7XQ4jJjneWGEfE2tDoikvnMpI,11108
81
- deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py,sha256=Tpgh087hrOix3xormlLR1F1QL8-4wuilaJVexjd4wpM,17832
82
- deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py,sha256=1hMrZ2YttKZfVbgcBueSisDIOzXntAaJaQ2Ob8zO8E0,4644
83
- deepdoctection/extern/tp/tpfrcnn/modeling/model_rpn.py,sha256=hL4gSacnx_YpikvMY8mPJkXrX7QMsFVyPwXEXGfujRU,8780
84
- deepdoctection/extern/tp/tpfrcnn/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
- deepdoctection/extern/tp/tpfrcnn/utils/box_ops.py,sha256=mxghtfXcxiktnq7E_pf33D8X_sUDsuf5O4Oq1hf2sg8,2203
86
- deepdoctection/extern/tp/tpfrcnn/utils/np_box_ops.py,sha256=O-q1GQiOEd1lN1MQDsJvHwD2OmBO-qHNeqJ1Qnec93g,3539
87
- deepdoctection/mapper/__init__.py,sha256=6A-1kW2O5-zMK5qaWTsxcVIPKRJERUoSn3KUtRXKkgI,1294
88
- deepdoctection/mapper/cats.py,sha256=EIvemufdhkjXpslQP0zNIIlw2fEWGPzZZRRppLFQXSU,15922
89
- deepdoctection/mapper/cocostruct.py,sha256=7s6ndLxXiYN2mq43YhSQQwGT0MesRXqB1xd1EY5G08A,5840
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
- deepdoctection/mapper/match.py,sha256=cciFy1lim6M-Uvbb6Zq77kcvDk-GmJeD3ui-H_K7Q6I,7780
95
- deepdoctection/mapper/misc.py,sha256=XtC0Mv0TfkRowVVpLgVU07SvDCiKr1q0k2Rd8fy41LU,6520
96
- deepdoctection/mapper/pascalstruct.py,sha256=3SpyZhUL0ca1j4sSskR-iQhswDUTeXElyLluYsXp2jo,3844
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
- deepdoctection/mapper/xfundstruct.py,sha256=mFzRojnKzLiQ82kxHgYz8dvsQCXQaiFlcbP5R5hdBAw,8807
101
- deepdoctection/pipe/__init__.py,sha256=Keyj5wNWT16hgtvZn4ZqhK7HMU6i9bWQ5dU1e7-j7-A,1121
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
- deepdoctection/pipe/concurrency.py,sha256=pz-2NoI9HeLFgixN83ALTDT37uwunwN8ww0g1odTzfE,9531
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
- deepdoctection/pipe/order.py,sha256=tNC48ucCsLCM9Qxs0gaKolk2bSIO62LD9C6TtJrlIh8,35266
112
- deepdoctection/pipe/refine.py,sha256=TcPNa5Vxkn8CxyGruRqf2-zSwqu_xX1UjQ0v560j4gI,22921
113
- deepdoctection/pipe/registry.py,sha256=aFx-Tn0xhVA5l5H18duNW5QoTNKQltybsEUEzsMgUfg,902
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
- deepdoctection/train/__init__.py,sha256=BHnGumRvKGJQX7TYfqSEPdiiLrWK64Vpw5o9dJWDS6c,1196
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
- deepdoctection/train/tp_frcnn_train.py,sha256=D-LZrg-WcKhSSGQ3ZllzPrsJ6OZ1aRKFODmVKc3YckU,12952
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
- deepdoctection/utils/detection_types.py,sha256=n_pnSzJ44MdRhLrtNfh5E98tbKSdTuz-L-aed4w42Pc,1931
126
- deepdoctection/utils/develop.py,sha256=MaG3h5a6k26TbAoqLB1yPcME_uUziN_p0PxhkZrmhcg,3470
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
131
- deepdoctection/utils/identifier.py,sha256=ICi7bT69y2TP8PP3Z14eyTca9oZT6Mzv-Y0eUrvNM9Q,2159
132
- deepdoctection/utils/logger.py,sha256=z5GPpNJ0X1Rb_QYTBoHGKFDOXoT63MaI03gDARm1wSI,9931
133
- deepdoctection/utils/metacfg.py,sha256=wk_jM6tAJhWapCjNR8yZo_fs91YTM-tsX7eM30w0gzQ,5203
134
- deepdoctection/utils/pdf_utils.py,sha256=Au83NA2cpjp_wjjaEhEAKqVQP6bVWE9l14lw9EqagXs,7711
135
- deepdoctection/utils/settings.py,sha256=tmVvzHBJN9K7kvTXFZD7W-5kaqg5mhMEdqOSB0tNMSw,12290
136
- deepdoctection/utils/tqdm.py,sha256=1MDzkqgCAO3o8OkQTL-46866MpLqbMab9w6go3IpbKI,1830
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,,