deepdoctection 0.30__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.
- deepdoctection/__init__.py +38 -29
- deepdoctection/analyzer/dd.py +36 -29
- deepdoctection/configs/conf_dd_one.yaml +34 -31
- deepdoctection/dataflow/base.py +0 -19
- deepdoctection/dataflow/custom.py +4 -3
- deepdoctection/dataflow/custom_serialize.py +14 -5
- deepdoctection/dataflow/parallel_map.py +12 -11
- deepdoctection/dataflow/serialize.py +5 -4
- deepdoctection/datapoint/annotation.py +35 -13
- deepdoctection/datapoint/box.py +3 -5
- deepdoctection/datapoint/convert.py +3 -1
- deepdoctection/datapoint/image.py +79 -36
- deepdoctection/datapoint/view.py +152 -49
- deepdoctection/datasets/__init__.py +1 -4
- deepdoctection/datasets/adapter.py +6 -3
- deepdoctection/datasets/base.py +86 -11
- deepdoctection/datasets/dataflow_builder.py +1 -1
- deepdoctection/datasets/info.py +4 -4
- deepdoctection/datasets/instances/doclaynet.py +3 -2
- deepdoctection/datasets/instances/fintabnet.py +2 -1
- deepdoctection/datasets/instances/funsd.py +2 -1
- deepdoctection/datasets/instances/iiitar13k.py +5 -2
- deepdoctection/datasets/instances/layouttest.py +4 -8
- deepdoctection/datasets/instances/publaynet.py +2 -2
- deepdoctection/datasets/instances/pubtables1m.py +6 -3
- deepdoctection/datasets/instances/pubtabnet.py +2 -1
- deepdoctection/datasets/instances/rvlcdip.py +2 -1
- deepdoctection/datasets/instances/xfund.py +2 -1
- deepdoctection/eval/__init__.py +1 -4
- deepdoctection/eval/accmetric.py +1 -1
- deepdoctection/eval/base.py +5 -4
- deepdoctection/eval/cocometric.py +2 -1
- deepdoctection/eval/eval.py +19 -15
- deepdoctection/eval/tedsmetric.py +14 -11
- deepdoctection/eval/tp_eval_callback.py +14 -7
- deepdoctection/extern/__init__.py +2 -7
- deepdoctection/extern/base.py +39 -13
- deepdoctection/extern/d2detect.py +182 -90
- deepdoctection/extern/deskew.py +36 -9
- deepdoctection/extern/doctrocr.py +265 -83
- deepdoctection/extern/fastlang.py +49 -9
- deepdoctection/extern/hfdetr.py +106 -55
- deepdoctection/extern/hflayoutlm.py +441 -122
- deepdoctection/extern/hflm.py +225 -0
- deepdoctection/extern/model.py +56 -47
- deepdoctection/extern/pdftext.py +10 -5
- deepdoctection/extern/pt/__init__.py +1 -3
- deepdoctection/extern/pt/nms.py +6 -2
- deepdoctection/extern/pt/ptutils.py +27 -18
- deepdoctection/extern/tessocr.py +134 -22
- deepdoctection/extern/texocr.py +6 -2
- deepdoctection/extern/tp/tfutils.py +43 -9
- deepdoctection/extern/tp/tpcompat.py +14 -11
- 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 +9 -6
- deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py +20 -0
- deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py +17 -7
- deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py +12 -6
- deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py +9 -4
- deepdoctection/extern/tp/tpfrcnn/modeling/model_cascade.py +8 -5
- deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py +16 -11
- deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py +17 -10
- deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py +14 -8
- deepdoctection/extern/tp/tpfrcnn/modeling/model_rpn.py +15 -10
- deepdoctection/extern/tp/tpfrcnn/predict.py +9 -4
- deepdoctection/extern/tp/tpfrcnn/preproc.py +8 -9
- deepdoctection/extern/tp/tpfrcnn/utils/__init__.py +20 -0
- deepdoctection/extern/tp/tpfrcnn/utils/box_ops.py +10 -2
- deepdoctection/extern/tpdetect.py +54 -30
- deepdoctection/mapper/__init__.py +3 -8
- deepdoctection/mapper/d2struct.py +9 -7
- deepdoctection/mapper/hfstruct.py +7 -2
- deepdoctection/mapper/laylmstruct.py +164 -21
- deepdoctection/mapper/maputils.py +16 -3
- deepdoctection/mapper/misc.py +6 -3
- deepdoctection/mapper/prodigystruct.py +1 -1
- deepdoctection/mapper/pubstruct.py +10 -10
- deepdoctection/mapper/tpstruct.py +3 -3
- deepdoctection/pipe/__init__.py +1 -1
- deepdoctection/pipe/anngen.py +35 -8
- deepdoctection/pipe/base.py +53 -19
- deepdoctection/pipe/common.py +23 -13
- deepdoctection/pipe/concurrency.py +2 -1
- deepdoctection/pipe/doctectionpipe.py +2 -2
- deepdoctection/pipe/language.py +3 -2
- deepdoctection/pipe/layout.py +6 -3
- deepdoctection/pipe/lm.py +34 -66
- deepdoctection/pipe/order.py +142 -35
- deepdoctection/pipe/refine.py +26 -24
- deepdoctection/pipe/segment.py +21 -16
- deepdoctection/pipe/{cell.py → sub_layout.py} +30 -9
- deepdoctection/pipe/text.py +14 -8
- deepdoctection/pipe/transform.py +16 -9
- deepdoctection/train/__init__.py +6 -12
- deepdoctection/train/d2_frcnn_train.py +36 -28
- deepdoctection/train/hf_detr_train.py +26 -17
- deepdoctection/train/hf_layoutlm_train.py +133 -111
- deepdoctection/train/tp_frcnn_train.py +21 -19
- deepdoctection/utils/__init__.py +3 -0
- deepdoctection/utils/concurrency.py +1 -1
- deepdoctection/utils/context.py +2 -2
- deepdoctection/utils/env_info.py +41 -84
- deepdoctection/utils/error.py +84 -0
- deepdoctection/utils/file_utils.py +4 -15
- deepdoctection/utils/fs.py +7 -7
- deepdoctection/utils/logger.py +1 -0
- deepdoctection/utils/mocks.py +93 -0
- deepdoctection/utils/pdf_utils.py +5 -4
- deepdoctection/utils/settings.py +6 -1
- deepdoctection/utils/transform.py +1 -1
- deepdoctection/utils/utils.py +0 -6
- deepdoctection/utils/viz.py +48 -5
- {deepdoctection-0.30.dist-info → deepdoctection-0.32.dist-info}/METADATA +57 -73
- deepdoctection-0.32.dist-info/RECORD +146 -0
- {deepdoctection-0.30.dist-info → deepdoctection-0.32.dist-info}/WHEEL +1 -1
- deepdoctection-0.30.dist-info/RECORD +0 -143
- {deepdoctection-0.30.dist-info → deepdoctection-0.32.dist-info}/LICENSE +0 -0
- {deepdoctection-0.30.dist-info → deepdoctection-0.32.dist-info}/top_level.txt +0 -0
deepdoctection/utils/viz.py
CHANGED
|
@@ -34,16 +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
|
-
from .
|
|
42
|
+
from .error import DependencyError
|
|
43
|
+
from .file_utils import get_opencv_requirement, get_pillow_requirement
|
|
42
44
|
|
|
43
|
-
|
|
45
|
+
with try_import() as cv2_import_guard:
|
|
44
46
|
import cv2
|
|
45
47
|
|
|
46
|
-
|
|
48
|
+
with try_import() as pil_import_guard:
|
|
47
49
|
from PIL import Image, ImageDraw
|
|
48
50
|
|
|
49
51
|
|
|
@@ -307,6 +309,7 @@ class VizPackageHandler:
|
|
|
307
309
|
"draw_text": "_cv2_draw_text",
|
|
308
310
|
"interactive_imshow": "_cv2_interactive_imshow",
|
|
309
311
|
"encode": "_cv2_encode",
|
|
312
|
+
"rotate_image": "_cv2_rotate_image",
|
|
310
313
|
},
|
|
311
314
|
"pillow": {
|
|
312
315
|
"read_image": "_pillow_read_image",
|
|
@@ -319,6 +322,7 @@ class VizPackageHandler:
|
|
|
319
322
|
"draw_text": "_pillow_draw_text",
|
|
320
323
|
"interactive_imshow": "_pillow_interactive_imshow",
|
|
321
324
|
"encode": "_pillow_encode",
|
|
325
|
+
"rotate_image": "_pillow_rotate_image",
|
|
322
326
|
},
|
|
323
327
|
}
|
|
324
328
|
|
|
@@ -352,12 +356,12 @@ class VizPackageHandler:
|
|
|
352
356
|
if maybe_cv2:
|
|
353
357
|
requirements = get_opencv_requirement()
|
|
354
358
|
if not requirements[1]:
|
|
355
|
-
raise
|
|
359
|
+
raise DependencyError(requirements[2])
|
|
356
360
|
return maybe_cv2
|
|
357
361
|
|
|
358
362
|
requirements = get_pillow_requirement()
|
|
359
363
|
if not requirements[1]:
|
|
360
|
-
raise
|
|
364
|
+
raise DependencyError(requirements[2])
|
|
361
365
|
return "pillow"
|
|
362
366
|
|
|
363
367
|
def _set_vars(self, package: str) -> None:
|
|
@@ -690,6 +694,45 @@ class VizPackageHandler:
|
|
|
690
694
|
pil_image = Image.fromarray(np.uint8(np_image[:, :, ::-1]))
|
|
691
695
|
pil_image.show(name)
|
|
692
696
|
|
|
697
|
+
def rotate_image(self, np_image: ImageType, angle: int) -> ImageType:
|
|
698
|
+
"""Rotating an image by some angle"""
|
|
699
|
+
return getattr(self, self.pkg_func_dict["rotate_image"])(np_image, angle)
|
|
700
|
+
|
|
701
|
+
@staticmethod
|
|
702
|
+
def _cv2_rotate_image(np_image: ImageType, angle: float) -> ImageType:
|
|
703
|
+
# copy & paste from https://stackoverflow.com/questions/43892506
|
|
704
|
+
# /opencv-python-rotate-image-without-cropping-sides
|
|
705
|
+
|
|
706
|
+
height, width = np_image.shape[:2]
|
|
707
|
+
image_center = (width / 2, height / 2)
|
|
708
|
+
rotation_mat = cv2.getRotationMatrix2D(center=image_center, angle=angle, scale=1.0)
|
|
709
|
+
|
|
710
|
+
# rotation calculates the cos and sin, taking absolutes of those.
|
|
711
|
+
abs_cos = abs(rotation_mat[0, 0])
|
|
712
|
+
abs_sin = abs(rotation_mat[0, 1])
|
|
713
|
+
|
|
714
|
+
# find the new width and height bounds
|
|
715
|
+
bound_w = int(height * abs_sin + width * abs_cos)
|
|
716
|
+
bound_h = int(height * abs_cos + width * abs_sin)
|
|
717
|
+
|
|
718
|
+
# subtract old image center (bringing image back to origo) and adding the new image center coordinates
|
|
719
|
+
rotation_mat[0, 2] += bound_w / 2 - image_center[0]
|
|
720
|
+
rotation_mat[1, 2] += bound_h / 2 - image_center[1]
|
|
721
|
+
|
|
722
|
+
np_image = cv2.warpAffine( # type: ignore
|
|
723
|
+
src=np_image,
|
|
724
|
+
M=rotation_mat,
|
|
725
|
+
dsize=(bound_w, bound_h),
|
|
726
|
+
)
|
|
727
|
+
|
|
728
|
+
return np_image
|
|
729
|
+
|
|
730
|
+
@staticmethod
|
|
731
|
+
def _pillow_rotate_image(np_image: ImageType, angle: int) -> ImageType:
|
|
732
|
+
pil_image = Image.fromarray(np.uint8(np_image[:, :, ::-1]))
|
|
733
|
+
pil_image_rotated = pil_image.rotate(angle, expand=True)
|
|
734
|
+
return np.array(pil_image_rotated)[:, :, ::-1]
|
|
735
|
+
|
|
693
736
|
|
|
694
737
|
auto_select_viz_library()
|
|
695
738
|
viz_handler = VizPackageHandler()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: deepdoctection
|
|
3
|
-
Version: 0.
|
|
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,25 +9,25 @@ 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
|
-
Requires-Dist: catalogue ==2.0.
|
|
19
|
+
Requires-Dist: catalogue ==2.0.10
|
|
21
20
|
Requires-Dist: huggingface-hub >=0.12.0
|
|
22
|
-
Requires-Dist: importlib-metadata >=
|
|
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
|
|
27
27
|
Requires-Dist: packaging >=20.0
|
|
28
28
|
Requires-Dist: Pillow >=10.0.0
|
|
29
29
|
Requires-Dist: pypdf >=3.16.0
|
|
30
|
-
Requires-Dist: pyyaml
|
|
30
|
+
Requires-Dist: pyyaml >=6.0.1
|
|
31
31
|
Requires-Dist: pyzmq >=16
|
|
32
32
|
Requires-Dist: termcolor >=1.1
|
|
33
33
|
Requires-Dist: tabulate >=0.7.7
|
|
@@ -36,113 +36,88 @@ Provides-Extra: dev
|
|
|
36
36
|
Requires-Dist: python-dotenv ==1.0.0 ; extra == 'dev'
|
|
37
37
|
Requires-Dist: click ; extra == 'dev'
|
|
38
38
|
Requires-Dist: black ==23.7.0 ; extra == 'dev'
|
|
39
|
-
Requires-Dist: isort ; extra == 'dev'
|
|
39
|
+
Requires-Dist: isort ==5.13.2 ; extra == 'dev'
|
|
40
40
|
Requires-Dist: pylint ==2.17.4 ; extra == 'dev'
|
|
41
41
|
Requires-Dist: mypy ==1.4.1 ; extra == 'dev'
|
|
42
42
|
Requires-Dist: wandb ; extra == 'dev'
|
|
43
|
-
Requires-Dist: types-PyYAML ; extra == 'dev'
|
|
44
|
-
Requires-Dist: types-termcolor
|
|
45
|
-
Requires-Dist: types-tabulate ; extra == 'dev'
|
|
46
|
-
Requires-Dist: types-tqdm ; extra == 'dev'
|
|
47
|
-
Requires-Dist: lxml-stubs ; extra == 'dev'
|
|
48
|
-
Requires-Dist: types-Pillow ; extra == 'dev'
|
|
49
|
-
Requires-Dist: types-urllib3 ; extra == 'dev'
|
|
43
|
+
Requires-Dist: types-PyYAML >=6.0.12.12 ; extra == 'dev'
|
|
44
|
+
Requires-Dist: types-termcolor >=1.1.3 ; extra == 'dev'
|
|
45
|
+
Requires-Dist: types-tabulate >=0.9.0.3 ; extra == 'dev'
|
|
46
|
+
Requires-Dist: types-tqdm >=4.66.0.5 ; extra == 'dev'
|
|
47
|
+
Requires-Dist: lxml-stubs >=0.5.1 ; extra == 'dev'
|
|
48
|
+
Requires-Dist: types-Pillow >=10.2.0.20240406 ; extra == 'dev'
|
|
49
|
+
Requires-Dist: types-urllib3 >=1.26.25.14 ; extra == 'dev'
|
|
50
50
|
Provides-Extra: docs
|
|
51
|
-
Requires-Dist: tensorpack ; extra == 'docs'
|
|
52
|
-
Requires-Dist: boto3 ; extra == 'docs'
|
|
51
|
+
Requires-Dist: tensorpack ==0.11 ; extra == 'docs'
|
|
52
|
+
Requires-Dist: boto3 ==1.34.102 ; extra == 'docs'
|
|
53
53
|
Requires-Dist: transformers >=4.36.0 ; extra == 'docs'
|
|
54
|
-
Requires-Dist: accelerate ; extra == 'docs'
|
|
55
|
-
Requires-Dist: pdfplumber >=0.
|
|
54
|
+
Requires-Dist: accelerate >=0.29.1 ; extra == 'docs'
|
|
55
|
+
Requires-Dist: pdfplumber >=0.11.0 ; extra == 'docs'
|
|
56
56
|
Requires-Dist: lxml >=4.9.1 ; extra == 'docs'
|
|
57
|
-
Requires-Dist: lxml-stubs ; extra == 'docs'
|
|
58
|
-
Requires-Dist: jdeskew ; extra == 'docs'
|
|
57
|
+
Requires-Dist: lxml-stubs >=0.5.1 ; extra == 'docs'
|
|
58
|
+
Requires-Dist: jdeskew >=0.2.2 ; extra == 'docs'
|
|
59
59
|
Requires-Dist: jinja2 ==3.0.3 ; extra == 'docs'
|
|
60
60
|
Requires-Dist: mkdocs-material ; extra == 'docs'
|
|
61
61
|
Requires-Dist: mkdocstrings-python ; extra == 'docs'
|
|
62
62
|
Requires-Dist: griffe ==0.25.0 ; extra == 'docs'
|
|
63
|
-
Provides-Extra: hf
|
|
64
|
-
Requires-Dist: catalogue ==2.0.7 ; extra == 'hf'
|
|
65
|
-
Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'hf'
|
|
66
|
-
Requires-Dist: importlib-metadata >=4.11.2 ; extra == 'hf'
|
|
67
|
-
Requires-Dist: jsonlines ==3.1.0 ; extra == 'hf'
|
|
68
|
-
Requires-Dist: mock ==4.0.3 ; extra == 'hf'
|
|
69
|
-
Requires-Dist: networkx >=2.7.1 ; extra == 'hf'
|
|
70
|
-
Requires-Dist: numpy >=1.21 ; extra == 'hf'
|
|
71
|
-
Requires-Dist: packaging >=20.0 ; extra == 'hf'
|
|
72
|
-
Requires-Dist: Pillow >=10.0.0 ; extra == 'hf'
|
|
73
|
-
Requires-Dist: pypdf >=3.16.0 ; extra == 'hf'
|
|
74
|
-
Requires-Dist: pyyaml ==6.0 ; extra == 'hf'
|
|
75
|
-
Requires-Dist: pyzmq >=16 ; extra == 'hf'
|
|
76
|
-
Requires-Dist: termcolor >=1.1 ; extra == 'hf'
|
|
77
|
-
Requires-Dist: tabulate >=0.7.7 ; extra == 'hf'
|
|
78
|
-
Requires-Dist: tqdm ==4.64.0 ; extra == 'hf'
|
|
79
|
-
Requires-Dist: timm ; extra == 'hf'
|
|
80
|
-
Requires-Dist: transformers >=4.36.0 ; extra == 'hf'
|
|
81
|
-
Requires-Dist: accelerate ; extra == 'hf'
|
|
82
|
-
Requires-Dist: python-doctr ==0.7.0 ; extra == 'hf'
|
|
83
|
-
Requires-Dist: boto3 ; extra == 'hf'
|
|
84
|
-
Requires-Dist: pdfplumber >=0.7.1 ; extra == 'hf'
|
|
85
|
-
Requires-Dist: fasttext ; extra == 'hf'
|
|
86
|
-
Requires-Dist: jdeskew ; extra == 'hf'
|
|
87
|
-
Requires-Dist: apted ==1.0.3 ; extra == 'hf'
|
|
88
|
-
Requires-Dist: distance ==0.1.3 ; extra == 'hf'
|
|
89
|
-
Requires-Dist: lxml >=4.9.1 ; extra == 'hf'
|
|
90
63
|
Provides-Extra: pt
|
|
91
|
-
Requires-Dist: catalogue ==2.0.
|
|
64
|
+
Requires-Dist: catalogue ==2.0.10 ; extra == 'pt'
|
|
92
65
|
Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'pt'
|
|
93
|
-
Requires-Dist: importlib-metadata >=
|
|
66
|
+
Requires-Dist: importlib-metadata >=5.0.0 ; extra == 'pt'
|
|
94
67
|
Requires-Dist: jsonlines ==3.1.0 ; extra == 'pt'
|
|
68
|
+
Requires-Dist: lazy-imports ==0.3.1 ; extra == 'pt'
|
|
95
69
|
Requires-Dist: mock ==4.0.3 ; extra == 'pt'
|
|
96
70
|
Requires-Dist: networkx >=2.7.1 ; extra == 'pt'
|
|
97
71
|
Requires-Dist: numpy >=1.21 ; extra == 'pt'
|
|
98
72
|
Requires-Dist: packaging >=20.0 ; extra == 'pt'
|
|
99
73
|
Requires-Dist: Pillow >=10.0.0 ; extra == 'pt'
|
|
100
74
|
Requires-Dist: pypdf >=3.16.0 ; extra == 'pt'
|
|
101
|
-
Requires-Dist: pyyaml
|
|
75
|
+
Requires-Dist: pyyaml >=6.0.1 ; extra == 'pt'
|
|
102
76
|
Requires-Dist: pyzmq >=16 ; extra == 'pt'
|
|
103
77
|
Requires-Dist: termcolor >=1.1 ; extra == 'pt'
|
|
104
78
|
Requires-Dist: tabulate >=0.7.7 ; extra == 'pt'
|
|
105
79
|
Requires-Dist: tqdm ==4.64.0 ; extra == 'pt'
|
|
106
|
-
Requires-Dist: timm ; extra == 'pt'
|
|
80
|
+
Requires-Dist: timm >=0.9.16 ; extra == 'pt'
|
|
107
81
|
Requires-Dist: transformers >=4.36.0 ; extra == 'pt'
|
|
108
|
-
Requires-Dist: accelerate ; extra == 'pt'
|
|
109
|
-
Requires-Dist: python-doctr ==0.
|
|
110
|
-
Requires-Dist: boto3 ; extra == 'pt'
|
|
111
|
-
Requires-Dist: pdfplumber >=0.
|
|
112
|
-
Requires-Dist: fasttext ; extra == 'pt'
|
|
113
|
-
Requires-Dist: jdeskew ; extra == 'pt'
|
|
82
|
+
Requires-Dist: accelerate >=0.29.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'
|
|
86
|
+
Requires-Dist: fasttext ==0.9.2 ; extra == 'pt'
|
|
87
|
+
Requires-Dist: jdeskew >=0.2.2 ; extra == 'pt'
|
|
114
88
|
Requires-Dist: apted ==1.0.3 ; extra == 'pt'
|
|
115
89
|
Requires-Dist: distance ==0.1.3 ; extra == 'pt'
|
|
116
90
|
Requires-Dist: lxml >=4.9.1 ; extra == 'pt'
|
|
117
91
|
Provides-Extra: test
|
|
118
|
-
Requires-Dist: pytest ; extra == 'test'
|
|
92
|
+
Requires-Dist: pytest ==8.0.2 ; extra == 'test'
|
|
119
93
|
Requires-Dist: pytest-cov ; extra == 'test'
|
|
120
94
|
Provides-Extra: tf
|
|
121
|
-
Requires-Dist: catalogue ==2.0.
|
|
95
|
+
Requires-Dist: catalogue ==2.0.10 ; extra == 'tf'
|
|
122
96
|
Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'tf'
|
|
123
|
-
Requires-Dist: importlib-metadata >=
|
|
97
|
+
Requires-Dist: importlib-metadata >=5.0.0 ; extra == 'tf'
|
|
124
98
|
Requires-Dist: jsonlines ==3.1.0 ; extra == 'tf'
|
|
99
|
+
Requires-Dist: lazy-imports ==0.3.1 ; extra == 'tf'
|
|
125
100
|
Requires-Dist: mock ==4.0.3 ; extra == 'tf'
|
|
126
101
|
Requires-Dist: networkx >=2.7.1 ; extra == 'tf'
|
|
127
102
|
Requires-Dist: numpy >=1.21 ; extra == 'tf'
|
|
128
103
|
Requires-Dist: packaging >=20.0 ; extra == 'tf'
|
|
129
104
|
Requires-Dist: Pillow >=10.0.0 ; extra == 'tf'
|
|
130
105
|
Requires-Dist: pypdf >=3.16.0 ; extra == 'tf'
|
|
131
|
-
Requires-Dist: pyyaml
|
|
106
|
+
Requires-Dist: pyyaml >=6.0.1 ; extra == 'tf'
|
|
132
107
|
Requires-Dist: pyzmq >=16 ; extra == 'tf'
|
|
133
108
|
Requires-Dist: termcolor >=1.1 ; extra == 'tf'
|
|
134
109
|
Requires-Dist: tabulate >=0.7.7 ; extra == 'tf'
|
|
135
110
|
Requires-Dist: tqdm ==4.64.0 ; extra == 'tf'
|
|
136
|
-
Requires-Dist: tensorpack ; extra == 'tf'
|
|
111
|
+
Requires-Dist: tensorpack ==0.11 ; extra == 'tf'
|
|
137
112
|
Requires-Dist: protobuf ==3.20.1 ; extra == 'tf'
|
|
138
113
|
Requires-Dist: tensorflow-addons >=0.17.1 ; extra == 'tf'
|
|
139
114
|
Requires-Dist: tf2onnx >=1.9.2 ; extra == 'tf'
|
|
140
|
-
Requires-Dist: python-doctr ==0.
|
|
115
|
+
Requires-Dist: python-doctr ==0.8.1 ; extra == 'tf'
|
|
141
116
|
Requires-Dist: pycocotools >=2.0.2 ; extra == 'tf'
|
|
142
|
-
Requires-Dist: boto3 ; extra == 'tf'
|
|
143
|
-
Requires-Dist: pdfplumber >=0.
|
|
144
|
-
Requires-Dist: fasttext ; extra == 'tf'
|
|
145
|
-
Requires-Dist: jdeskew ; extra == 'tf'
|
|
117
|
+
Requires-Dist: boto3 ==1.34.102 ; extra == 'tf'
|
|
118
|
+
Requires-Dist: pdfplumber >=0.11.0 ; extra == 'tf'
|
|
119
|
+
Requires-Dist: fasttext ==0.9.2 ; extra == 'tf'
|
|
120
|
+
Requires-Dist: jdeskew >=0.2.2 ; extra == 'tf'
|
|
146
121
|
Requires-Dist: apted ==1.0.3 ; extra == 'tf'
|
|
147
122
|
Requires-Dist: distance ==0.1.3 ; extra == 'tf'
|
|
148
123
|
Requires-Dist: lxml >=4.9.1 ; extra == 'tf'
|
|
@@ -180,7 +155,8 @@ pipelines. Its core function does not depend on any specific deep learning libra
|
|
|
180
155
|
- Text mining for native PDFs with [**pdfplumber**](https://github.com/jsvine/pdfplumber),
|
|
181
156
|
- Language detection with [**fastText**](https://github.com/facebookresearch/fastText),
|
|
182
157
|
- Deskewing and rotating images with [**jdeskew**](https://github.com/phamquiluan/jdeskew).
|
|
183
|
-
- 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).
|
|
184
160
|
(Yes, you can use any LayoutLM-model with any of the provided OCR-or pdfplumber tools straight away!).
|
|
185
161
|
- Table detection and table structure recognition with
|
|
186
162
|
[**table-transformer**](https://github.com/microsoft/table-transformer).
|
|
@@ -190,8 +166,16 @@ pipelines. Its core function does not depend on any specific deep learning libra
|
|
|
190
166
|
- Comprehensive configuration of **analyzer** like choosing different models, output parsing, OCR selection.
|
|
191
167
|
Check this [notebook](https://github.com/deepdoctection/notebooks/blob/main/Analyzer_Configuration.ipynb) or the
|
|
192
168
|
[docs](https://deepdoctection.readthedocs.io/en/latest/tutorials/analyzer_configuration_notebook/) for more infos.
|
|
193
|
-
- Document layout analysis and table recognition now runs with
|
|
194
|
-
|
|
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)
|
|
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.
|
|
195
179
|
|
|
196
180
|
**deep**doctection provides on top of that methods for pre-processing inputs to models like cropping or resizing and to
|
|
197
181
|
post-process results, like validating duplicate outputs, relating words to detected layout segments or ordering words
|
|
@@ -282,9 +266,9 @@ Everything in the overview listed below the **deep**doctection layer are necessa
|
|
|
282
266
|
separately.
|
|
283
267
|
|
|
284
268
|
- Linux or macOS. (Windows is not supported but there is a [Dockerfile](./docker/pytorch-cpu-jupyter/Dockerfile) available)
|
|
285
|
-
- Python >= 3.
|
|
286
|
-
- 1.
|
|
287
|
-
|
|
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.
|
|
288
272
|
- **deep**doctection uses Python wrappers for [Poppler](https://poppler.freedesktop.org/) to convert PDF documents into
|
|
289
273
|
images.
|
|
290
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,143 +0,0 @@
|
|
|
1
|
-
deepdoctection/__init__.py,sha256=o2osznwJl8PmArjoZeD2EeyyjL9L9kS_U-vfCiV58co,12894
|
|
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=Hq43Msx4Nd5rUaxBjAEZlO4I3S5wfwXreeVswRri700,19017
|
|
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=0TxY5R7zNByUJNgut6FqXwX7_6fztj11r5U1-4FcWW8,6806
|
|
10
|
-
deepdoctection/dataflow/common.py,sha256=zujtMO55s4BrG_i1m2Xzwm5h-0bAEgYDl-TNjtgjf10,10018
|
|
11
|
-
deepdoctection/dataflow/custom.py,sha256=CylSVM0usOBfcmPd92uRw7jJUnaOs8NLezh7Rs3kzGM,6769
|
|
12
|
-
deepdoctection/dataflow/custom_serialize.py,sha256=l_5gOfORyo6JDblJH4ETBwp3tDs6FfMui1lmrtDWUG0,20542
|
|
13
|
-
deepdoctection/dataflow/parallel_map.py,sha256=rCNnuNftBCV6Ub9Df8WIL3biEzCAMtHoNKr0NZn02RQ,15756
|
|
14
|
-
deepdoctection/dataflow/serialize.py,sha256=VJfgUZS2aLL6__NLcABdYU0fsV_RNInKplaJZG7zKrA,4526
|
|
15
|
-
deepdoctection/dataflow/stats.py,sha256=8g1uZXslh-GuH6rJLL6qScYUaZ0TLj8QI5ov2Q8kTE4,9626
|
|
16
|
-
deepdoctection/datapoint/__init__.py,sha256=3K406GbOPhoEp8koVaSbMocmSsmWifnSZ1SPb7C1lOY,1643
|
|
17
|
-
deepdoctection/datapoint/annotation.py,sha256=LGcqNkCMOpW8LaJNLhNjcGTWl7iAbQhu7l6eJYcU8-A,20021
|
|
18
|
-
deepdoctection/datapoint/box.py,sha256=Izh_r_c1LFOrALaXtY5stqfeSIgcLofJAwiwJ8v01Sg,23538
|
|
19
|
-
deepdoctection/datapoint/convert.py,sha256=m3ofP4H6dAxN8V_sPD8SZNHLUvEX_UkZYoacqxdVXGQ,6651
|
|
20
|
-
deepdoctection/datapoint/image.py,sha256=aLwku57ID6GFidsFgScsAtY2jHM7g9DoKuQac4sN_L4,27148
|
|
21
|
-
deepdoctection/datapoint/view.py,sha256=C3BqHLA306g7zogxkikNuYdpQdAOU1hzikK60gRVyUM,37349
|
|
22
|
-
deepdoctection/datasets/__init__.py,sha256=rmqh0ASQhEajiOkFVGFxLGPjOWSPFpVTja1brwzVqHQ,1154
|
|
23
|
-
deepdoctection/datasets/adapter.py,sha256=bjHhJnrsXwKKdbnq9xSgft42ba6EEnYB3qvVIPo1QR8,7404
|
|
24
|
-
deepdoctection/datasets/base.py,sha256=N__QH1z41Fx4vlQ88sQ_MfDFd2wyM-uMxSZ8I2dJknU,18947
|
|
25
|
-
deepdoctection/datasets/dataflow_builder.py,sha256=OxbnivLvWiO_5a9Vkhae2kLURWxkePfDPKmWmCtqOrY,4099
|
|
26
|
-
deepdoctection/datasets/info.py,sha256=z3WW4cJ1oqg8hdVgGdocsyEuis7qAoGEOKN0WOcJ_A4,20603
|
|
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=SK9cUEq9U-J3JD89pa23rk4uAeaFPh98fHh5cHdkJiM,4675
|
|
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=J2GDwf4eLBHfzMKlmzm8pe6BkFoB1Huh3dMSJK9uH3c,19638
|
|
44
|
-
deepdoctection/eval/base.py,sha256=XmEIBKEXvfO42Hu7idDu8g3EQ-__G7ycMuDArntUwDw,4803
|
|
45
|
-
deepdoctection/eval/cocometric.py,sha256=iDZ8RmvrS3TmaRBDrYb4plbmF108ROpdsZuvj0y02vA,8755
|
|
46
|
-
deepdoctection/eval/eval.py,sha256=STfAzn8pi2kvzuRIVs73oplAlsxg4eqbO2uTkFi6vrY,19182
|
|
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=Bp9raoLoyvx1nJDcUzDwCRuS3dVxG2vbY2ShPcXLZrg,5756
|
|
50
|
-
deepdoctection/extern/__init__.py,sha256=6htL-4-kZ3o_59IVXHKq-AzS8HuGuAmLWu7x1qpvbnA,1194
|
|
51
|
-
deepdoctection/extern/base.py,sha256=YYFRthwzjoDbMTDBEDuh237dzz_rjBF7bOnSinJYwu0,11989
|
|
52
|
-
deepdoctection/extern/d2detect.py,sha256=jD6SuylgylNRqCW6vsI53hZ6q13AF2XCANBQeaIiHmg,18703
|
|
53
|
-
deepdoctection/extern/deskew.py,sha256=STEJZczPUlMQSvFpajuyVIdyA3h9ZqlqLEe4yvlrAXI,1866
|
|
54
|
-
deepdoctection/extern/doctrocr.py,sha256=fPjwNZMIRRGRtqyycPYKtcmnDmVIpgQlzosEipATG9c,15015
|
|
55
|
-
deepdoctection/extern/fastlang.py,sha256=F5sI4t0rZxW5ypj3UKuLow5-v4dK_sNd7xaGpzuZXZc,2999
|
|
56
|
-
deepdoctection/extern/hfdetr.py,sha256=GWol2NNgATU1z-OwpfpzPQmASh9dmFh5mDfvYshWOmE,9319
|
|
57
|
-
deepdoctection/extern/hflayoutlm.py,sha256=FlBz9irp2gTsSBlMYU0m7_mowKToya3x-TPyl-gc93Q,39398
|
|
58
|
-
deepdoctection/extern/model.py,sha256=bhAPv2w8U8EbPMvvsi3X1-4d0eS4ikPiu_B4s9C5Ado,51436
|
|
59
|
-
deepdoctection/extern/pdftext.py,sha256=KLj0EKp9ITBHpMstpVB62pcftIuChnKmWAoaxYasdTs,3692
|
|
60
|
-
deepdoctection/extern/tessocr.py,sha256=U4OPrY5LV5Hbnpz7Sgj8-_xaA_FmWcGwOabG01Kbkig,12292
|
|
61
|
-
deepdoctection/extern/texocr.py,sha256=Oembj1al420vcQyF38djtLHueKlAGuBZQj-_OKclrkY,5700
|
|
62
|
-
deepdoctection/extern/tpdetect.py,sha256=E2-23XFmomxGt3dh3k84kELVgQwtv6NQQoWoKQuCn5A,7525
|
|
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=ktJzEdFOZSol_SoRWe14BX59R6TBmSgkQruWPoAWkuU,1372
|
|
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=4ZHUqn5ezHSs3NSwJnlWThjPGevpu_1g0lTRVMMKEf4,5054
|
|
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=ZPBIBdUiw9DuaUZ5JbDA_pFHfNyet2y2P39R0YcjKjk,11947
|
|
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=0d7jbom4RgYFscJZxKaj1tooElN2d-l4PPXM9n-x9VY,8422
|
|
91
|
-
deepdoctection/mapper/hfstruct.py,sha256=8-YzdhhaQGo3oX_ib944W_ME7JiC6PAj5Fgxp934h0E,5428
|
|
92
|
-
deepdoctection/mapper/laylmstruct.py,sha256=ZOQwMcDNaL5hozQLD3zaqHa4lMuXPIlDfaWspBD4CYw,35348
|
|
93
|
-
deepdoctection/mapper/maputils.py,sha256=BbXQkZ74geR2ujTeDl9-6hYIRdKMRWb-EPuUlDScLMc,7896
|
|
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=_T32ELYihb8sCdUtYUWYrnK9ebdRotjhv0Uh8sdnUpU,6822
|
|
98
|
-
deepdoctection/mapper/pubstruct.py,sha256=wKebynwZV-71d2QXb60cnhlKz_9lIC-FyEkXw4QNXws,23567
|
|
99
|
-
deepdoctection/mapper/tpstruct.py,sha256=_lQPHZsYji8E-3-KhtrHU5dyQ5VkyGk9908LUlGOtjc,4504
|
|
100
|
-
deepdoctection/mapper/xfundstruct.py,sha256=mFzRojnKzLiQ82kxHgYz8dvsQCXQaiFlcbP5R5hdBAw,8807
|
|
101
|
-
deepdoctection/pipe/__init__.py,sha256=Keyj5wNWT16hgtvZn4ZqhK7HMU6i9bWQ5dU1e7-j7-A,1121
|
|
102
|
-
deepdoctection/pipe/anngen.py,sha256=s-G5D7Tf1uyqHRIj7SGqXfKzoAW2qOX604H3AGFcp5g,14111
|
|
103
|
-
deepdoctection/pipe/base.py,sha256=X2X__runxzd5yPSBplTAae8FHEvhI6siPsWB1En47zQ,13182
|
|
104
|
-
deepdoctection/pipe/cell.py,sha256=WmFf3oExmticjy_rLtCK3_Wvw7ix5G46iHwcvSSGsIU,11062
|
|
105
|
-
deepdoctection/pipe/common.py,sha256=KzqkFS1pg8MC7joC-a-fg5OkX4O6730yBpmoB4vMJ00,14378
|
|
106
|
-
deepdoctection/pipe/concurrency.py,sha256=pz-2NoI9HeLFgixN83ALTDT37uwunwN8ww0g1odTzfE,9531
|
|
107
|
-
deepdoctection/pipe/doctectionpipe.py,sha256=YvWD0Vh2my-XkKzQhCq2yNYRK2KxdydSY88_lzcrmA0,9007
|
|
108
|
-
deepdoctection/pipe/language.py,sha256=yNMIZCPBE_1ier6qjeZoFkp9Aub34gK3rTs7XePkxbg,5579
|
|
109
|
-
deepdoctection/pipe/layout.py,sha256=2USk4rSMQIOVQcPA2Qdbm43mD_vTup5bOjSjzH56ykg,5262
|
|
110
|
-
deepdoctection/pipe/lm.py,sha256=eJ-RHOenFFNmifEYakncUvwi1CRxhyzU7ckM0U3rUn0,18031
|
|
111
|
-
deepdoctection/pipe/order.py,sha256=tNC48ucCsLCM9Qxs0gaKolk2bSIO62LD9C6TtJrlIh8,35266
|
|
112
|
-
deepdoctection/pipe/refine.py,sha256=qQtL0DFuO8ztYhfTWVX5w_W6MvVr3bpQ2M26_iNksK8,22439
|
|
113
|
-
deepdoctection/pipe/registry.py,sha256=aFx-Tn0xhVA5l5H18duNW5QoTNKQltybsEUEzsMgUfg,902
|
|
114
|
-
deepdoctection/pipe/segment.py,sha256=C1BBjBzKFik1wWdt8DgtiGHH53YNeFn2kapg5dKEfZ0,50474
|
|
115
|
-
deepdoctection/pipe/text.py,sha256=egFo-T8QgukiNSkLxbasIJC9aejNYdOe7Ry_r0vgjoc,10985
|
|
116
|
-
deepdoctection/pipe/transform.py,sha256=elR0vlsRCoZHXHzJjNAcie1Yr7GkVJzsiTrq_e2MgS4,3193
|
|
117
|
-
deepdoctection/train/__init__.py,sha256=BHnGumRvKGJQX7TYfqSEPdiiLrWK64Vpw5o9dJWDS6c,1196
|
|
118
|
-
deepdoctection/train/d2_frcnn_train.py,sha256=6zF3lKl7OVzBOnq_jxEzFjajBkp-jlQPC4_Q-8thD90,15740
|
|
119
|
-
deepdoctection/train/hf_detr_train.py,sha256=DVrdIKSkmC3_8wZ2diFpjUN_-WDpNyqfh_rsACK0Awo,10610
|
|
120
|
-
deepdoctection/train/hf_layoutlm_train.py,sha256=BzCCgkF89DbGLCiuedm69NRN0KHiYXbgPjw5eVd3Oow,21335
|
|
121
|
-
deepdoctection/train/tp_frcnn_train.py,sha256=D-LZrg-WcKhSSGQ3ZllzPrsJ6OZ1aRKFODmVKc3YckU,12952
|
|
122
|
-
deepdoctection/utils/__init__.py,sha256=LZvc1VcTzB_orZCkBwHCHPvbGuWNyIywGYrZloU-WxE,2299
|
|
123
|
-
deepdoctection/utils/concurrency.py,sha256=jwMCqReqkIpZ6tMGkTPEA5dIbMQL8jsxQ6WkNsTQJbE,4583
|
|
124
|
-
deepdoctection/utils/context.py,sha256=KQ4Ci8VVsfCj65_okFWIhBcOpZpzlDzdX3I7EZrRMUY,4060
|
|
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=E43C72DSeOxJancHQnhbhCRvKQsLkmK5utopLngDCOs,17620
|
|
128
|
-
deepdoctection/utils/file_utils.py,sha256=LXFHpT35sOHdW2AMjxoMO4ydkPKfvTZ9kzEEotPEhwg,19248
|
|
129
|
-
deepdoctection/utils/fs.py,sha256=H4iqUGASp6UA4I6lQ4Muvc2rxP627maZsV5pncCNmmI,9094
|
|
130
|
-
deepdoctection/utils/identifier.py,sha256=ICi7bT69y2TP8PP3Z14eyTca9oZT6Mzv-Y0eUrvNM9Q,2159
|
|
131
|
-
deepdoctection/utils/logger.py,sha256=z5GPpNJ0X1Rb_QYTBoHGKFDOXoT63MaI03gDARm1wSI,9931
|
|
132
|
-
deepdoctection/utils/metacfg.py,sha256=wk_jM6tAJhWapCjNR8yZo_fs91YTM-tsX7eM30w0gzQ,5203
|
|
133
|
-
deepdoctection/utils/pdf_utils.py,sha256=hAClsxOTpGTWBqHtoOwEsiKMYzxgHv-PJU1AEhqRang,7693
|
|
134
|
-
deepdoctection/utils/settings.py,sha256=-Zx_fm4kWeBro22aHsrzvd48ieD5JMca90vZmSXXMj0,12188
|
|
135
|
-
deepdoctection/utils/tqdm.py,sha256=1MDzkqgCAO3o8OkQTL-46866MpLqbMab9w6go3IpbKI,1830
|
|
136
|
-
deepdoctection/utils/transform.py,sha256=L43iTqe3j1HWwFOTlzjiu45WXMfycW-hvu7vyuKuE-I,8379
|
|
137
|
-
deepdoctection/utils/utils.py,sha256=OTtOQcXFg0U1t5-bsNui0upUbgYiK-EIBmykAL8kroM,5323
|
|
138
|
-
deepdoctection/utils/viz.py,sha256=vW9acIy1AF0iMmm8cO8KpsX1IbPccZLWcAUR9u7VVCM,23693
|
|
139
|
-
deepdoctection-0.30.dist-info/LICENSE,sha256=GQ0rUvuGdrMNEI3iHK5UQx6dIMU1QwAuyXsxUHn5MEQ,11351
|
|
140
|
-
deepdoctection-0.30.dist-info/METADATA,sha256=7u_9cPdwql7dmfg-fbipBttE8eCe-uKgrNB3KQeEjJQ,18983
|
|
141
|
-
deepdoctection-0.30.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
142
|
-
deepdoctection-0.30.dist-info/top_level.txt,sha256=hs2DdoOL9h4mnHhmO82BT4pz4QATIoOZ20PZmlnxFI8,15
|
|
143
|
-
deepdoctection-0.30.dist-info/RECORD,,
|