deepdoctection 0.31__py3-none-any.whl → 0.33__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.
- deepdoctection/__init__.py +16 -29
- deepdoctection/analyzer/dd.py +70 -59
- deepdoctection/configs/conf_dd_one.yaml +34 -31
- deepdoctection/dataflow/common.py +9 -5
- deepdoctection/dataflow/custom.py +5 -5
- deepdoctection/dataflow/custom_serialize.py +75 -18
- deepdoctection/dataflow/parallel_map.py +3 -3
- deepdoctection/dataflow/serialize.py +4 -4
- deepdoctection/dataflow/stats.py +3 -3
- deepdoctection/datapoint/annotation.py +41 -56
- deepdoctection/datapoint/box.py +9 -8
- deepdoctection/datapoint/convert.py +6 -6
- deepdoctection/datapoint/image.py +56 -44
- deepdoctection/datapoint/view.py +245 -150
- deepdoctection/datasets/__init__.py +1 -4
- deepdoctection/datasets/adapter.py +35 -26
- deepdoctection/datasets/base.py +14 -12
- deepdoctection/datasets/dataflow_builder.py +3 -3
- deepdoctection/datasets/info.py +24 -26
- deepdoctection/datasets/instances/doclaynet.py +51 -51
- deepdoctection/datasets/instances/fintabnet.py +46 -46
- deepdoctection/datasets/instances/funsd.py +25 -24
- deepdoctection/datasets/instances/iiitar13k.py +13 -10
- deepdoctection/datasets/instances/layouttest.py +4 -3
- deepdoctection/datasets/instances/publaynet.py +5 -5
- deepdoctection/datasets/instances/pubtables1m.py +24 -21
- deepdoctection/datasets/instances/pubtabnet.py +32 -30
- deepdoctection/datasets/instances/rvlcdip.py +30 -30
- deepdoctection/datasets/instances/xfund.py +26 -26
- deepdoctection/datasets/save.py +6 -6
- deepdoctection/eval/__init__.py +1 -4
- deepdoctection/eval/accmetric.py +32 -33
- deepdoctection/eval/base.py +8 -9
- deepdoctection/eval/cocometric.py +15 -13
- deepdoctection/eval/eval.py +41 -37
- deepdoctection/eval/tedsmetric.py +30 -23
- deepdoctection/eval/tp_eval_callback.py +16 -19
- deepdoctection/extern/__init__.py +2 -7
- deepdoctection/extern/base.py +339 -134
- deepdoctection/extern/d2detect.py +85 -113
- deepdoctection/extern/deskew.py +14 -11
- deepdoctection/extern/doctrocr.py +141 -130
- deepdoctection/extern/fastlang.py +27 -18
- deepdoctection/extern/hfdetr.py +71 -62
- deepdoctection/extern/hflayoutlm.py +504 -211
- deepdoctection/extern/hflm.py +230 -0
- deepdoctection/extern/model.py +488 -302
- deepdoctection/extern/pdftext.py +23 -19
- deepdoctection/extern/pt/__init__.py +1 -3
- deepdoctection/extern/pt/nms.py +6 -2
- deepdoctection/extern/pt/ptutils.py +29 -19
- deepdoctection/extern/tessocr.py +39 -38
- deepdoctection/extern/texocr.py +18 -18
- deepdoctection/extern/tp/tfutils.py +57 -9
- deepdoctection/extern/tp/tpcompat.py +21 -14
- deepdoctection/extern/tp/tpfrcnn/__init__.py +20 -0
- deepdoctection/extern/tp/tpfrcnn/common.py +7 -3
- deepdoctection/extern/tp/tpfrcnn/config/__init__.py +20 -0
- deepdoctection/extern/tp/tpfrcnn/config/config.py +13 -10
- deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py +20 -0
- deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py +18 -8
- deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py +12 -6
- deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py +14 -9
- deepdoctection/extern/tp/tpfrcnn/modeling/model_cascade.py +8 -5
- deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py +22 -17
- deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py +21 -14
- deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py +19 -11
- deepdoctection/extern/tp/tpfrcnn/modeling/model_rpn.py +15 -10
- deepdoctection/extern/tp/tpfrcnn/predict.py +9 -4
- deepdoctection/extern/tp/tpfrcnn/preproc.py +12 -8
- deepdoctection/extern/tp/tpfrcnn/utils/__init__.py +20 -0
- deepdoctection/extern/tp/tpfrcnn/utils/box_ops.py +10 -2
- deepdoctection/extern/tpdetect.py +45 -53
- deepdoctection/mapper/__init__.py +3 -8
- deepdoctection/mapper/cats.py +27 -29
- deepdoctection/mapper/cocostruct.py +10 -10
- deepdoctection/mapper/d2struct.py +27 -26
- deepdoctection/mapper/hfstruct.py +13 -8
- deepdoctection/mapper/laylmstruct.py +178 -37
- deepdoctection/mapper/maputils.py +12 -11
- deepdoctection/mapper/match.py +2 -2
- deepdoctection/mapper/misc.py +11 -9
- deepdoctection/mapper/pascalstruct.py +4 -4
- deepdoctection/mapper/prodigystruct.py +5 -5
- deepdoctection/mapper/pubstruct.py +84 -92
- deepdoctection/mapper/tpstruct.py +5 -5
- deepdoctection/mapper/xfundstruct.py +33 -33
- deepdoctection/pipe/__init__.py +1 -1
- deepdoctection/pipe/anngen.py +12 -14
- deepdoctection/pipe/base.py +52 -106
- deepdoctection/pipe/common.py +72 -59
- deepdoctection/pipe/concurrency.py +16 -11
- deepdoctection/pipe/doctectionpipe.py +24 -21
- deepdoctection/pipe/language.py +20 -25
- deepdoctection/pipe/layout.py +20 -16
- deepdoctection/pipe/lm.py +75 -105
- deepdoctection/pipe/order.py +194 -89
- deepdoctection/pipe/refine.py +111 -124
- deepdoctection/pipe/segment.py +156 -161
- deepdoctection/pipe/{cell.py → sub_layout.py} +50 -40
- deepdoctection/pipe/text.py +37 -36
- deepdoctection/pipe/transform.py +19 -16
- deepdoctection/train/__init__.py +6 -12
- deepdoctection/train/d2_frcnn_train.py +48 -41
- deepdoctection/train/hf_detr_train.py +41 -30
- deepdoctection/train/hf_layoutlm_train.py +153 -135
- deepdoctection/train/tp_frcnn_train.py +32 -31
- deepdoctection/utils/concurrency.py +1 -1
- deepdoctection/utils/context.py +13 -6
- deepdoctection/utils/develop.py +4 -4
- deepdoctection/utils/env_info.py +87 -125
- deepdoctection/utils/file_utils.py +6 -11
- deepdoctection/utils/fs.py +22 -18
- deepdoctection/utils/identifier.py +2 -2
- deepdoctection/utils/logger.py +16 -15
- deepdoctection/utils/metacfg.py +7 -7
- deepdoctection/utils/mocks.py +93 -0
- deepdoctection/utils/pdf_utils.py +11 -11
- deepdoctection/utils/settings.py +185 -181
- deepdoctection/utils/tqdm.py +1 -1
- deepdoctection/utils/transform.py +14 -9
- deepdoctection/utils/types.py +104 -0
- deepdoctection/utils/utils.py +7 -7
- deepdoctection/utils/viz.py +74 -72
- {deepdoctection-0.31.dist-info → deepdoctection-0.33.dist-info}/METADATA +30 -21
- deepdoctection-0.33.dist-info/RECORD +146 -0
- {deepdoctection-0.31.dist-info → deepdoctection-0.33.dist-info}/WHEEL +1 -1
- deepdoctection/utils/detection_types.py +0 -68
- deepdoctection-0.31.dist-info/RECORD +0 -144
- {deepdoctection-0.31.dist-info → deepdoctection-0.33.dist-info}/LICENSE +0 -0
- {deepdoctection-0.31.dist-info → deepdoctection-0.33.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: deepdoctection
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.33
|
|
4
4
|
Summary: Repository for Document AI
|
|
5
5
|
Home-page: https://github.com/deepdoctection/deepdoctection
|
|
6
6
|
Author: Dr. Janis Meyer
|
|
@@ -9,21 +9,21 @@ 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.
|
|
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
|
-
Requires-Dist: numpy
|
|
26
|
+
Requires-Dist: numpy <2.0,>=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
|
|
@@ -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.
|
|
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,9 +65,10 @@ 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
|
-
Requires-Dist: numpy
|
|
71
|
+
Requires-Dist: numpy <2.0,>=1.21 ; extra == 'pt'
|
|
71
72
|
Requires-Dist: packaging >=20.0 ; extra == 'pt'
|
|
72
73
|
Requires-Dist: Pillow >=10.0.0 ; extra == 'pt'
|
|
73
74
|
Requires-Dist: pypdf >=3.16.0 ; 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.
|
|
83
|
-
Requires-Dist: boto3 ; extra == 'pt'
|
|
84
|
-
Requires-Dist: pdfplumber >=0.
|
|
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,9 +96,10 @@ 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
|
-
Requires-Dist: numpy
|
|
102
|
+
Requires-Dist: numpy <2.0,>=1.21 ; extra == 'tf'
|
|
101
103
|
Requires-Dist: packaging >=20.0 ; extra == 'tf'
|
|
102
104
|
Requires-Dist: Pillow >=10.0.0 ; extra == 'tf'
|
|
103
105
|
Requires-Dist: pypdf >=3.16.0 ; 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.
|
|
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.
|
|
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
|
|
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
|
|
167
|
-
|
|
168
|
-
|
|
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.
|
|
261
|
-
- 1.
|
|
262
|
-
|
|
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=JEx1z6u3QqRbaL5VY-H5Tf2VGCvFHSl4LiOUZSHq0WY,12488
|
|
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=4zzX8EWAzBwt1TU8wKB-HCN6xn27sdIy3W9Rc6vMiCI,19753
|
|
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=MyGA2VWlNMjQdIN_Jd-o0Ec3bDJmjQit4Nv0v43OCSQ,10119
|
|
11
|
+
deepdoctection/dataflow/custom.py,sha256=3CK_1oL9p6nbOq8WtH5_vQUo70_8Z8pXY7kG0OFqzug,6803
|
|
12
|
+
deepdoctection/dataflow/custom_serialize.py,sha256=CKeyw2Ayq_qAl0O5BoKkIOFJgteCt78h9QFTI23XhmQ,22818
|
|
13
|
+
deepdoctection/dataflow/parallel_map.py,sha256=8FhxJBWV-kjJrJ27jQtP3yYF6Ev6rz98worO60oi96c,15837
|
|
14
|
+
deepdoctection/dataflow/serialize.py,sha256=4pYC7m9h53JCu99waVeKpHDpsCDDdYCrSZpP2QYSsgs,4555
|
|
15
|
+
deepdoctection/dataflow/stats.py,sha256=Bsr6v7lcesKXUYtO9wjqlzx_Yq_uyIF3Lel-tQ0i4wI,9619
|
|
16
|
+
deepdoctection/datapoint/__init__.py,sha256=3K406GbOPhoEp8koVaSbMocmSsmWifnSZ1SPb7C1lOY,1643
|
|
17
|
+
deepdoctection/datapoint/annotation.py,sha256=GlFczZynQ_R-GiESFIJsMrZ8YPVEX3-DlQQ4WoYypmM,20598
|
|
18
|
+
deepdoctection/datapoint/box.py,sha256=tkFuVM6xfx2jL7W4UED4qHXV572LSRdIsVJbrEiyIxI,23524
|
|
19
|
+
deepdoctection/datapoint/convert.py,sha256=9L3YS89nGPAV8dqPZ-KOLVxvatj_zax2yP5RD-fuZCU,6718
|
|
20
|
+
deepdoctection/datapoint/image.py,sha256=KeeDEwD5woUVc_ycxYCG7HMWRmGgNZZteSZ-418NMSE,29367
|
|
21
|
+
deepdoctection/datapoint/view.py,sha256=zY5PLbZmGCjM9SGElt-GjeiDxhFtscsK5IvWmDqWz4c,42125
|
|
22
|
+
deepdoctection/datasets/__init__.py,sha256=-A3aR90aDsHPmVM35JavfnQ2itYSCn3ujl4krRni1QU,1076
|
|
23
|
+
deepdoctection/datasets/adapter.py,sha256=Ly_vbOAgVI73V41FUccnSX1ECTOyesW_qsuvQuvOZbw,7796
|
|
24
|
+
deepdoctection/datasets/base.py,sha256=9MRWgTs0hXS-IHsa6J0JHKsmuqvPFTwCmYVnTKWGN4k,22331
|
|
25
|
+
deepdoctection/datasets/dataflow_builder.py,sha256=cYU2zV3gZW2bFvMHimlO9VIl3BAUaCwML08cCIQ8Em4,4107
|
|
26
|
+
deepdoctection/datasets/info.py,sha256=6y5TfiUhQppynbMFP5JmUPk95ggsVCtGIw4dYh2lVus,20501
|
|
27
|
+
deepdoctection/datasets/registry.py,sha256=ZjzVzjsCgNXJuZZZtR98_yKocADmh4EBGV5JqJbGjWk,2543
|
|
28
|
+
deepdoctection/datasets/save.py,sha256=khYQ4t94FOu9RWMimP9E4kASq25f61SIow78NHaX1pg,3349
|
|
29
|
+
deepdoctection/datasets/instances/__init__.py,sha256=XEc_4vT5lDn6bbZID9ujDEumWu8Ec2W-QS4pI_bfWWE,1388
|
|
30
|
+
deepdoctection/datasets/instances/doclaynet.py,sha256=wRZT7wMTilZBLZ1gKY2cWReD1EGT735vOOTy0pD0N6M,12038
|
|
31
|
+
deepdoctection/datasets/instances/fintabnet.py,sha256=qJIlk0HYFKVi9rIdzY5O7iOw_C3REG8S-7goEfV0fFY,12011
|
|
32
|
+
deepdoctection/datasets/instances/funsd.py,sha256=jxxpOq14-S0tX_IpUzKyKc6hWnKL4UUB-Bp7do3MPNY,6973
|
|
33
|
+
deepdoctection/datasets/instances/iiitar13k.py,sha256=CKB9ZduKGBdHK3hiCKfAV7_s6PjEufHJUdj6H6JqED0,6697
|
|
34
|
+
deepdoctection/datasets/instances/layouttest.py,sha256=CbaPKTA2103kMfOAsxGQkJT5xwlUJ104O4HA7Reo_MY,4400
|
|
35
|
+
deepdoctection/datasets/instances/publaynet.py,sha256=aotY3O_W4fx_OVpkeKVukfeBTjiQm92gIaPW6FeGYHw,5238
|
|
36
|
+
deepdoctection/datasets/instances/pubtables1m.py,sha256=UMomvs9X2d2aZhof9Rt42ud_PZyIfC-4j7oR39mTw1I,12297
|
|
37
|
+
deepdoctection/datasets/instances/pubtabnet.py,sha256=l8qxbfKbXp7czJBHrUafK2hXz2qLpzL5Cbu_LsuvZQk,8592
|
|
38
|
+
deepdoctection/datasets/instances/rvlcdip.py,sha256=bRcpE5XcNV0-7C8DHl0WNdzJzLFr6nOMaUU6xXSjeVs,6624
|
|
39
|
+
deepdoctection/datasets/instances/xfund.py,sha256=ZPekdHQSV93IKpdjmUPiiIuTpgEqiVMGYTAWfxTQcK0,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=4bND-xz9AZu9ACYRkEzn9V6Jn8MEiqnF7kxSp4k_baE,19655
|
|
44
|
+
deepdoctection/eval/base.py,sha256=gCvhTdwEaCKplYTWPMjGvtB_0Vbq2KBJWFHq8mMlLPA,4814
|
|
45
|
+
deepdoctection/eval/cocometric.py,sha256=Co7XaLQzp7qxw8UQaG2D68PzY6eA9aRNueeo_zaMJLM,8777
|
|
46
|
+
deepdoctection/eval/eval.py,sha256=pl4PCJZKS1dFepTcOXNJG1iLaMfc7ckKAxTV78Ajptw,19335
|
|
47
|
+
deepdoctection/eval/registry.py,sha256=v4mp-s67vBVRu1nQzuGlYPViQnMSeIXEcF_WmvfUCoU,1051
|
|
48
|
+
deepdoctection/eval/tedsmetric.py,sha256=rKw-734Y9CpBtIfkBSPQF2vAZxnIdWrI9Zc723P7RxI,9529
|
|
49
|
+
deepdoctection/eval/tp_eval_callback.py,sha256=SXsXumoyxq-MIH9Cep5eUOwnNshMbKmC6mYOGwCg0pM,5283
|
|
50
|
+
deepdoctection/extern/__init__.py,sha256=9Iks9b4Q_LynjcV167TVCoK8YsQRUcA2jjmAmDNA_X8,1056
|
|
51
|
+
deepdoctection/extern/base.py,sha256=ajzFzD9BrFwnly4SziN8PadI-PBOzzVRlIGPm_sNllE,24142
|
|
52
|
+
deepdoctection/extern/d2detect.py,sha256=zrKv1yurApnjD7QZIZk_8LYCahjmN82MQUjHjv8zvkQ,22127
|
|
53
|
+
deepdoctection/extern/deskew.py,sha256=sPoixu8S9he-0wbs-jgxtPE2V9BiP4-3uZlb6F5Y1SA,3077
|
|
54
|
+
deepdoctection/extern/doctrocr.py,sha256=T3_tvlih22_dVCBZypS1Y8tjQQB1fkAxIbGdUGHIapQ,24473
|
|
55
|
+
deepdoctection/extern/fastlang.py,sha256=F4gK-SEwcCujjxH327ZDzMGWToJ49xS_dCKcePQ9IlY,4780
|
|
56
|
+
deepdoctection/extern/hfdetr.py,sha256=1NPW_u5eH2tP3ixZ91l4WR-O-wLVcrFsLWA7BqID0oM,12055
|
|
57
|
+
deepdoctection/extern/hflayoutlm.py,sha256=KfoWx9_Rpa1Y2L51HLrYvenfWaTB4SVTmVJH00Cqb-s,56510
|
|
58
|
+
deepdoctection/extern/hflm.py,sha256=kwS6kcSlY_2m9u0RzBLTRq-UMM7c1PhyUaDTvSdejus,9217
|
|
59
|
+
deepdoctection/extern/model.py,sha256=JFSeTb0eVAH1Diosi2_8cB1rwbfL99Ku7JXKBPiWMo8,59815
|
|
60
|
+
deepdoctection/extern/pdftext.py,sha256=9EvDstMBeOeCFXM21wKaj5iTOUJSt8_50RfGdMcMjIA,4048
|
|
61
|
+
deepdoctection/extern/tessocr.py,sha256=GCTcVHm6oOXS2Xq76j-xY9etRDDJA5qfqWJ5AJ-Kn8k,17400
|
|
62
|
+
deepdoctection/extern/texocr.py,sha256=yMt5ZzKtsjd7ogrcNXba7zccGGGF9LXK194EtER6YNQ,5804
|
|
63
|
+
deepdoctection/extern/tpdetect.py,sha256=yAk1duQdoX-_pHLHgvhU7OOSiDy863q6XUMpjpYR734,8477
|
|
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=AerrFR8nCN6-RrTbSqZhH3Q2Cn-WcC5RnE5XO9Pl1IM,1994
|
|
67
|
+
deepdoctection/extern/tp/__init__.py,sha256=8QMkcA7tChCr1QXiA0551lZS2jTsECBrrL2YUanpFAk,706
|
|
68
|
+
deepdoctection/extern/tp/tfutils.py,sha256=U586EuPGDLSuO6hbDrCHKshYoGmuV9WPP1jZjmQW9uw,3553
|
|
69
|
+
deepdoctection/extern/tp/tpcompat.py,sha256=rPW_JrYtz9PbV20dZiMKm6DTrjS1A3rAdhrh8PG9BuM,5461
|
|
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=rMciBHGzNLRax8zpRrCv16lMnDHGimovIqLTp853WtA,12011
|
|
74
|
+
deepdoctection/extern/tp/tpfrcnn/config/__init__.py,sha256=RhJiXId6vUSw_Pi49SPwj0jrf61VxxptXoGeBKtT42M,705
|
|
75
|
+
deepdoctection/extern/tp/tpfrcnn/config/config.py,sha256=-T8AwNAIPR-_5OL1oEqm-Qe9GbN6JjAPVUuUw_XfMVc,11405
|
|
76
|
+
deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py,sha256=RhJiXId6vUSw_Pi49SPwj0jrf61VxxptXoGeBKtT42M,705
|
|
77
|
+
deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py,sha256=H7xoWhRwCh-vlHAL5hCEolKBJ8Y2xe9duZuBuLs0ZwQ,9835
|
|
78
|
+
deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py,sha256=4jgWyja-_V44zJVfK4ySmknhnhqfb9f6ruVwbh387aE,13752
|
|
79
|
+
deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py,sha256=UvZ8_34dNjCvxsTxCJvrlpqUpQb9gWxgwRoIKgedIog,7361
|
|
80
|
+
deepdoctection/extern/tp/tpfrcnn/modeling/model_cascade.py,sha256=plovKReX6rFjnL_ravLUUCZ49ZFni87FlRJGK0fXqco,5777
|
|
81
|
+
deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py,sha256=Ejd0Z2uUrdAfRjXQoS-lBVPukLlw8geP0yXcF61-nk4,11486
|
|
82
|
+
deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py,sha256=KsL08NNy4PEvBu53HV6bMio58oqIfVrcoqpti27pZOI,18166
|
|
83
|
+
deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py,sha256=B-rImWGWLNNe4UPJfhTpi4f1LUMCW8YJAbwoJFiG__o,4966
|
|
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=goPqMCOuo4Lmuow2wKFiK0qcWXvNJkq8gyeXQoAF6Gg,15762
|
|
90
|
+
deepdoctection/mapper/cocostruct.py,sha256=CpmQ6BVbQm_ANpSshtN6io6VFx0UqE4VsRU-HPnxe6g,5827
|
|
91
|
+
deepdoctection/mapper/d2struct.py,sha256=4Djy9lwLpXUYpXmeMI6CzjZWunT41KR3xUKadFc0wAI,8491
|
|
92
|
+
deepdoctection/mapper/hfstruct.py,sha256=2PjGKsYturVJBimLT1CahYh09KSRAFEHz_QNtC162kQ,5551
|
|
93
|
+
deepdoctection/mapper/laylmstruct.py,sha256=QU2pHRRewShaX7rTbIk_mr1FyYfpURV3ply_CjcV8q8,42940
|
|
94
|
+
deepdoctection/mapper/maputils.py,sha256=eI6ZcDg9W5uB6xQNBZpMIdEd86HlCxTtkJuyROdTqiw,8146
|
|
95
|
+
deepdoctection/mapper/match.py,sha256=jd8NtHbePktDE_TQV08L1vLS0JbC7OWBA0P6AikTW6E,7773
|
|
96
|
+
deepdoctection/mapper/misc.py,sha256=Qa2-Qswg1X_k8HDIu2OBQhB9WBr4UXRseUMnyPRFWOg,6523
|
|
97
|
+
deepdoctection/mapper/pascalstruct.py,sha256=TzVU1p0oiw0nOuxTFFbEB9vXJxH1v6VUvTJ7MD0manU,3828
|
|
98
|
+
deepdoctection/mapper/prodigystruct.py,sha256=KzbzIfdmdK3TF4XXX-oUyPALR2ESEUajwqlm6a9Wp5g,6832
|
|
99
|
+
deepdoctection/mapper/pubstruct.py,sha256=YxsrZ-E0pD45Mm_VCPQB9yEgHsTPkw4htt-3DwCRX1k,23361
|
|
100
|
+
deepdoctection/mapper/tpstruct.py,sha256=YNABRibvcISD5Lavg3jouoE4FMdqXEJoM-hNoB_rnww,4481
|
|
101
|
+
deepdoctection/mapper/xfundstruct.py,sha256=_3r3c0K82fnF2h1HxA85h-9ETYrHwcERa6MNc6Ko6Z8,8807
|
|
102
|
+
deepdoctection/pipe/__init__.py,sha256=ywTVoetftdL6plXg2YlBzMfmqBZupq7yXblSVyvvkcQ,1127
|
|
103
|
+
deepdoctection/pipe/anngen.py,sha256=nlEsY7POMqyaSPEJYwp7PuVnmzWq_q7gWol7hCto_Ig,15183
|
|
104
|
+
deepdoctection/pipe/base.py,sha256=KKouaXRBbxsP9PMbHSnDsnGhLYO0acZl35H6aKSxO5Q,12698
|
|
105
|
+
deepdoctection/pipe/common.py,sha256=ZUROMhuSxUNy2SYv02vKYecr7PLrXrvCRbr9Nsud1uA,14856
|
|
106
|
+
deepdoctection/pipe/concurrency.py,sha256=AAKRsVgaBEYNluntbDa46SBF1JZ_XqnWLDSWrNvAzEo,9657
|
|
107
|
+
deepdoctection/pipe/doctectionpipe.py,sha256=I6B6HT_BG2ByQ3Rjsui3-Ct31yLmodx-iuZnujXaiSc,8953
|
|
108
|
+
deepdoctection/pipe/language.py,sha256=5zI0UQC6Fh12_r2pfVL42HoCGz2hpHrOhpXAn5m-rYw,5451
|
|
109
|
+
deepdoctection/pipe/layout.py,sha256=xIhnJpyUSbvLbhTXyAKXY1hmG9352jihGYFSclTH_1g,5567
|
|
110
|
+
deepdoctection/pipe/lm.py,sha256=Sp-b7smeslNDyioEfNjuNBUxAuFKn3-OKpCZkGXri_c,16643
|
|
111
|
+
deepdoctection/pipe/order.py,sha256=PnJZiCnxFluJiECXLTZT0c1Rr66vIRBFraa_G41UA2k,40121
|
|
112
|
+
deepdoctection/pipe/refine.py,sha256=RjaOv5dvVxVrMm_ze-yeAqc46Be2I--7UARLezYbNxA,22250
|
|
113
|
+
deepdoctection/pipe/registry.py,sha256=aFx-Tn0xhVA5l5H18duNW5QoTNKQltybsEUEzsMgUfg,902
|
|
114
|
+
deepdoctection/pipe/segment.py,sha256=Ygx6F27PxBugqruJCVTFq56AwXL1ZfXwTObrchdw5L4,50149
|
|
115
|
+
deepdoctection/pipe/sub_layout.py,sha256=KKnsBclzXQr4VmORJUQz95isnHHJDTjIMqS6kZVJkKo,12659
|
|
116
|
+
deepdoctection/pipe/text.py,sha256=h9q6d3HFOs7LOg-iwdLUPiQxrPqgunBVNmtYMBrfRQE,11180
|
|
117
|
+
deepdoctection/pipe/transform.py,sha256=9Om7X7hJeL4jgUwHM1CHa4sb5v7Qo1PtVG0ls_3nI7w,3798
|
|
118
|
+
deepdoctection/train/__init__.py,sha256=YFTRAZF1F7cEAKTdAIi1BLyYb6rSRcwq09Ui5Lu8d6E,1071
|
|
119
|
+
deepdoctection/train/d2_frcnn_train.py,sha256=sFc_G-mEpaM8d1CCE0_6Gl4nBh11X2RYRBA3p_ylFJQ,16000
|
|
120
|
+
deepdoctection/train/hf_detr_train.py,sha256=8ydysxzOPE_IPoNFGaHb7PbKr9Nbl41rcY4lbylQavU,10783
|
|
121
|
+
deepdoctection/train/hf_layoutlm_train.py,sha256=e3pekLfe2KeYAI04COiTTL3KKiLDaXxTj0A2vwTvYZo,22425
|
|
122
|
+
deepdoctection/train/tp_frcnn_train.py,sha256=pEpXokSVGveqo82pRnhnAmHPmjQ_8wQWpqM4ZyNHJgs,13049
|
|
123
|
+
deepdoctection/utils/__init__.py,sha256=brBceRWeov9WXMiJTjyJOF2rHMP8trGGRRjhMdZ61nI,2371
|
|
124
|
+
deepdoctection/utils/concurrency.py,sha256=nIhpkSncmv0LBB8PtcOLY-BsRGlfcDpz7foVdgzZd20,4598
|
|
125
|
+
deepdoctection/utils/context.py,sha256=VSnJnTtRGuq3w-0-syTf9DXOhR7WsPvWLLWTxKIBYec,4186
|
|
126
|
+
deepdoctection/utils/develop.py,sha256=4HyTarkFbJwctL-Hgu1TU_LSJppHvaroDbcyHsxhIA8,3444
|
|
127
|
+
deepdoctection/utils/env_info.py,sha256=VFQDhRkw9MOizWLU-56vJ5C98fgtWagqEQz8HwigAos,18023
|
|
128
|
+
deepdoctection/utils/error.py,sha256=_3q9VepKfEhsM3H033_Fu0hwBzMSjsWALsjyJbGAZr8,2367
|
|
129
|
+
deepdoctection/utils/file_utils.py,sha256=koYsfHtl0-nh8T9nUb215Rc1X-WDvk2gEjyw-YJVZ34,19019
|
|
130
|
+
deepdoctection/utils/fs.py,sha256=WOeHN-pYUG-yt9Yi5eU1EBy3SZQ3e5LT6qqgVQzXp80,9295
|
|
131
|
+
deepdoctection/utils/identifier.py,sha256=QkNaGGqPynHwDPnd3_m8iur4Cv64rcQa7qolCE7Qphk,2159
|
|
132
|
+
deepdoctection/utils/logger.py,sha256=J0OVKiXP_2A82MWbbJoOeMEJ-75aZu5npgaS_yI6mVA,10003
|
|
133
|
+
deepdoctection/utils/metacfg.py,sha256=AGAE-KOymOLsarpUBBYawpVSXImvJyUeOD4LD2W_7Yo,5196
|
|
134
|
+
deepdoctection/utils/mocks.py,sha256=IkN3-IzAl4eX0ibgKIHg8IY7ykVw6BnpF6XnxKnKaZI,2389
|
|
135
|
+
deepdoctection/utils/pdf_utils.py,sha256=WiSDE9DUjDaES5TjEteGH_noC7DcEsYz8jTb5UfoxN8,7722
|
|
136
|
+
deepdoctection/utils/settings.py,sha256=CCXIbPfmV9QJzLv3WmExcPUl4gKCQB9I-yB7FaeKVLQ,12386
|
|
137
|
+
deepdoctection/utils/tqdm.py,sha256=cBUtR0L1x0KMeYrLP2rrzyzCamCjpQAKroHXLv81_pk,1820
|
|
138
|
+
deepdoctection/utils/transform.py,sha256=3kCgsEeRkG1efCdkfvj7tUFMs-e2jbjbflq826F2GPU,8502
|
|
139
|
+
deepdoctection/utils/types.py,sha256=_3dmPdCIZNLbgU5QP5k_c5phDf18xLe1kYL6t2nM45s,2953
|
|
140
|
+
deepdoctection/utils/utils.py,sha256=ANzyIX6AY1yc-4gcn6yxksV84sPrJDaUurUNVatAFu8,5168
|
|
141
|
+
deepdoctection/utils/viz.py,sha256=Xm6pKlhM29UWBBGZHlWFl9XYFDAqaYDdwHXwe26Hvqo,25728
|
|
142
|
+
deepdoctection-0.33.dist-info/LICENSE,sha256=GQ0rUvuGdrMNEI3iHK5UQx6dIMU1QwAuyXsxUHn5MEQ,11351
|
|
143
|
+
deepdoctection-0.33.dist-info/METADATA,sha256=-8RMxQgtE4tGohMaDsHLUpnQzU9DBbMgAd82HI2ipU0,19047
|
|
144
|
+
deepdoctection-0.33.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
|
145
|
+
deepdoctection-0.33.dist-info/top_level.txt,sha256=hs2DdoOL9h4mnHhmO82BT4pz4QATIoOZ20PZmlnxFI8,15
|
|
146
|
+
deepdoctection-0.33.dist-info/RECORD,,
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# File: detection_types.py
|
|
3
|
-
|
|
4
|
-
# Copyright 2021 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
|
-
Typing sheet for the whole package
|
|
20
|
-
"""
|
|
21
|
-
|
|
22
|
-
import queue
|
|
23
|
-
from pathlib import Path
|
|
24
|
-
from typing import TYPE_CHECKING, Any, Dict, Protocol, Tuple, Type, TypeVar, Union
|
|
25
|
-
|
|
26
|
-
import numpy.typing as npt
|
|
27
|
-
import tqdm
|
|
28
|
-
from numpy import uint8
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
# Type for a general dataclass
|
|
32
|
-
class IsDataclass(Protocol): # pylint: disable=R0903
|
|
33
|
-
"""
|
|
34
|
-
type hint for general dataclass
|
|
35
|
-
"""
|
|
36
|
-
|
|
37
|
-
__dataclass_fields__: Dict[Any, Any]
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
# Type for category dict of the DatasetCategories class
|
|
41
|
-
KeyValue = Union[str, int]
|
|
42
|
-
|
|
43
|
-
# Numpy image type
|
|
44
|
-
ImageType = npt.NDArray[uint8]
|
|
45
|
-
|
|
46
|
-
# typing for curry decorator
|
|
47
|
-
DP = TypeVar("DP")
|
|
48
|
-
S = TypeVar("S")
|
|
49
|
-
T = TypeVar("T")
|
|
50
|
-
|
|
51
|
-
# Some type hints that must be distinguished when runnning mypy and linters
|
|
52
|
-
if TYPE_CHECKING:
|
|
53
|
-
QueueType = queue.Queue[Any] # pylint: disable=E1136
|
|
54
|
-
TqdmType = tqdm.tqdm[Any] # pylint: disable=E1136
|
|
55
|
-
BaseExceptionType = Type[BaseException]
|
|
56
|
-
else:
|
|
57
|
-
BaseExceptionType = bool
|
|
58
|
-
QueueType = queue.Queue
|
|
59
|
-
TqdmType = tqdm.tqdm
|
|
60
|
-
|
|
61
|
-
JsonDict = Dict[str, Any]
|
|
62
|
-
|
|
63
|
-
# Type for requirements. A requirement is a Tuple of string and a callable that returns True if the requirement is
|
|
64
|
-
# available
|
|
65
|
-
Requirement = Tuple[str, bool, str]
|
|
66
|
-
|
|
67
|
-
# Pathlike, use this typing for everything where a path (absolute/relative) is involved
|
|
68
|
-
Pathlike = Union[str, Path]
|
|
@@ -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,,
|
|
File without changes
|
|
File without changes
|