deepdoctection 0.26__py3-none-any.whl → 0.27__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (31) hide show
  1. deepdoctection/__init__.py +7 -1
  2. deepdoctection/analyzer/dd.py +15 -3
  3. deepdoctection/configs/conf_dd_one.yaml +4 -0
  4. deepdoctection/datapoint/convert.py +5 -10
  5. deepdoctection/datapoint/image.py +2 -2
  6. deepdoctection/datapoint/view.py +38 -18
  7. deepdoctection/datasets/save.py +3 -3
  8. deepdoctection/extern/d2detect.py +1 -2
  9. deepdoctection/extern/doctrocr.py +14 -9
  10. deepdoctection/extern/tp/tpfrcnn/common.py +2 -3
  11. deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py +6 -6
  12. deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py +3 -3
  13. deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py +6 -2
  14. deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py +5 -3
  15. deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py +3 -1
  16. deepdoctection/extern/tp/tpfrcnn/predict.py +1 -0
  17. deepdoctection/mapper/laylmstruct.py +2 -3
  18. deepdoctection/utils/context.py +2 -2
  19. deepdoctection/utils/file_utils.py +63 -26
  20. deepdoctection/utils/fs.py +6 -6
  21. deepdoctection/utils/pdf_utils.py +2 -2
  22. deepdoctection/utils/settings.py +8 -1
  23. deepdoctection/utils/transform.py +9 -9
  24. deepdoctection/utils/viz.py +405 -86
  25. {deepdoctection-0.26.dist-info → deepdoctection-0.27.dist-info}/METADATA +93 -94
  26. {deepdoctection-0.26.dist-info → deepdoctection-0.27.dist-info}/RECORD +31 -31
  27. {deepdoctection-0.26.dist-info → deepdoctection-0.27.dist-info}/WHEEL +1 -1
  28. tests/analyzer/test_dd.py +6 -57
  29. tests/conftest.py +2 -0
  30. {deepdoctection-0.26.dist-info → deepdoctection-0.27.dist-info}/LICENSE +0 -0
  31. {deepdoctection-0.26.dist-info → deepdoctection-0.27.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: deepdoctection
3
- Version: 0.26
3
+ Version: 0.27
4
4
  Summary: Repository for Document AI
5
5
  Home-page: https://github.com/deepdoctection/deepdoctection
6
6
  Author: Dr. Janis Meyer
@@ -14,136 +14,135 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
14
14
  Requires-Python: >=3.8
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: catalogue (==2.0.7)
18
- Requires-Dist: huggingface-hub (>=0.12.0)
19
- Requires-Dist: importlib-metadata (>=4.11.2)
20
- Requires-Dist: jsonlines (==3.0.0)
21
- Requires-Dist: mock (==4.0.3)
22
- Requires-Dist: networkx (>=2.7.1)
23
- Requires-Dist: numpy (>=1.21)
24
- Requires-Dist: opencv-python (==4.5.4.60)
25
- Requires-Dist: packaging (>=20.0)
17
+ Requires-Dist: catalogue ==2.0.7
18
+ Requires-Dist: huggingface-hub >=0.12.0
19
+ Requires-Dist: importlib-metadata >=4.11.2
20
+ Requires-Dist: jsonlines ==3.0.0
21
+ Requires-Dist: mock ==4.0.3
22
+ Requires-Dist: networkx >=2.7.1
23
+ Requires-Dist: numpy >=1.21
24
+ Requires-Dist: packaging >=20.0
25
+ Requires-Dist: Pillow >=10.0.0
26
26
  Requires-Dist: pypdf2
27
- Requires-Dist: pyyaml (==6.0)
28
- Requires-Dist: pyzmq (>=16)
29
- Requires-Dist: termcolor (>=1.1)
30
- Requires-Dist: tabulate (>=0.7.7)
31
- Requires-Dist: tqdm (==4.64.0)
27
+ Requires-Dist: pyyaml ==6.0
28
+ Requires-Dist: pyzmq >=16
29
+ Requires-Dist: termcolor >=1.1
30
+ Requires-Dist: tabulate >=0.7.7
31
+ Requires-Dist: tqdm ==4.64.0
32
32
  Provides-Extra: dev
33
33
  Requires-Dist: click ; extra == 'dev'
34
- Requires-Dist: black (==23.7.0) ; extra == 'dev'
34
+ Requires-Dist: black ==23.7.0 ; extra == 'dev'
35
35
  Requires-Dist: isort ; extra == 'dev'
36
- Requires-Dist: pylint (==2.17.4) ; extra == 'dev'
37
- Requires-Dist: mypy (==1.4.1) ; extra == 'dev'
36
+ Requires-Dist: pylint ==2.17.4 ; extra == 'dev'
37
+ Requires-Dist: mypy ==1.4.1 ; extra == 'dev'
38
38
  Requires-Dist: wandb ; extra == 'dev'
39
39
  Requires-Dist: types-PyYAML ; extra == 'dev'
40
- Requires-Dist: types-termcolor (==1.1.3) ; extra == 'dev'
40
+ Requires-Dist: types-termcolor ==1.1.3 ; extra == 'dev'
41
41
  Requires-Dist: types-tabulate ; extra == 'dev'
42
42
  Requires-Dist: types-tqdm ; extra == 'dev'
43
43
  Requires-Dist: lxml-stubs ; extra == 'dev'
44
+ Requires-Dist: types-Pillow ; extra == 'dev'
45
+ Requires-Dist: types-urllib3 ; extra == 'dev'
44
46
  Provides-Extra: docs
45
47
  Requires-Dist: tensorpack ; extra == 'docs'
46
48
  Requires-Dist: boto3 ; extra == 'docs'
47
49
  Requires-Dist: transformers ; extra == 'docs'
48
- Requires-Dist: pdfplumber (>=0.7.1) ; extra == 'docs'
49
- Requires-Dist: lxml (>=4.9.1) ; extra == 'docs'
50
+ Requires-Dist: pdfplumber >=0.7.1 ; extra == 'docs'
51
+ Requires-Dist: lxml >=4.9.1 ; extra == 'docs'
50
52
  Requires-Dist: lxml-stubs ; extra == 'docs'
51
53
  Requires-Dist: jdeskew ; extra == 'docs'
52
- Requires-Dist: jinja2 (==3.0.3) ; extra == 'docs'
54
+ Requires-Dist: jinja2 ==3.0.3 ; extra == 'docs'
53
55
  Requires-Dist: mkdocs-material ; extra == 'docs'
54
56
  Requires-Dist: mkdocstrings-python ; extra == 'docs'
55
- Requires-Dist: griffe (==0.25.0) ; extra == 'docs'
57
+ Requires-Dist: griffe ==0.25.0 ; extra == 'docs'
56
58
  Provides-Extra: hf
57
- Requires-Dist: catalogue (==2.0.7) ; extra == 'hf'
58
- Requires-Dist: huggingface-hub (>=0.12.0) ; extra == 'hf'
59
- Requires-Dist: importlib-metadata (>=4.11.2) ; extra == 'hf'
60
- Requires-Dist: jsonlines (==3.0.0) ; extra == 'hf'
61
- Requires-Dist: mock (==4.0.3) ; extra == 'hf'
62
- Requires-Dist: networkx (>=2.7.1) ; extra == 'hf'
63
- Requires-Dist: numpy (>=1.21) ; extra == 'hf'
64
- Requires-Dist: opencv-python (==4.5.4.60) ; extra == 'hf'
65
- Requires-Dist: packaging (>=20.0) ; extra == 'hf'
59
+ Requires-Dist: catalogue ==2.0.7 ; extra == 'hf'
60
+ Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'hf'
61
+ Requires-Dist: importlib-metadata >=4.11.2 ; extra == 'hf'
62
+ Requires-Dist: jsonlines ==3.0.0 ; extra == 'hf'
63
+ Requires-Dist: mock ==4.0.3 ; extra == 'hf'
64
+ Requires-Dist: networkx >=2.7.1 ; extra == 'hf'
65
+ Requires-Dist: numpy >=1.21 ; extra == 'hf'
66
+ Requires-Dist: packaging >=20.0 ; extra == 'hf'
67
+ Requires-Dist: Pillow >=10.0.0 ; extra == 'hf'
66
68
  Requires-Dist: pypdf2 ; extra == 'hf'
67
- Requires-Dist: pyyaml (==6.0) ; extra == 'hf'
68
- Requires-Dist: pyzmq (>=16) ; extra == 'hf'
69
- Requires-Dist: termcolor (>=1.1) ; extra == 'hf'
70
- Requires-Dist: tabulate (>=0.7.7) ; extra == 'hf'
71
- Requires-Dist: tqdm (==4.64.0) ; extra == 'hf'
69
+ Requires-Dist: pyyaml ==6.0 ; extra == 'hf'
70
+ Requires-Dist: pyzmq >=16 ; extra == 'hf'
71
+ Requires-Dist: termcolor >=1.1 ; extra == 'hf'
72
+ Requires-Dist: tabulate >=0.7.7 ; extra == 'hf'
73
+ Requires-Dist: tqdm ==4.64.0 ; extra == 'hf'
72
74
  Requires-Dist: timm ; extra == 'hf'
73
75
  Requires-Dist: transformers ; extra == 'hf'
74
- Requires-Dist: python-doctr (==0.6.0) ; extra == 'hf'
75
- Requires-Dist: rapidfuzz (<3.0,>=1.6.0) ; extra == 'hf'
76
+ Requires-Dist: python-doctr ==0.7.0 ; extra == 'hf'
76
77
  Requires-Dist: boto3 ; extra == 'hf'
77
- Requires-Dist: pdfplumber (>=0.7.1) ; extra == 'hf'
78
+ Requires-Dist: pdfplumber >=0.7.1 ; extra == 'hf'
78
79
  Requires-Dist: fasttext ; extra == 'hf'
79
80
  Requires-Dist: jdeskew ; extra == 'hf'
80
- Requires-Dist: apted (==1.0.3) ; extra == 'hf'
81
- Requires-Dist: distance (==0.1.3) ; extra == 'hf'
82
- Requires-Dist: lxml (>=4.9.1) ; extra == 'hf'
81
+ Requires-Dist: apted ==1.0.3 ; extra == 'hf'
82
+ Requires-Dist: distance ==0.1.3 ; extra == 'hf'
83
+ Requires-Dist: lxml >=4.9.1 ; extra == 'hf'
83
84
  Provides-Extra: pt
84
- Requires-Dist: catalogue (==2.0.7) ; extra == 'pt'
85
- Requires-Dist: huggingface-hub (>=0.12.0) ; extra == 'pt'
86
- Requires-Dist: importlib-metadata (>=4.11.2) ; extra == 'pt'
87
- Requires-Dist: jsonlines (==3.0.0) ; extra == 'pt'
88
- Requires-Dist: mock (==4.0.3) ; extra == 'pt'
89
- Requires-Dist: networkx (>=2.7.1) ; extra == 'pt'
90
- Requires-Dist: numpy (>=1.21) ; extra == 'pt'
91
- Requires-Dist: opencv-python (==4.5.4.60) ; extra == 'pt'
92
- Requires-Dist: packaging (>=20.0) ; extra == 'pt'
85
+ Requires-Dist: catalogue ==2.0.7 ; extra == 'pt'
86
+ Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'pt'
87
+ Requires-Dist: importlib-metadata >=4.11.2 ; extra == 'pt'
88
+ Requires-Dist: jsonlines ==3.0.0 ; extra == 'pt'
89
+ Requires-Dist: mock ==4.0.3 ; extra == 'pt'
90
+ Requires-Dist: networkx >=2.7.1 ; extra == 'pt'
91
+ Requires-Dist: numpy >=1.21 ; extra == 'pt'
92
+ Requires-Dist: packaging >=20.0 ; extra == 'pt'
93
+ Requires-Dist: Pillow >=10.0.0 ; extra == 'pt'
93
94
  Requires-Dist: pypdf2 ; extra == 'pt'
94
- Requires-Dist: pyyaml (==6.0) ; extra == 'pt'
95
- Requires-Dist: pyzmq (>=16) ; extra == 'pt'
96
- Requires-Dist: termcolor (>=1.1) ; extra == 'pt'
97
- Requires-Dist: tabulate (>=0.7.7) ; extra == 'pt'
98
- Requires-Dist: tqdm (==4.64.0) ; extra == 'pt'
95
+ Requires-Dist: pyyaml ==6.0 ; extra == 'pt'
96
+ Requires-Dist: pyzmq >=16 ; extra == 'pt'
97
+ Requires-Dist: termcolor >=1.1 ; extra == 'pt'
98
+ Requires-Dist: tabulate >=0.7.7 ; extra == 'pt'
99
+ Requires-Dist: tqdm ==4.64.0 ; extra == 'pt'
99
100
  Requires-Dist: timm ; extra == 'pt'
100
101
  Requires-Dist: transformers ; extra == 'pt'
101
- Requires-Dist: python-doctr (==0.6.0) ; extra == 'pt'
102
- Requires-Dist: rapidfuzz (<3.0,>=1.6.0) ; extra == 'pt'
102
+ Requires-Dist: python-doctr ==0.7.0 ; extra == 'pt'
103
103
  Requires-Dist: boto3 ; extra == 'pt'
104
- Requires-Dist: pdfplumber (>=0.7.1) ; extra == 'pt'
104
+ Requires-Dist: pdfplumber >=0.7.1 ; extra == 'pt'
105
105
  Requires-Dist: fasttext ; extra == 'pt'
106
106
  Requires-Dist: jdeskew ; extra == 'pt'
107
- Requires-Dist: apted (==1.0.3) ; extra == 'pt'
108
- Requires-Dist: distance (==0.1.3) ; extra == 'pt'
109
- Requires-Dist: lxml (>=4.9.1) ; extra == 'pt'
107
+ Requires-Dist: apted ==1.0.3 ; extra == 'pt'
108
+ Requires-Dist: distance ==0.1.3 ; extra == 'pt'
109
+ Requires-Dist: lxml >=4.9.1 ; extra == 'pt'
110
110
  Provides-Extra: test
111
111
  Requires-Dist: pytest ; extra == 'test'
112
112
  Requires-Dist: pytest-cov ; extra == 'test'
113
113
  Provides-Extra: tf
114
- Requires-Dist: catalogue (==2.0.7) ; extra == 'tf'
115
- Requires-Dist: huggingface-hub (>=0.12.0) ; extra == 'tf'
116
- Requires-Dist: importlib-metadata (>=4.11.2) ; extra == 'tf'
117
- Requires-Dist: jsonlines (==3.0.0) ; extra == 'tf'
118
- Requires-Dist: mock (==4.0.3) ; extra == 'tf'
119
- Requires-Dist: networkx (>=2.7.1) ; extra == 'tf'
120
- Requires-Dist: numpy (>=1.21) ; extra == 'tf'
121
- Requires-Dist: opencv-python (==4.5.4.60) ; extra == 'tf'
122
- Requires-Dist: packaging (>=20.0) ; extra == 'tf'
114
+ Requires-Dist: catalogue ==2.0.7 ; extra == 'tf'
115
+ Requires-Dist: huggingface-hub >=0.12.0 ; extra == 'tf'
116
+ Requires-Dist: importlib-metadata >=4.11.2 ; extra == 'tf'
117
+ Requires-Dist: jsonlines ==3.0.0 ; extra == 'tf'
118
+ Requires-Dist: mock ==4.0.3 ; extra == 'tf'
119
+ Requires-Dist: networkx >=2.7.1 ; extra == 'tf'
120
+ Requires-Dist: numpy >=1.21 ; extra == 'tf'
121
+ Requires-Dist: packaging >=20.0 ; extra == 'tf'
122
+ Requires-Dist: Pillow >=10.0.0 ; extra == 'tf'
123
123
  Requires-Dist: pypdf2 ; extra == 'tf'
124
- Requires-Dist: pyyaml (==6.0) ; extra == 'tf'
125
- Requires-Dist: pyzmq (>=16) ; extra == 'tf'
126
- Requires-Dist: termcolor (>=1.1) ; extra == 'tf'
127
- Requires-Dist: tabulate (>=0.7.7) ; extra == 'tf'
128
- Requires-Dist: tqdm (==4.64.0) ; extra == 'tf'
124
+ Requires-Dist: pyyaml ==6.0 ; extra == 'tf'
125
+ Requires-Dist: pyzmq >=16 ; extra == 'tf'
126
+ Requires-Dist: termcolor >=1.1 ; extra == 'tf'
127
+ Requires-Dist: tabulate >=0.7.7 ; extra == 'tf'
128
+ Requires-Dist: tqdm ==4.64.0 ; extra == 'tf'
129
129
  Requires-Dist: tensorpack ; extra == 'tf'
130
- Requires-Dist: protobuf (==3.20.1) ; extra == 'tf'
131
- Requires-Dist: tensorflow-addons (>=0.17.1) ; extra == 'tf'
132
- Requires-Dist: tf2onnx (>=1.9.2) ; extra == 'tf'
133
- Requires-Dist: python-doctr (==0.6.0) ; extra == 'tf'
134
- Requires-Dist: rapidfuzz (<3.0,>=1.6.0) ; extra == 'tf'
135
- Requires-Dist: pycocotools (>=2.0.2) ; extra == 'tf'
130
+ Requires-Dist: protobuf ==3.20.1 ; extra == 'tf'
131
+ Requires-Dist: tensorflow-addons >=0.17.1 ; extra == 'tf'
132
+ Requires-Dist: tf2onnx >=1.9.2 ; extra == 'tf'
133
+ Requires-Dist: python-doctr ==0.7.0 ; extra == 'tf'
134
+ Requires-Dist: pycocotools >=2.0.2 ; extra == 'tf'
136
135
  Requires-Dist: boto3 ; extra == 'tf'
137
- Requires-Dist: pdfplumber (>=0.7.1) ; extra == 'tf'
136
+ Requires-Dist: pdfplumber >=0.7.1 ; extra == 'tf'
138
137
  Requires-Dist: fasttext ; extra == 'tf'
139
138
  Requires-Dist: jdeskew ; extra == 'tf'
140
- Requires-Dist: apted (==1.0.3) ; extra == 'tf'
141
- Requires-Dist: distance (==0.1.3) ; extra == 'tf'
142
- Requires-Dist: lxml (>=4.9.1) ; extra == 'tf'
139
+ Requires-Dist: apted ==1.0.3 ; extra == 'tf'
140
+ Requires-Dist: distance ==0.1.3 ; extra == 'tf'
141
+ Requires-Dist: lxml >=4.9.1 ; extra == 'tf'
143
142
 
144
143
 
145
144
  <p align="center">
146
- <img src="https://github.com/deepdoctection/deepdoctection/blob/master/docs/tutorials/_imgs/dd_logo.png" alt="Deep Doctection Logo" width="60%">
145
+ <img src="https://github.com/deepdoctection/deepdoctection/raw/master/docs/tutorials/_imgs/dd_logo.png" alt="Deep Doctection Logo" width="60%">
147
146
  <h3 align="center">
148
147
  A Document AI Package
149
148
  </h3>
@@ -243,20 +242,20 @@ plt.axis('off')
243
242
  plt.imshow(image)
244
243
  ```
245
244
 
246
- ![text](./docs/tutorials/_imgs/dd_rm_sample.png)
245
+ ![text](https://github.com/deepdoctection/deepdoctection/raw/master/docs/tutorials/_imgs/dd_rm_sample.png)
247
246
 
248
247
  ```
249
248
  HTML(page.tables[0].html)
250
249
  ```
251
250
 
252
- ![table](./docs/tutorials/_imgs/dd_rm_table.png)
251
+ ![table](https://github.com/deepdoctection/deepdoctection/raw/master/docs/tutorials/_imgs/dd_rm_table.png)
253
252
 
254
253
 
255
254
  ```
256
255
  print(page.text)
257
256
  ```
258
257
 
259
- ![table](./docs/tutorials/_imgs/dd_rm_text.png)
258
+ ![table](https://github.com/deepdoctection/deepdoctection/raw/master/docs/tutorials/_imgs/dd_rm_text.png)
260
259
 
261
260
 
262
261
  ## Documentation
@@ -270,14 +269,14 @@ documentation.
270
269
 
271
270
  ## Requirements
272
271
 
273
- ![requirements](./docs/tutorials/_imgs/requirements_deepdoctection.png)
272
+ ![requirements](https://github.com/deepdoctection/deepdoctection/raw/master/docs/tutorials/_imgs/requirements_deepdoctection.png)
274
273
 
275
274
  Everything in the overview listed below the **deep**doctection layer are necessary requirements and have to be installed
276
275
  separately.
277
276
 
278
277
  - Linux or macOS. (Windows is not supported but there is a [Dockerfile](./docker/pytorch-cpu-jupyter/Dockerfile) available)
279
278
  - Python >= 3.8
280
- - 1.8 <= PyTorch < 2.0 **or** Tensorflow >= 2.9 and CUDA. If you want to run the models provided by Tensorpack a GPU is
279
+ - 1.12 <= PyTorch < 2.0 **or** Tensorflow >= 2.9 and CUDA. If you want to run the models provided by Tensorpack a GPU is
281
280
  required. You can run on PyTorch with a CPU only.
282
281
  - **deep**doctection uses Python wrappers for [Poppler](https://poppler.freedesktop.org/) to convert PDF documents into
283
282
  images.
@@ -350,7 +349,7 @@ pip install deepdoctection
350
349
  This will ignore all model libraries (layers above the **deep**doctection layer in the diagram) and you
351
350
  will be responsible to install them by yourself. Note, that you will not be able to run any pipeline with this setup.
352
351
 
353
- For further information, please consult the [**full installation instructions**](https://deepdoctection.readthedocs.io/en/latest/manual/install.html).
352
+ For further information, please consult the [**full installation instructions**](https://deepdoctection.readthedocs.io/en/latest/install/).
354
353
 
355
354
 
356
355
  ### Installation from source
@@ -1,9 +1,9 @@
1
- deepdoctection/__init__.py,sha256=x79SjrpAvK-bErqZ-3m0n-34rOsnv9uevzxFMU6cpC0,11968
1
+ deepdoctection/__init__.py,sha256=Nys6NDiGF3ljC6iA0jtrr-mO-amdqULkMtjLhB7egZ4,12116
2
2
  deepdoctection/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  deepdoctection/analyzer/__init__.py,sha256=g86MeZz_BIQ2-b8kDIss7osPUNrFhT-Z3Eu7Wm02pFI,706
4
- deepdoctection/analyzer/dd.py,sha256=-1kLW6G6wBS3dbJ63A2qmTpSWhctS_o1MVXtn4SOxxI,16030
4
+ deepdoctection/analyzer/dd.py,sha256=FLqCU8u-affp-F-DdlvVmRbrSvBLZWQXTyBTsYb0c8k,16663
5
5
  deepdoctection/configs/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
6
- deepdoctection/configs/conf_dd_one.yaml,sha256=G_mzTPs6bP1N7ajsvHj7vziUSLUNQ_gFB5MqDZUGo7Q,2168
6
+ deepdoctection/configs/conf_dd_one.yaml,sha256=dWYrXcsy9EWWPz5_1adsm5R0IfCMU0XwUiKGvsiH2KI,2228
7
7
  deepdoctection/configs/conf_tesseract.yaml,sha256=oF6szDyoi15FHvq7yFUNIEjfA_jNLhGxoowiRsz_zY4,35
8
8
  deepdoctection/dataflow/__init__.py,sha256=CWRHMpmJaPk4xY_oIIFubCt-z11SguWrMWxHZ7rdrvY,845
9
9
  deepdoctection/dataflow/base.py,sha256=0TxY5R7zNByUJNgut6FqXwX7_6fztj11r5U1-4FcWW8,6806
@@ -16,16 +16,16 @@ deepdoctection/dataflow/stats.py,sha256=VflwmjNm0Yfc7_5EkLp05OPXvpEMYT7YQBpjThOe
16
16
  deepdoctection/datapoint/__init__.py,sha256=3K406GbOPhoEp8koVaSbMocmSsmWifnSZ1SPb7C1lOY,1643
17
17
  deepdoctection/datapoint/annotation.py,sha256=zfoxEZeHPpMSDz5bZ8dIeUFmC7F8axv_jXPfMKF3MWU,19073
18
18
  deepdoctection/datapoint/box.py,sha256=IpXafgB3ZGxOdkreExyh3qmMTXaF6QZasmyM5JZNkmo,23341
19
- deepdoctection/datapoint/convert.py,sha256=znEVp8qj5r7X8nP5s-EfR2NVQ7opgu5XI69ewqtPUsw,6879
20
- deepdoctection/datapoint/image.py,sha256=vy67a_YyHbW7ZCAvy5oT61tklHZ67sXwPTcDP9KF-I0,27291
21
- deepdoctection/datapoint/view.py,sha256=G9ttVn8HL0NJPO_jSgioLF84Pmee-ocqLPEvqrz3xTk,33600
19
+ deepdoctection/datapoint/convert.py,sha256=ujt7wZ66VsOGZsW2Ys7fpUk5VnjBdFmdVJcKcy58z1k,6627
20
+ deepdoctection/datapoint/image.py,sha256=vSWfZJWkgwlyqaReuR4yUJVWhjyCtOTokJ6z2S6jWxM,27237
21
+ deepdoctection/datapoint/view.py,sha256=4tq-erfMu_g9xvV_f-unl0Hqj-qdShZkps8c-ags-vQ,34268
22
22
  deepdoctection/datasets/__init__.py,sha256=rmqh0ASQhEajiOkFVGFxLGPjOWSPFpVTja1brwzVqHQ,1154
23
23
  deepdoctection/datasets/adapter.py,sha256=21N3ShWMiS9cH2TL5YJwbGjwPZVz72n50xYgEh4A3LY,7405
24
24
  deepdoctection/datasets/base.py,sha256=VTcituwV1h-KPq3kLKrq74Blw66BariATldmMiZOnuE,18887
25
25
  deepdoctection/datasets/dataflow_builder.py,sha256=_RRh_Et1Re2OQThM4lWtMBpVH0GqfpRz6w5oXrBAr90,4105
26
26
  deepdoctection/datasets/info.py,sha256=z3WW4cJ1oqg8hdVgGdocsyEuis7qAoGEOKN0WOcJ_A4,20603
27
27
  deepdoctection/datasets/registry.py,sha256=ZjzVzjsCgNXJuZZZtR98_yKocADmh4EBGV5JqJbGjWk,2543
28
- deepdoctection/datasets/save.py,sha256=Fb5oNdE5vyJmN9mCL26_MqXwka8bBd4VnSo-mcqHKh0,3326
28
+ deepdoctection/datasets/save.py,sha256=1cVj0LL3yIxhMa0ywkYQOOTAnNDAw5llonjn6SeSV-A,3354
29
29
  deepdoctection/datasets/instances/__init__.py,sha256=XEc_4vT5lDn6bbZID9ujDEumWu8Ec2W-QS4pI_bfWWE,1388
30
30
  deepdoctection/datasets/instances/doclaynet.py,sha256=M0kSqB06XYmIOfqDC_Q4ooidybTJz2PBU8QGkdjiOeg,12014
31
31
  deepdoctection/datasets/instances/fintabnet.py,sha256=V9VN_HHBGhs0IKLjJGg2rNcuUBaR23bFar-qomIdfAQ,11968
@@ -49,9 +49,9 @@ deepdoctection/eval/tedsmetric.py,sha256=k1m9nOrIQCEQSQIabFWn5cfiBjh37_VZS-iz__8
49
49
  deepdoctection/eval/tp_eval_callback.py,sha256=nDXE-vhaiiItGSEQ18tZKuygoARd8WHJU68lFF260Mk,5713
50
50
  deepdoctection/extern/__init__.py,sha256=6htL-4-kZ3o_59IVXHKq-AzS8HuGuAmLWu7x1qpvbnA,1194
51
51
  deepdoctection/extern/base.py,sha256=YYFRthwzjoDbMTDBEDuh237dzz_rjBF7bOnSinJYwu0,11989
52
- deepdoctection/extern/d2detect.py,sha256=jBahS92CYZVnpuXyHia6fhsHBjE6ZHGWOZAvWg3VdCc,18725
52
+ deepdoctection/extern/d2detect.py,sha256=jD6SuylgylNRqCW6vsI53hZ6q13AF2XCANBQeaIiHmg,18703
53
53
  deepdoctection/extern/deskew.py,sha256=STEJZczPUlMQSvFpajuyVIdyA3h9ZqlqLEe4yvlrAXI,1866
54
- deepdoctection/extern/doctrocr.py,sha256=NvZTHj-VNC4SdmLyawV6uHQtqMCxMVUvb2w688FZJPE,12380
54
+ deepdoctection/extern/doctrocr.py,sha256=nw_yWCIxXwfuSpX-3t86x6e76fJXC7tej1hJ4QKs3mU,12573
55
55
  deepdoctection/extern/fastlang.py,sha256=F5sI4t0rZxW5ypj3UKuLow5-v4dK_sNd7xaGpzuZXZc,2999
56
56
  deepdoctection/extern/hfdetr.py,sha256=GWol2NNgATU1z-OwpfpzPQmASh9dmFh5mDfvYshWOmE,9319
57
57
  deepdoctection/extern/hflayoutlm.py,sha256=FlBz9irp2gTsSBlMYU0m7_mowKToya3x-TPyl-gc93Q,39398
@@ -67,19 +67,19 @@ deepdoctection/extern/tp/__init__.py,sha256=8QMkcA7tChCr1QXiA0551lZS2jTsECBrrL2Y
67
67
  deepdoctection/extern/tp/tfutils.py,sha256=GvDOG1bj60h8qusm3NCnEm16YlUjPtv_iKULYaWYV7Y,1479
68
68
  deepdoctection/extern/tp/tpcompat.py,sha256=4ZHUqn5ezHSs3NSwJnlWThjPGevpu_1g0lTRVMMKEf4,5054
69
69
  deepdoctection/extern/tp/tpfrcnn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- deepdoctection/extern/tp/tpfrcnn/common.py,sha256=cWqoQbzzV0IjPu4OurDF4rEwxNN1L83KSFoi2eSqIZ8,3664
71
- deepdoctection/extern/tp/tpfrcnn/predict.py,sha256=1vk_m3HR4obK-GxLKW-rp7hSvYR970GjK6OUAcQxl6A,4215
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
72
  deepdoctection/extern/tp/tpfrcnn/preproc.py,sha256=ZPBIBdUiw9DuaUZ5JbDA_pFHfNyet2y2P39R0YcjKjk,11947
73
73
  deepdoctection/extern/tp/tpfrcnn/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
74
  deepdoctection/extern/tp/tpfrcnn/config/config.py,sha256=OAioHcO2amPJIvy73dSGqj0daNzp1wAFQD0nGw9oOOM,11284
75
75
  deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py,sha256=ENyOUsWvLGDarBFMwrKz9-7OFVk22KnetFatk84CbC8,9362
77
- deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py,sha256=x06tGpUL8Wu9_2nd0vVT8B0ZzOM0tAjBTMArkuOUbSI,13545
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
78
  deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py,sha256=G62nkoVSTPBoZRmQOZhBWNZHEK62Hs_xXdsROl8WII4,7061
79
79
  deepdoctection/extern/tp/tpfrcnn/modeling/model_cascade.py,sha256=x1MvbgGpX_lXNTPlPofQhZMyeVegfXh0Rgw3D-xBZ6E,5685
80
- deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py,sha256=Htf3_uxDfaCQ8aOuf9XQaxkYW2KdEvndRxedR4HdrjA,11006
81
- deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py,sha256=NBfRNSJM5bAzBKKJGccki889I-J3TtdiSVa9Ito42ZQ,17743
82
- deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py,sha256=JxJ4LC9zU_OYy98JlXzAVz-E9AbLox7WoGw5Ag5aTBo,4597
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
83
  deepdoctection/extern/tp/tpfrcnn/modeling/model_rpn.py,sha256=hL4gSacnx_YpikvMY8mPJkXrX7QMsFVyPwXEXGfujRU,8780
84
84
  deepdoctection/extern/tp/tpfrcnn/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
85
  deepdoctection/extern/tp/tpfrcnn/utils/box_ops.py,sha256=mxghtfXcxiktnq7E_pf33D8X_sUDsuf5O4Oq1hf2sg8,2203
@@ -89,7 +89,7 @@ deepdoctection/mapper/cats.py,sha256=rvRcmHlK6xw13-rMHkfnjc6RFfeA1LYGODZiBHzAT9c
89
89
  deepdoctection/mapper/cocostruct.py,sha256=PPyEJmKxfD49DeEcuPJrbtr-VaYGgpMCtqHMWrVOmI0,6054
90
90
  deepdoctection/mapper/d2struct.py,sha256=g3cYiMhN7WJd6Fz_DzpAy70RlB80Tib4HF7cSUbKqPk,8589
91
91
  deepdoctection/mapper/hfstruct.py,sha256=T0V1DQ7Wge8cEjPxkRzEo3amAdNKGcNi14bFOXowrd8,5593
92
- deepdoctection/mapper/laylmstruct.py,sha256=FoOBmrTJydTZ_Rv4XA14cnMq2wJ8H6fPav8J_vDgHpc,35638
92
+ deepdoctection/mapper/laylmstruct.py,sha256=uP_8pfK6OCCb_BlShwYVdiPl_TSSTjjQmvbKL2IQge0,35595
93
93
  deepdoctection/mapper/maputils.py,sha256=p5yjGwcOsq0-DurcDt-JyFmdXITV6NoBKtt8JrbzaFI,7775
94
94
  deepdoctection/mapper/match.py,sha256=L8-Xl6xTCAxhXiT1ccuTxwqIgubEE906kk098xkKCbU,7912
95
95
  deepdoctection/mapper/misc.py,sha256=XtC0Mv0TfkRowVVpLgVU07SvDCiKr1q0k2Rd8fy41LU,6520
@@ -121,27 +121,27 @@ deepdoctection/train/hf_layoutlm_train.py,sha256=CQQAm3c0_nGgr0cN5TXZuuOChk8pl1W
121
121
  deepdoctection/train/tp_frcnn_train.py,sha256=D-LZrg-WcKhSSGQ3ZllzPrsJ6OZ1aRKFODmVKc3YckU,12952
122
122
  deepdoctection/utils/__init__.py,sha256=zdWyt99pQ0IkIY5TITnqYRwQUyhBHpw0DaMbU9B-n4k,2238
123
123
  deepdoctection/utils/concurrency.py,sha256=jwMCqReqkIpZ6tMGkTPEA5dIbMQL8jsxQ6WkNsTQJbE,4583
124
- deepdoctection/utils/context.py,sha256=hiCMB2k2GfdIUkUNre-1e8me-5PJO0rLt5gSP14Ikt4,3998
124
+ deepdoctection/utils/context.py,sha256=a7GvrDY1jcGgUVUsrP6L_4nJ2pB9aYxl2vW89c78zss,4019
125
125
  deepdoctection/utils/detection_types.py,sha256=n_pnSzJ44MdRhLrtNfh5E98tbKSdTuz-L-aed4w42Pc,1931
126
126
  deepdoctection/utils/develop.py,sha256=RL0aJ7E6XdORmCWxiyNNEx8f2EVj1Gz7YEvha68g8vQ,3441
127
- deepdoctection/utils/file_utils.py,sha256=iN4ATUgA02C56fI2_DIS2exv7U4Hvk9eAc4ppOqUX3o,17938
128
- deepdoctection/utils/fs.py,sha256=ydTK0C0nbvP9yrVPisRvK-uWCisxGr9wKWKLnnc6tSU,7626
127
+ deepdoctection/utils/file_utils.py,sha256=XGTm-NyVVhmXJbiGrFYK8ZXHUUBSrR6M3i8Cf0y084E,18789
128
+ deepdoctection/utils/fs.py,sha256=2CjPQZ2CQL3XF4vL2bJYoJvVfj4iilA05jKEp8mu11U,7769
129
129
  deepdoctection/utils/identifier.py,sha256=ICi7bT69y2TP8PP3Z14eyTca9oZT6Mzv-Y0eUrvNM9Q,2159
130
130
  deepdoctection/utils/logger.py,sha256=z6F-dhsaiPWozZcOxt-VLRl6cVZno1JX7nXiXssmCcs,8650
131
131
  deepdoctection/utils/metacfg.py,sha256=wk_jM6tAJhWapCjNR8yZo_fs91YTM-tsX7eM30w0gzQ,5203
132
- deepdoctection/utils/pdf_utils.py,sha256=RfBZNfxjxQCeaxsluiK3lQo7G1ktj5z1TtaPqxpz8L4,7530
133
- deepdoctection/utils/settings.py,sha256=nOHz1Wex1rHFtBAbjAAKUjoU8Dq2nyS_t776J9dn6lw,11979
132
+ deepdoctection/utils/pdf_utils.py,sha256=MCLOX7_EAooV-FHMZzs3V_sL-9tgsy4I6pwZl80I2tA,7524
133
+ deepdoctection/utils/settings.py,sha256=-Zx_fm4kWeBro22aHsrzvd48ieD5JMca90vZmSXXMj0,12188
134
134
  deepdoctection/utils/systools.py,sha256=D2lvRkMhSFsKtODJjblYo4fPZO8zVQ9O4X2tZ8Nn_rY,1923
135
135
  deepdoctection/utils/tqdm.py,sha256=1MDzkqgCAO3o8OkQTL-46866MpLqbMab9w6go3IpbKI,1830
136
- deepdoctection/utils/transform.py,sha256=shw0RPKNWi5l5e_-GqqN8kUFE3DnU02gC5e-zyxX1pY,8273
136
+ deepdoctection/utils/transform.py,sha256=L43iTqe3j1HWwFOTlzjiu45WXMfycW-hvu7vyuKuE-I,8379
137
137
  deepdoctection/utils/utils.py,sha256=OTtOQcXFg0U1t5-bsNui0upUbgYiK-EIBmykAL8kroM,5323
138
- deepdoctection/utils/viz.py,sha256=uq5Jy3007tgtZA8XvhXzCg5YD0DwhHaLY96Gjhd52CY,10113
138
+ deepdoctection/utils/viz.py,sha256=k33P4C1-H-ZDt26ZmEhMkuyLK6r7Mc5f2Pog3LhJSPQ,22574
139
139
  tests/__init__.py,sha256=WDTt4QbToEu6Q8jJJdf8azU9WUHUgMeZE0CS_hIcC6M,725
140
- tests/conftest.py,sha256=ply1GQOh_E302viALTxaD2rw93KHeslUqcCqWLHA97g,17402
140
+ tests/conftest.py,sha256=xPV4rZ4O_XhfiIRsB6IpD-mqDTbrUNFyStIAp58UScw,17477
141
141
  tests/data.py,sha256=CaCg304U8k5LeMBJutqa7HjjJyaiZMRyKS6oBzxKh6I,64681
142
142
  tests/test_utils.py,sha256=3Veh0IjE3qSz69LE1zOQtH2zuW_EgsABe_zZFdCXKQQ,2244
143
143
  tests/analyzer/__init__.py,sha256=IZUsjm3mqsLzGMKvp6Cadlq--EqblZuiOR7yHB5sqPs,641
144
- tests/analyzer/test_dd.py,sha256=kmIerL4c0UYBmfas6vi8sWnO5SEMTjuWvzmaVZ-kYW0,12802
144
+ tests/analyzer/test_dd.py,sha256=9cq0npVdhm1l_AtYSSCcB1Vu9psLeTZfbDopBpJpELY,12499
145
145
  tests/dataflow/__init__.py,sha256=IZUsjm3mqsLzGMKvp6Cadlq--EqblZuiOR7yHB5sqPs,641
146
146
  tests/dataflow/conftest.py,sha256=iDEwkWRxWAiSa-cJguwiQAZAzHjsYEgqHUzYCUl8Wek,2342
147
147
  tests/dataflow/test_common.py,sha256=KRBL_M2YbkpGV7o3LlhYvKp_2x4p6NYDijXyvzLwhho,5389
@@ -225,8 +225,8 @@ tests/train/test_tp_frcnn_train.py,sha256=dIktagVGeb0QSD5jrfGoxIYT3bCeZW9CzLnn2L
225
225
  tests_d2/__init__.py,sha256=C40HhDJkuTKncsp8CLokhQzJ_SQuXfvNB0MRW1En04s,761
226
226
  tests_d2/conftest.py,sha256=fRzm5vHHsW7e2VpWPK6_lQ_gF2r6RZVVItK3t9ETDwo,1554
227
227
  tests_d2/test_d2detect.py,sha256=qmEuuykKO4EIiWtsDXS7VjJJZViY-OTW5eoy6CalRiM,3220
228
- deepdoctection-0.26.dist-info/LICENSE,sha256=GQ0rUvuGdrMNEI3iHK5UQx6dIMU1QwAuyXsxUHn5MEQ,11351
229
- deepdoctection-0.26.dist-info/METADATA,sha256=RCcU3QWEuV2cYpHZLoV7GNs5svDrk6k4cLnLajDWhpA,17987
230
- deepdoctection-0.26.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
231
- deepdoctection-0.26.dist-info/top_level.txt,sha256=M5SFiTbo8DHDkott7vLbRhm9zloW10s2t6_Q0iQn6G0,30
232
- deepdoctection-0.26.dist-info/RECORD,,
228
+ deepdoctection-0.27.dist-info/LICENSE,sha256=GQ0rUvuGdrMNEI3iHK5UQx6dIMU1QwAuyXsxUHn5MEQ,11351
229
+ deepdoctection-0.27.dist-info/METADATA,sha256=1lHtPCj4RdLuvdl9-eBarGP1aJ3vWzsu7x5fFfsPCmo,17929
230
+ deepdoctection-0.27.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
231
+ deepdoctection-0.27.dist-info/top_level.txt,sha256=M5SFiTbo8DHDkott7vLbRhm9zloW10s2t6_Q0iQn6G0,30
232
+ deepdoctection-0.27.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.0)
2
+ Generator: bdist_wheel (0.41.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
tests/analyzer/test_dd.py CHANGED
@@ -125,11 +125,11 @@ def test_dd_analyzer_builds_and_process_image_correctly() -> None:
125
125
  assert page.height == 2339
126
126
  assert page.width == 1654
127
127
  # first number for tp model, second for pt model
128
- assert len(page.text) in {5045}
128
+ assert len(page.text) in {5043, 5045}
129
129
  text_ = page.text_
130
130
  assert text_["text"] == page.text
131
- assert len(text_["text_list"]) == 632
132
- assert len(text_["annotation_ids"]) == 632
131
+ assert len(text_["text_list"]) in {631, 632}
132
+ assert len(text_["annotation_ids"]) in {631, 632}
133
133
 
134
134
 
135
135
  @mark.integration_additional
@@ -187,60 +187,9 @@ def test_dd_analyzer_with_doctr() -> None:
187
187
  assert len(output) == 1
188
188
  page = output[0]
189
189
  assert isinstance(page, Page)
190
- assert len(page.layouts) in {67}
190
+ assert len(page.layouts) in {53}
191
+ print(page.text_no_line_break)
191
192
  assert (
192
193
  page.text_no_line_break
193
- == "Festlegung der VV und angemessene Risikoadjustierung Die W- Pools der DWS Gruppe werden einer Anpassung "
194
- "der Risiken unterzogen, die die Adjustierung ex ante als auch ex post umfasst. Die angewandte robuste soll "
195
- "sicherstellen, dass bei der Festlegung der W sowohl der risikoadjustierten Leistung als auch der Kapital- "
196
- "und Liquiditétsausstattung der DWS Gruppe Rechnung getragen wird. Die mittlung des Gesamtbetrags der Wo "
197
- 'orientiert sich primâr an () der Tragfâhigkeit fur die DWS Gruppe (das heiBt, was kann" die DWS Gruppe '
198
- "langfristig an Wi im Einklang mit regulatorisch Anforderungen gewâhren) und (i) der Leistung (das heilt, "
199
- 'was, sollte" die DWS Gruppe an W gewâhren, um fûr eine angemessene leistungsbezogene Vergltung zu sorgen '
200
- "und gleichzeiti den langfristigen Erfolg des Unternehmens zu sichern). Die DWS Gruppe hat fûr die "
201
- "Festlegung der W auf Ebene der individuellen Mitarbeiter die Grundsâtze fûr die Festlegung der "
202
- 'variablen Vergitung" eingefuhrt. Diese enthalten Information Uber die Faktoren und MessgrôBen, die bei '
203
- "Entscheidungen: zur MI berlcksichtigt werden mussen. Dazu zâhlen beispielsweise Investmentperfomance, "
204
- "Kundenbindung, Erwàgungen Unternehmenskutur sowie Zielvereinbarungen und eistungsbeurteilung im des "
205
- 'Ganzheitliche Leistung" Zudem werden der und Diszipl sowie deren Einfluss auf die W einbezogen. Bei per '
206
- "Ermessensentséheidlung erfolgenden Sub-PoolZuteilungen verwendet das DWS DCC die internen (finanziellen "
207
- "und nichtfinanziellen) Balanced Scorecard.Kennzahlen zur Erstellung differenzierter und leistungsbezogener "
208
- "W-Pools. Vergutung fûr das Jahr 2018 Nach der hervorragenden Entwicklung im Jahr 2017 hatte die globale "
209
- "emegemseralugliaoe 2018 mit einigen Schwierigkeiten zu kàmpfen. Grûnde waren ungûnstige Marktbedin gungen, "
210
- "stârkere geopolitische Spannungen und die negative Stimmung unter den Anlegern, vor allem am europàischen "
211
- "Retail-Markt. Auch die DWS Gruppe blieb von dieser Entwicklung nicht verschont. Vor diesem Hintergrund hat "
212
- "das DCC die Tragfàhigkeit der W fûr das Jahr 2018 kontrolliert und festgestellt, dass die Kapital- und "
213
- "Liquidititsaustattung der DWS Gruppe unter gung des Ergebnisses vor und nach Steuern klar Uber den "
214
- "regulatorisch vorgeschriebenen Mindestanforderungen und dem Schwellenwert fûr die Risikotoleranz liegt. "
215
- "Als Teil der im Màrz 20191 fûr das Performance- Jahr 2018 gewâhrten W wurde die Gruppenkomponente allen "
216
- "berechtigten gewàhrt. Der der Bank AGI hat fûr 2018 unter Berlcksichtigung der betrâchtlichen Leistungen "
217
- "der auf Basis der Bewertung der vier festgelegten! Leistungs- undi in seinem von 70 % festgelegt. einen "
218
- "Zielerreichungsgrad Identifizierung von Risikotràgern Gemas Gesetz vom 17 Dezember 2010 uber die "
219
- "Organismen "
220
- "fûr gemeinsame Anlagen (in seiner jeweils gultigen Fassung) sowie den ESMA-Leitinien unter "
221
- "Berlcksichtigung "
222
- "der OGAW- Richtlinie hat die Gesellschaft Mitarbeiter mit wesentlichem Einfluss auf das Risikoprofil der "
223
- 'Gesellschaft ermittelt GRisikotrâger"). Das Identifi-enungsveariahren basiert auf der Bewertung des '
224
- "Einflusses folgender Kategorien von Mitarbeitern auf das Risikoprofil der Gesellschaft oder einen von "
225
- "ihr verwalteten Fonds: (a) GeschaitstlhungSenion Management, (b) Portfolio- Investmentmanager, (c) "
226
- "Kontrolfunktionen, (d) Mitarbeiter mit Leitungsfunktionen in Verv waltung, Marketing und Human Resources, "
227
- "(e) sonstige Mitarbeiter (Risikotràger) mit wesentlichem Einfluss, ( sonstige Mitarbeiter in der gleichen "
228
- "Vergltungsstufe wie sonstige Risikotràger. Mindestens 40 % der W fûr Risikotrâger werden aufgeschoben "
229
- "vergeben. Des Weiteren werder fur wichtige Anlageexperten mindestens 50 % sowohl des direkt ausgezahlten "
230
- "als auch des aufgeschobenen Teils in Form von aktienbasierten oder fondsbasierten Instrumenten der DWS "
231
- "Gruppe gewâhrt. Alle aufgeschobenen Komponenten sind bestimmten Leistungs und Verfilledingungen "
232
- "unterworfen, "
233
- "um eine angemessene nachtrâgliche Risikoadjustierung zu gewâhr leisten. Bei einem W-Betrag von weniger als "
234
- "EUR 50.000 erhalten Risikotrâger ihre gesamte Wi in bar und ohne Aufschub. Zusammenfassung der zur "
235
- "Vergitung fur die fur 2018 Jahresdurchschnitt der Mitarbeiterzahl 139 EUR 15.315.952 Gesamtvergltung: "
236
- "Fixe Vergutung EUR 13.151.856 Variable Vergitung EUR 2.164.096 davon: Carried Interest EURO "
237
- "Gesamtvergltung "
238
- "fûr Senior Management EUR 1.468.434 Gesamtvergitung fur sonstige Risikotrâger EUR 324.229 Gesamtvergutung "
239
- "fûr Mitarbeiter mit Kontrollfunktionen EUR 554.046 Vergitungsdaten fur Delegierte, an die die Gesellschaft "
240
- "Portfolio- oder Riskomamnagemenaufyaben ubertragen hat, sind nicht in der Tabelle erfasst. Unter "
241
- "Berlcksichtigung: diverser Verginungsbestanteile entsprechend den Definitionen in den ESMA-Leitinien, die "
242
- "Geldzahlungen oder -leistungen (wie Bargeld, Anteile, Optionsscheir Rentenbeitràge) oder Nicht-Idirekte) "
243
- "Geldleistungen (wie Gehalsnebenleistungen oder Sondervergitungen fûr Fahrzeuge, Mobiltelefone, usw.) "
244
- 'umfassen. Senior Management" umfasst nur den der Gesellschaft. Der Vorstand erfllt die als Fuhrungskrâfte '
245
- "der Gesellschaft. Ober den hinaus wurden keine Fuhrungskrâfte identifiziert. 22 "
194
+ == """Festlegung der VV und angemessene Risikoadjustierung Die W-Pools der DWS Gruppe werden einer angemessenen Anpassung der Risiken unterzogen, die die Adjustierung ex ante als auch ex post umfasst. Die angewandte robuste Method soll sicherstellen, dass bei der Festlegung der W sowohl der risikoadjustierten Leistung als auch der Kapital- und Liquidititsausstattung der DWS Gruppe Rechnung getragen wird. Die mittlung des Gesamtbetrags der W orientiert sich primâr an () der Tragfâhigkeit fûr die DWS Gruppe (das heilt, was kann" die DWS Gruppe langfristig an Wi im Einklang mitr regulatorisch Anforderungen gewâhren) und (i) der Leistung (das heilt, was sollte" die DWS Gruppe an W gewâhren, um fûr eine angemessene leistungsbezogene Vergltung zus sorgen und gleichzeiti den langfristigen Erfolg des zu sichern). Die DWS Gruppe hat fûr die Festlegung der W auf Ebene der individuellen Mitarbeiter die Grundsâtze fûr die Festlegung der variablen Vergutung" eingefuhrt. Diese enthalten Informatione Uber die Faktoren und MessgroBen, die bei Entscheidungen zur MI berlcksichtigt werden mussen. Dazu zâhlen beispielsweise Investmentperfomance, Kundenbindung, Erwàgungen Unternehmenskutur sowie Zielvereinbarungen und Leistungsbeurteilung im Rahmen des Ganzheitliche Leistung" -Ansatzes. Zudem werden Hinweise der Kontrolfunktionen und Diszipli sowie Einfluss auf die W einbezogen. Bei per Ermessensentscheidlung erfolgenden Sub-PoolZuteilungen verwendet das DWS DCC die internen (finanziellen und nichtfinanziellen) Balanced Scorecar-Kennzahlen zur Erstellung differenzierter und leistungsbezogener W-Pools. Vergutung fûr das Jahr 2018 Nach der hervorragenden Entwicklung im Jahr 2017 hatte die globale Vemogemsenwalugabande 2018 mit einigen Schwierigkeiten zu kâmpfen. Grûnde waren ungunstige Marktbedin- gungen, stârkere geopolitische Spannungen und die negative Stimmung unter den Anlegern, vor allem am europàischen Retail-Markt. Auch die DWS Gruppe blieb von dieser Entwicklung nicht verschont. Vor diesem Hintergrund hat das DCC die Tragfâhigkeit der W fûr das Jahr 2018 kontrolliert und festgestellt, dass die Kapital- und Liquidititsausstattung der DWS Gruppe unter Berlcksichti- gung des Ergebnisses vor und nach Steuern klar uber den regulatorisch vorgeschriebenen Mindestanfordenungen und dem internen Schwellenwert fûr die Risikotoleranz liegt. Als Teil der im Màrz 2019 fûr das Performance-Jahr 2018 gewâhrten W wurde die Gruppenkomponente allen berechtigten Mitarbeitern auf Basis der Bewertung der vier festgelegten Leistungs kennzahlen gewâhrt. Der Vorstand der Deutsche Bank AGI hat fûr 2018 unter Berlcksichtigung der betrâchtlichen Leistungen der Mitarbeiter undi in seinem Ermessen einen Zielerreichungsgrad von 70 % festgelegt. Identifizierung von Risikotrâgern Gemas Gesetz vom 17 Dezember 2010 uber die Organismen fûr gemeinsame Anlagen (in seiner jeweils gultigen Fassung) sowie den ESMA-Leitinien unter Berlcksichtigung der OGAW- Richtlinie hat die Gesellschaft Mitarbeiter mit wesentlichem Einfluss auf das Risikoprofil der Gesellschaft ermittelt GRisikotràger"). Das Identifiaenungsveriahren basiert auf der Bewertung des Einflusses folgender Kategorien von Mitarbeitern auf das Risikoprofil der Gesellschaft oder einen von ihr ver walteten Fonds: (a) GeschaitstuhungSenion Management, (b) Portfolio- Investmentmanager, (c) Kontrollfunktionen, (d) Mitarbeiter mit Leitungsfunktionen in Verwaltung, Marketing und Human Resources, (e) sonstige Mitarbeiter (Risikotràger) mit wesentlichem Einfluss, ( sonstige Mitarbeiter in der gleichen Vergitungsstufe wie sonstige Risikotrâger. Mindestens 40 % der W fûr Risikotrâger werden aufgeschoben vergeben. Des Weiteren werden fur wichtige Anlageexperten mindestens 50 % sowohl des direkt ausgezahlten als auch des aufgeschobenen Teils in Form von aktienbasierten oder fondsbasierten Instrumenten der DWS Gruppe gewâhrt. Alle aufgeschobenen Komponenten sind bestimmten Leistungs- und Verfalledingungen unterworfen, um eine angemessene nachtrâgliche Risikoadjustierung zu gewâhr leisten. Bei einem W-Betrag von weniger als EUR 50.000 erhalten Risikotrâger ihre gesamte Wi in bar und ohne Aufschub. Zusammenfassung der zur Vergutung fur die Gesellschaft fur 20181 Jahresdurchschnitt der Mitarbeiterzahl 139 EUR 15.315. .952 Gesamtvergutung? Fixe Vergutung EUR 13.151.856 Variable Vergitung EUR 2.164.096 davon: Carried Interest EURO Gesamtvergltung fûr Senior Management EUR 1.468.434 Gesamtvergutungi fur sonstige Risikotràger EUR 324.229 Gesamtvergutung fûr Mitarbeiter mit Kontrollfunktionen EUR 554.046 Vergltungsdaten fûr Delegierte, an die die Gesellschaft Portfolio- oder Riskomansgementaudpaben ubertragen hat, sind nicht in der Tabelle erfasst. Unter Berlcksichtigung diverser Vergatungsbestandtele entsprechend den Definitionen in den ESMA-Leitinien, die Geldzahlungen oder -leistungen (wie Bargeld, Anteile, Optionsscheir Rentenbeitràge) oder Nicht-Idirekte) Geldleistungen (wie Gehalsnebenleistungen oder Sondervergitungen fûr Fahrzeuge, Mobiltelefone, usw.) umfassen. Senior Management" umfasst nur den Vorstand der Gesellschaft. Der Vorstand erfillt die Definition als Fuhrungskrâfte der Gesellschaft. Ober den Vorstand hinaus wurden keine weitere Fuhrungskrâfte identifiziert. 22 """ # pylint: disable=C0301
246
195
  )
tests/conftest.py CHANGED
@@ -48,6 +48,7 @@ from deepdoctection.utils.settings import (
48
48
  update_black_list,
49
49
  )
50
50
  from deepdoctection.utils.systools import get_package_path
51
+ from deepdoctection.utils.viz import viz_handler
51
52
 
52
53
  from .data import (
53
54
  Annotations,
@@ -496,3 +497,4 @@ def pytest_sessionstart() -> None:
496
497
  update_all_types_dict()
497
498
  for item in TestType:
498
499
  update_black_list(item.value)
500
+ viz_handler.refresh()