deepdoctection 0.32__py3-none-any.whl → 0.34__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 (111) hide show
  1. deepdoctection/__init__.py +8 -25
  2. deepdoctection/analyzer/dd.py +84 -71
  3. deepdoctection/dataflow/common.py +9 -5
  4. deepdoctection/dataflow/custom.py +5 -5
  5. deepdoctection/dataflow/custom_serialize.py +75 -18
  6. deepdoctection/dataflow/parallel_map.py +3 -3
  7. deepdoctection/dataflow/serialize.py +4 -4
  8. deepdoctection/dataflow/stats.py +3 -3
  9. deepdoctection/datapoint/annotation.py +78 -56
  10. deepdoctection/datapoint/box.py +7 -7
  11. deepdoctection/datapoint/convert.py +6 -6
  12. deepdoctection/datapoint/image.py +157 -75
  13. deepdoctection/datapoint/view.py +175 -151
  14. deepdoctection/datasets/adapter.py +30 -24
  15. deepdoctection/datasets/base.py +10 -10
  16. deepdoctection/datasets/dataflow_builder.py +3 -3
  17. deepdoctection/datasets/info.py +23 -25
  18. deepdoctection/datasets/instances/doclaynet.py +48 -49
  19. deepdoctection/datasets/instances/fintabnet.py +44 -45
  20. deepdoctection/datasets/instances/funsd.py +23 -23
  21. deepdoctection/datasets/instances/iiitar13k.py +8 -8
  22. deepdoctection/datasets/instances/layouttest.py +2 -2
  23. deepdoctection/datasets/instances/publaynet.py +3 -3
  24. deepdoctection/datasets/instances/pubtables1m.py +18 -18
  25. deepdoctection/datasets/instances/pubtabnet.py +30 -29
  26. deepdoctection/datasets/instances/rvlcdip.py +28 -29
  27. deepdoctection/datasets/instances/xfund.py +51 -30
  28. deepdoctection/datasets/save.py +6 -6
  29. deepdoctection/eval/accmetric.py +32 -33
  30. deepdoctection/eval/base.py +8 -9
  31. deepdoctection/eval/cocometric.py +13 -12
  32. deepdoctection/eval/eval.py +32 -26
  33. deepdoctection/eval/tedsmetric.py +16 -12
  34. deepdoctection/eval/tp_eval_callback.py +7 -16
  35. deepdoctection/extern/base.py +339 -134
  36. deepdoctection/extern/d2detect.py +69 -89
  37. deepdoctection/extern/deskew.py +11 -10
  38. deepdoctection/extern/doctrocr.py +81 -64
  39. deepdoctection/extern/fastlang.py +23 -16
  40. deepdoctection/extern/hfdetr.py +53 -38
  41. deepdoctection/extern/hflayoutlm.py +216 -155
  42. deepdoctection/extern/hflm.py +35 -30
  43. deepdoctection/extern/model.py +433 -255
  44. deepdoctection/extern/pdftext.py +15 -15
  45. deepdoctection/extern/pt/ptutils.py +4 -2
  46. deepdoctection/extern/tessocr.py +39 -38
  47. deepdoctection/extern/texocr.py +14 -16
  48. deepdoctection/extern/tp/tfutils.py +16 -2
  49. deepdoctection/extern/tp/tpcompat.py +11 -7
  50. deepdoctection/extern/tp/tpfrcnn/config/config.py +4 -4
  51. deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py +1 -1
  52. deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py +5 -5
  53. deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py +6 -6
  54. deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py +4 -4
  55. deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py +5 -3
  56. deepdoctection/extern/tp/tpfrcnn/preproc.py +5 -5
  57. deepdoctection/extern/tpdetect.py +40 -45
  58. deepdoctection/mapper/cats.py +36 -40
  59. deepdoctection/mapper/cocostruct.py +16 -12
  60. deepdoctection/mapper/d2struct.py +22 -22
  61. deepdoctection/mapper/hfstruct.py +7 -7
  62. deepdoctection/mapper/laylmstruct.py +22 -24
  63. deepdoctection/mapper/maputils.py +9 -10
  64. deepdoctection/mapper/match.py +33 -2
  65. deepdoctection/mapper/misc.py +6 -7
  66. deepdoctection/mapper/pascalstruct.py +4 -4
  67. deepdoctection/mapper/prodigystruct.py +6 -6
  68. deepdoctection/mapper/pubstruct.py +84 -92
  69. deepdoctection/mapper/tpstruct.py +3 -3
  70. deepdoctection/mapper/xfundstruct.py +33 -33
  71. deepdoctection/pipe/anngen.py +39 -14
  72. deepdoctection/pipe/base.py +68 -99
  73. deepdoctection/pipe/common.py +181 -85
  74. deepdoctection/pipe/concurrency.py +14 -10
  75. deepdoctection/pipe/doctectionpipe.py +24 -21
  76. deepdoctection/pipe/language.py +20 -25
  77. deepdoctection/pipe/layout.py +18 -16
  78. deepdoctection/pipe/lm.py +49 -47
  79. deepdoctection/pipe/order.py +63 -65
  80. deepdoctection/pipe/refine.py +102 -109
  81. deepdoctection/pipe/segment.py +157 -162
  82. deepdoctection/pipe/sub_layout.py +50 -40
  83. deepdoctection/pipe/text.py +37 -36
  84. deepdoctection/pipe/transform.py +19 -16
  85. deepdoctection/train/d2_frcnn_train.py +27 -25
  86. deepdoctection/train/hf_detr_train.py +22 -18
  87. deepdoctection/train/hf_layoutlm_train.py +49 -48
  88. deepdoctection/train/tp_frcnn_train.py +10 -11
  89. deepdoctection/utils/concurrency.py +1 -1
  90. deepdoctection/utils/context.py +13 -6
  91. deepdoctection/utils/develop.py +4 -4
  92. deepdoctection/utils/env_info.py +52 -14
  93. deepdoctection/utils/file_utils.py +6 -11
  94. deepdoctection/utils/fs.py +41 -14
  95. deepdoctection/utils/identifier.py +2 -2
  96. deepdoctection/utils/logger.py +15 -15
  97. deepdoctection/utils/metacfg.py +7 -7
  98. deepdoctection/utils/pdf_utils.py +39 -14
  99. deepdoctection/utils/settings.py +188 -182
  100. deepdoctection/utils/tqdm.py +1 -1
  101. deepdoctection/utils/transform.py +14 -9
  102. deepdoctection/utils/types.py +104 -0
  103. deepdoctection/utils/utils.py +7 -7
  104. deepdoctection/utils/viz.py +70 -69
  105. {deepdoctection-0.32.dist-info → deepdoctection-0.34.dist-info}/METADATA +7 -4
  106. deepdoctection-0.34.dist-info/RECORD +146 -0
  107. {deepdoctection-0.32.dist-info → deepdoctection-0.34.dist-info}/WHEEL +1 -1
  108. deepdoctection/utils/detection_types.py +0 -68
  109. deepdoctection-0.32.dist-info/RECORD +0 -146
  110. {deepdoctection-0.32.dist-info → deepdoctection-0.34.dist-info}/LICENSE +0 -0
  111. {deepdoctection-0.32.dist-info → deepdoctection-0.34.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: deepdoctection
3
- Version: 0.32
3
+ Version: 0.34
4
4
  Summary: Repository for Document AI
5
5
  Home-page: https://github.com/deepdoctection/deepdoctection
6
6
  Author: Dr. Janis Meyer
@@ -23,12 +23,13 @@ Requires-Dist: jsonlines ==3.1.0
23
23
  Requires-Dist: lazy-imports ==0.3.1
24
24
  Requires-Dist: mock ==4.0.3
25
25
  Requires-Dist: networkx >=2.7.1
26
- Requires-Dist: numpy >=1.21
26
+ Requires-Dist: numpy <2.0,>=1.21
27
27
  Requires-Dist: packaging >=20.0
28
28
  Requires-Dist: Pillow >=10.0.0
29
29
  Requires-Dist: pypdf >=3.16.0
30
30
  Requires-Dist: pyyaml >=6.0.1
31
31
  Requires-Dist: pyzmq >=16
32
+ Requires-Dist: scipy >=1.13.1
32
33
  Requires-Dist: termcolor >=1.1
33
34
  Requires-Dist: tabulate >=0.7.7
34
35
  Requires-Dist: tqdm ==4.64.0
@@ -68,12 +69,13 @@ Requires-Dist: jsonlines ==3.1.0 ; extra == 'pt'
68
69
  Requires-Dist: lazy-imports ==0.3.1 ; extra == 'pt'
69
70
  Requires-Dist: mock ==4.0.3 ; extra == 'pt'
70
71
  Requires-Dist: networkx >=2.7.1 ; extra == 'pt'
71
- Requires-Dist: numpy >=1.21 ; extra == 'pt'
72
+ Requires-Dist: numpy <2.0,>=1.21 ; extra == 'pt'
72
73
  Requires-Dist: packaging >=20.0 ; extra == 'pt'
73
74
  Requires-Dist: Pillow >=10.0.0 ; extra == 'pt'
74
75
  Requires-Dist: pypdf >=3.16.0 ; extra == 'pt'
75
76
  Requires-Dist: pyyaml >=6.0.1 ; extra == 'pt'
76
77
  Requires-Dist: pyzmq >=16 ; extra == 'pt'
78
+ Requires-Dist: scipy >=1.13.1 ; extra == 'pt'
77
79
  Requires-Dist: termcolor >=1.1 ; extra == 'pt'
78
80
  Requires-Dist: tabulate >=0.7.7 ; extra == 'pt'
79
81
  Requires-Dist: tqdm ==4.64.0 ; extra == 'pt'
@@ -99,12 +101,13 @@ Requires-Dist: jsonlines ==3.1.0 ; extra == 'tf'
99
101
  Requires-Dist: lazy-imports ==0.3.1 ; extra == 'tf'
100
102
  Requires-Dist: mock ==4.0.3 ; extra == 'tf'
101
103
  Requires-Dist: networkx >=2.7.1 ; extra == 'tf'
102
- Requires-Dist: numpy >=1.21 ; extra == 'tf'
104
+ Requires-Dist: numpy <2.0,>=1.21 ; extra == 'tf'
103
105
  Requires-Dist: packaging >=20.0 ; extra == 'tf'
104
106
  Requires-Dist: Pillow >=10.0.0 ; extra == 'tf'
105
107
  Requires-Dist: pypdf >=3.16.0 ; extra == 'tf'
106
108
  Requires-Dist: pyyaml >=6.0.1 ; extra == 'tf'
107
109
  Requires-Dist: pyzmq >=16 ; extra == 'tf'
110
+ Requires-Dist: scipy >=1.13.1 ; extra == 'tf'
108
111
  Requires-Dist: termcolor >=1.1 ; extra == 'tf'
109
112
  Requires-Dist: tabulate >=0.7.7 ; extra == 'tf'
110
113
  Requires-Dist: tqdm ==4.64.0 ; extra == 'tf'
@@ -0,0 +1,146 @@
1
+ deepdoctection/__init__.py,sha256=lgfD5PlxwSqTwMnKBtcpzKH9emJ4UtyWaWrpM9Pn0Ng,12596
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=j3G6PFmXe9XBTwtu8-g9D3yAx7obaNzfZ2yl7rEOUqg,20234
5
+ deepdoctection/configs/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
6
+ deepdoctection/configs/conf_dd_one.yaml,sha256=d4ZTMQ1oTIYMFctQAaQBKK6iQP4LsViUDrPvsnaLumo,2220
7
+ deepdoctection/configs/conf_tesseract.yaml,sha256=oF6szDyoi15FHvq7yFUNIEjfA_jNLhGxoowiRsz_zY4,35
8
+ deepdoctection/dataflow/__init__.py,sha256=CWRHMpmJaPk4xY_oIIFubCt-z11SguWrMWxHZ7rdrvY,845
9
+ deepdoctection/dataflow/base.py,sha256=z4DCComSj5wStEPjtk0093cNNGfUMiDqx8dqz36nS_o,6221
10
+ deepdoctection/dataflow/common.py,sha256=MyGA2VWlNMjQdIN_Jd-o0Ec3bDJmjQit4Nv0v43OCSQ,10119
11
+ deepdoctection/dataflow/custom.py,sha256=3CK_1oL9p6nbOq8WtH5_vQUo70_8Z8pXY7kG0OFqzug,6803
12
+ deepdoctection/dataflow/custom_serialize.py,sha256=CKeyw2Ayq_qAl0O5BoKkIOFJgteCt78h9QFTI23XhmQ,22818
13
+ deepdoctection/dataflow/parallel_map.py,sha256=8FhxJBWV-kjJrJ27jQtP3yYF6Ev6rz98worO60oi96c,15837
14
+ deepdoctection/dataflow/serialize.py,sha256=4pYC7m9h53JCu99waVeKpHDpsCDDdYCrSZpP2QYSsgs,4555
15
+ deepdoctection/dataflow/stats.py,sha256=Bsr6v7lcesKXUYtO9wjqlzx_Yq_uyIF3Lel-tQ0i4wI,9619
16
+ deepdoctection/datapoint/__init__.py,sha256=3K406GbOPhoEp8koVaSbMocmSsmWifnSZ1SPb7C1lOY,1643
17
+ deepdoctection/datapoint/annotation.py,sha256=3hDwNf3bm7qi0xnvfKn459hxZe4BdiLPiFt03hJBbUQ,22517
18
+ deepdoctection/datapoint/box.py,sha256=tkFuVM6xfx2jL7W4UED4qHXV572LSRdIsVJbrEiyIxI,23524
19
+ deepdoctection/datapoint/convert.py,sha256=9L3YS89nGPAV8dqPZ-KOLVxvatj_zax2yP5RD-fuZCU,6718
20
+ deepdoctection/datapoint/image.py,sha256=WyGcVYNrC-sv7bxODunEttxcQCFhplpWkWLLVQ266C0,32766
21
+ deepdoctection/datapoint/view.py,sha256=Hdz67F8UtIkQjFW6U2mKeQ1WIdaXq4dOx95ymyQFLiU,42137
22
+ deepdoctection/datasets/__init__.py,sha256=-A3aR90aDsHPmVM35JavfnQ2itYSCn3ujl4krRni1QU,1076
23
+ deepdoctection/datasets/adapter.py,sha256=Ly_vbOAgVI73V41FUccnSX1ECTOyesW_qsuvQuvOZbw,7796
24
+ deepdoctection/datasets/base.py,sha256=DT4i-d74sIEiUNC6UspIHNJuHSK0t1dBv7qwadg4rLw,22341
25
+ deepdoctection/datasets/dataflow_builder.py,sha256=cYU2zV3gZW2bFvMHimlO9VIl3BAUaCwML08cCIQ8Em4,4107
26
+ deepdoctection/datasets/info.py,sha256=6y5TfiUhQppynbMFP5JmUPk95ggsVCtGIw4dYh2lVus,20501
27
+ deepdoctection/datasets/registry.py,sha256=ZjzVzjsCgNXJuZZZtR98_yKocADmh4EBGV5JqJbGjWk,2543
28
+ deepdoctection/datasets/save.py,sha256=khYQ4t94FOu9RWMimP9E4kASq25f61SIow78NHaX1pg,3349
29
+ deepdoctection/datasets/instances/__init__.py,sha256=XEc_4vT5lDn6bbZID9ujDEumWu8Ec2W-QS4pI_bfWWE,1388
30
+ deepdoctection/datasets/instances/doclaynet.py,sha256=wRZT7wMTilZBLZ1gKY2cWReD1EGT735vOOTy0pD0N6M,12038
31
+ deepdoctection/datasets/instances/fintabnet.py,sha256=qYzFK1dWF6MEPkHamP255DvAzlQT_GnkvDe1aM7CgjA,12006
32
+ deepdoctection/datasets/instances/funsd.py,sha256=jxxpOq14-S0tX_IpUzKyKc6hWnKL4UUB-Bp7do3MPNY,6973
33
+ deepdoctection/datasets/instances/iiitar13k.py,sha256=CKB9ZduKGBdHK3hiCKfAV7_s6PjEufHJUdj6H6JqED0,6697
34
+ deepdoctection/datasets/instances/layouttest.py,sha256=CbaPKTA2103kMfOAsxGQkJT5xwlUJ104O4HA7Reo_MY,4400
35
+ deepdoctection/datasets/instances/publaynet.py,sha256=aotY3O_W4fx_OVpkeKVukfeBTjiQm92gIaPW6FeGYHw,5238
36
+ deepdoctection/datasets/instances/pubtables1m.py,sha256=UMomvs9X2d2aZhof9Rt42ud_PZyIfC-4j7oR39mTw1I,12297
37
+ deepdoctection/datasets/instances/pubtabnet.py,sha256=l8qxbfKbXp7czJBHrUafK2hXz2qLpzL5Cbu_LsuvZQk,8592
38
+ deepdoctection/datasets/instances/rvlcdip.py,sha256=bRcpE5XcNV0-7C8DHl0WNdzJzLFr6nOMaUU6xXSjeVs,6624
39
+ deepdoctection/datasets/instances/xfund.py,sha256=AhAdaGhGQVL32WBbvThhXSwSy_WoP_Mv80azXU5oqLI,8784
40
+ deepdoctection/datasets/instances/xsl/__init__.py,sha256=TX_P6tqDOF1LK1mi9ruAl7x0mtv1Asm8cYWCz3Pe2dk,646
41
+ deepdoctection/datasets/instances/xsl/pascal_voc.xsl,sha256=DlzFV2P8NtQKXVe96i-mIcPWmL6tsW7NQjgCuz2pCL4,1952
42
+ deepdoctection/eval/__init__.py,sha256=rbns4tSEQ30QLj8h0mm3A0dCaKuN9LDxxpVypKKSXSE,932
43
+ deepdoctection/eval/accmetric.py,sha256=4bND-xz9AZu9ACYRkEzn9V6Jn8MEiqnF7kxSp4k_baE,19655
44
+ deepdoctection/eval/base.py,sha256=gCvhTdwEaCKplYTWPMjGvtB_0Vbq2KBJWFHq8mMlLPA,4814
45
+ deepdoctection/eval/cocometric.py,sha256=Co7XaLQzp7qxw8UQaG2D68PzY6eA9aRNueeo_zaMJLM,8777
46
+ deepdoctection/eval/eval.py,sha256=B9PUZBjj6KzXHLOxUVn3QHiOcBQogfJmp9mjopbMo9k,19721
47
+ deepdoctection/eval/registry.py,sha256=v4mp-s67vBVRu1nQzuGlYPViQnMSeIXEcF_WmvfUCoU,1051
48
+ deepdoctection/eval/tedsmetric.py,sha256=rKw-734Y9CpBtIfkBSPQF2vAZxnIdWrI9Zc723P7RxI,9529
49
+ deepdoctection/eval/tp_eval_callback.py,sha256=SXsXumoyxq-MIH9Cep5eUOwnNshMbKmC6mYOGwCg0pM,5283
50
+ deepdoctection/extern/__init__.py,sha256=9Iks9b4Q_LynjcV167TVCoK8YsQRUcA2jjmAmDNA_X8,1056
51
+ deepdoctection/extern/base.py,sha256=ajzFzD9BrFwnly4SziN8PadI-PBOzzVRlIGPm_sNllE,24142
52
+ deepdoctection/extern/d2detect.py,sha256=zrKv1yurApnjD7QZIZk_8LYCahjmN82MQUjHjv8zvkQ,22127
53
+ deepdoctection/extern/deskew.py,sha256=sPoixu8S9he-0wbs-jgxtPE2V9BiP4-3uZlb6F5Y1SA,3077
54
+ deepdoctection/extern/doctrocr.py,sha256=T3_tvlih22_dVCBZypS1Y8tjQQB1fkAxIbGdUGHIapQ,24473
55
+ deepdoctection/extern/fastlang.py,sha256=F4gK-SEwcCujjxH327ZDzMGWToJ49xS_dCKcePQ9IlY,4780
56
+ deepdoctection/extern/hfdetr.py,sha256=1NPW_u5eH2tP3ixZ91l4WR-O-wLVcrFsLWA7BqID0oM,12055
57
+ deepdoctection/extern/hflayoutlm.py,sha256=KfoWx9_Rpa1Y2L51HLrYvenfWaTB4SVTmVJH00Cqb-s,56510
58
+ deepdoctection/extern/hflm.py,sha256=kwS6kcSlY_2m9u0RzBLTRq-UMM7c1PhyUaDTvSdejus,9217
59
+ deepdoctection/extern/model.py,sha256=ViHHKPvbGmLCPw7ZESv_rmjlkA90UiBU6oZiHOMqNSw,59869
60
+ deepdoctection/extern/pdftext.py,sha256=9EvDstMBeOeCFXM21wKaj5iTOUJSt8_50RfGdMcMjIA,4048
61
+ deepdoctection/extern/tessocr.py,sha256=GCTcVHm6oOXS2Xq76j-xY9etRDDJA5qfqWJ5AJ-Kn8k,17400
62
+ deepdoctection/extern/texocr.py,sha256=yMt5ZzKtsjd7ogrcNXba7zccGGGF9LXK194EtER6YNQ,5804
63
+ deepdoctection/extern/tpdetect.py,sha256=yAk1duQdoX-_pHLHgvhU7OOSiDy863q6XUMpjpYR734,8477
64
+ deepdoctection/extern/pt/__init__.py,sha256=3Cu0ZHjbYsJomru7-RQXEHihEQLegZrmLetlHiqS58I,742
65
+ deepdoctection/extern/pt/nms.py,sha256=Zr1rwWSnMKg2Ukq1N4i9C-ey-9bS5TlfJ9YTL8d1RwA,1573
66
+ deepdoctection/extern/pt/ptutils.py,sha256=AerrFR8nCN6-RrTbSqZhH3Q2Cn-WcC5RnE5XO9Pl1IM,1994
67
+ deepdoctection/extern/tp/__init__.py,sha256=8QMkcA7tChCr1QXiA0551lZS2jTsECBrrL2YUanpFAk,706
68
+ deepdoctection/extern/tp/tfutils.py,sha256=U586EuPGDLSuO6hbDrCHKshYoGmuV9WPP1jZjmQW9uw,3553
69
+ deepdoctection/extern/tp/tpcompat.py,sha256=rPW_JrYtz9PbV20dZiMKm6DTrjS1A3rAdhrh8PG9BuM,5461
70
+ deepdoctection/extern/tp/tpfrcnn/__init__.py,sha256=OzDaR5A8HGz9a4VwjLiR9rN1Nf1cSebv8DVEMxStFOw,703
71
+ deepdoctection/extern/tp/tpfrcnn/common.py,sha256=fCxwi2u752ZlI_DtIkLC_x9j9tyo1nnirAi2PmnziD4,3830
72
+ deepdoctection/extern/tp/tpfrcnn/predict.py,sha256=957dnhCByS-FZH13efFWADhodaV4lKto-ikLPetfvEQ,4338
73
+ deepdoctection/extern/tp/tpfrcnn/preproc.py,sha256=rMciBHGzNLRax8zpRrCv16lMnDHGimovIqLTp853WtA,12011
74
+ deepdoctection/extern/tp/tpfrcnn/config/__init__.py,sha256=RhJiXId6vUSw_Pi49SPwj0jrf61VxxptXoGeBKtT42M,705
75
+ deepdoctection/extern/tp/tpfrcnn/config/config.py,sha256=-T8AwNAIPR-_5OL1oEqm-Qe9GbN6JjAPVUuUw_XfMVc,11405
76
+ deepdoctection/extern/tp/tpfrcnn/modeling/__init__.py,sha256=RhJiXId6vUSw_Pi49SPwj0jrf61VxxptXoGeBKtT42M,705
77
+ deepdoctection/extern/tp/tpfrcnn/modeling/backbone.py,sha256=H7xoWhRwCh-vlHAL5hCEolKBJ8Y2xe9duZuBuLs0ZwQ,9835
78
+ deepdoctection/extern/tp/tpfrcnn/modeling/generalized_rcnn.py,sha256=4jgWyja-_V44zJVfK4ySmknhnhqfb9f6ruVwbh387aE,13752
79
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_box.py,sha256=UvZ8_34dNjCvxsTxCJvrlpqUpQb9gWxgwRoIKgedIog,7361
80
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_cascade.py,sha256=plovKReX6rFjnL_ravLUUCZ49ZFni87FlRJGK0fXqco,5777
81
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_fpn.py,sha256=Ejd0Z2uUrdAfRjXQoS-lBVPukLlw8geP0yXcF61-nk4,11486
82
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_frcnn.py,sha256=KsL08NNy4PEvBu53HV6bMio58oqIfVrcoqpti27pZOI,18166
83
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_mrcnn.py,sha256=B-rImWGWLNNe4UPJfhTpi4f1LUMCW8YJAbwoJFiG__o,4966
84
+ deepdoctection/extern/tp/tpfrcnn/modeling/model_rpn.py,sha256=F7NGrvKyPZRxnl96zoFyezNzymFJvQghMjGslsc7iFg,9028
85
+ deepdoctection/extern/tp/tpfrcnn/utils/__init__.py,sha256=kiPlXxHlTGN9eI7YE9BgwteOQ_nCYCuqqSLO5JfkCTQ,695
86
+ deepdoctection/extern/tp/tpfrcnn/utils/box_ops.py,sha256=aBLqPg_ApaiimtBRaOsLKTZZFIBh87vVtqjLPMaX9fQ,2379
87
+ deepdoctection/extern/tp/tpfrcnn/utils/np_box_ops.py,sha256=O-q1GQiOEd1lN1MQDsJvHwD2OmBO-qHNeqJ1Qnec93g,3539
88
+ deepdoctection/mapper/__init__.py,sha256=Xqb34aCjslZDQnqQgCSvnloL5DbdT9eHhn-StpVPbzE,1130
89
+ deepdoctection/mapper/cats.py,sha256=EsYdUw8LAPsyqAfGfhNa6gAPVpUhP8GGOchSIKto_e0,15741
90
+ deepdoctection/mapper/cocostruct.py,sha256=GcbUpPFUg67pcOHQluWBFOFcGaYnlZcTmwBDERBVgCA,5978
91
+ deepdoctection/mapper/d2struct.py,sha256=Dx-YnycsIQH4a5-9Gn_yMhiQ-gOFgMueNeH3rhXjuCU,8555
92
+ deepdoctection/mapper/hfstruct.py,sha256=2PjGKsYturVJBimLT1CahYh09KSRAFEHz_QNtC162kQ,5551
93
+ deepdoctection/mapper/laylmstruct.py,sha256=abMZkYU2W0e_VcCm_c0ZXNFuv-lfMFWcTedcZS5EYvE,42935
94
+ deepdoctection/mapper/maputils.py,sha256=eI6ZcDg9W5uB6xQNBZpMIdEd86HlCxTtkJuyROdTqiw,8146
95
+ deepdoctection/mapper/match.py,sha256=E7Qna6zLDIxlI7puOL9BjjZKuRry-zONs8TLWmyEMIQ,9580
96
+ deepdoctection/mapper/misc.py,sha256=rCqHOcsCfVPXs36AWK0rZ2kk0CUM3yXV370_zyIGBJ4,6518
97
+ deepdoctection/mapper/pascalstruct.py,sha256=TzVU1p0oiw0nOuxTFFbEB9vXJxH1v6VUvTJ7MD0manU,3828
98
+ deepdoctection/mapper/prodigystruct.py,sha256=Re4Sd_zAp6qOvbXZLmMJeG0IGEfMQxebuyDeZgMcTa8,6827
99
+ deepdoctection/mapper/pubstruct.py,sha256=YxsrZ-E0pD45Mm_VCPQB9yEgHsTPkw4htt-3DwCRX1k,23361
100
+ deepdoctection/mapper/tpstruct.py,sha256=YNABRibvcISD5Lavg3jouoE4FMdqXEJoM-hNoB_rnww,4481
101
+ deepdoctection/mapper/xfundstruct.py,sha256=_3r3c0K82fnF2h1HxA85h-9ETYrHwcERa6MNc6Ko6Z8,8807
102
+ deepdoctection/pipe/__init__.py,sha256=ywTVoetftdL6plXg2YlBzMfmqBZupq7yXblSVyvvkcQ,1127
103
+ deepdoctection/pipe/anngen.py,sha256=3319l4aaXzcY4w6ItVBNPX8LGS5fHFDVtyVY9KMefac,16393
104
+ deepdoctection/pipe/base.py,sha256=Davjkf3D837y9AIITcx7yXdebmVaz6Moyw_5Wi3nfmg,13561
105
+ deepdoctection/pipe/common.py,sha256=haOb4v0jLX3r41BSC8cVseX2E320_HkSrGlZsQiKE2g,17728
106
+ deepdoctection/pipe/concurrency.py,sha256=AAKRsVgaBEYNluntbDa46SBF1JZ_XqnWLDSWrNvAzEo,9657
107
+ deepdoctection/pipe/doctectionpipe.py,sha256=I6B6HT_BG2ByQ3Rjsui3-Ct31yLmodx-iuZnujXaiSc,8953
108
+ deepdoctection/pipe/language.py,sha256=5zI0UQC6Fh12_r2pfVL42HoCGz2hpHrOhpXAn5m-rYw,5451
109
+ deepdoctection/pipe/layout.py,sha256=xIhnJpyUSbvLbhTXyAKXY1hmG9352jihGYFSclTH_1g,5567
110
+ deepdoctection/pipe/lm.py,sha256=Sp-b7smeslNDyioEfNjuNBUxAuFKn3-OKpCZkGXri_c,16643
111
+ deepdoctection/pipe/order.py,sha256=PnJZiCnxFluJiECXLTZT0c1Rr66vIRBFraa_G41UA2k,40121
112
+ deepdoctection/pipe/refine.py,sha256=RjaOv5dvVxVrMm_ze-yeAqc46Be2I--7UARLezYbNxA,22250
113
+ deepdoctection/pipe/registry.py,sha256=aFx-Tn0xhVA5l5H18duNW5QoTNKQltybsEUEzsMgUfg,902
114
+ deepdoctection/pipe/segment.py,sha256=R-7TfQcBYSPljnQwZ2Sq0zr2CevF-_kxAfgKMA-kRH8,50144
115
+ deepdoctection/pipe/sub_layout.py,sha256=XoERGwrJIQ8WcNb1Mba4ulmUoWMSRF1OiyGEDG4PbVM,12654
116
+ deepdoctection/pipe/text.py,sha256=h9q6d3HFOs7LOg-iwdLUPiQxrPqgunBVNmtYMBrfRQE,11180
117
+ deepdoctection/pipe/transform.py,sha256=9Om7X7hJeL4jgUwHM1CHa4sb5v7Qo1PtVG0ls_3nI7w,3798
118
+ deepdoctection/train/__init__.py,sha256=YFTRAZF1F7cEAKTdAIi1BLyYb6rSRcwq09Ui5Lu8d6E,1071
119
+ deepdoctection/train/d2_frcnn_train.py,sha256=sFc_G-mEpaM8d1CCE0_6Gl4nBh11X2RYRBA3p_ylFJQ,16000
120
+ deepdoctection/train/hf_detr_train.py,sha256=8ydysxzOPE_IPoNFGaHb7PbKr9Nbl41rcY4lbylQavU,10783
121
+ deepdoctection/train/hf_layoutlm_train.py,sha256=e3pekLfe2KeYAI04COiTTL3KKiLDaXxTj0A2vwTvYZo,22425
122
+ deepdoctection/train/tp_frcnn_train.py,sha256=pEpXokSVGveqo82pRnhnAmHPmjQ_8wQWpqM4ZyNHJgs,13049
123
+ deepdoctection/utils/__init__.py,sha256=brBceRWeov9WXMiJTjyJOF2rHMP8trGGRRjhMdZ61nI,2371
124
+ deepdoctection/utils/concurrency.py,sha256=nIhpkSncmv0LBB8PtcOLY-BsRGlfcDpz7foVdgzZd20,4598
125
+ deepdoctection/utils/context.py,sha256=VSnJnTtRGuq3w-0-syTf9DXOhR7WsPvWLLWTxKIBYec,4186
126
+ deepdoctection/utils/develop.py,sha256=4HyTarkFbJwctL-Hgu1TU_LSJppHvaroDbcyHsxhIA8,3444
127
+ deepdoctection/utils/env_info.py,sha256=Fm6A4XfJsYQmW5TzPmwn7_jh9qx5jqYlt00k9NK0yR8,18007
128
+ deepdoctection/utils/error.py,sha256=_3q9VepKfEhsM3H033_Fu0hwBzMSjsWALsjyJbGAZr8,2367
129
+ deepdoctection/utils/file_utils.py,sha256=koYsfHtl0-nh8T9nUb215Rc1X-WDvk2gEjyw-YJVZ34,19019
130
+ deepdoctection/utils/fs.py,sha256=C4ktrzjoVtX9kgycv5YrEigDI9byi65b6_D0aKsGM4Y,10161
131
+ deepdoctection/utils/identifier.py,sha256=QkNaGGqPynHwDPnd3_m8iur4Cv64rcQa7qolCE7Qphk,2159
132
+ deepdoctection/utils/logger.py,sha256=J0OVKiXP_2A82MWbbJoOeMEJ-75aZu5npgaS_yI6mVA,10003
133
+ deepdoctection/utils/metacfg.py,sha256=AGAE-KOymOLsarpUBBYawpVSXImvJyUeOD4LD2W_7Yo,5196
134
+ deepdoctection/utils/mocks.py,sha256=IkN3-IzAl4eX0ibgKIHg8IY7ykVw6BnpF6XnxKnKaZI,2389
135
+ deepdoctection/utils/pdf_utils.py,sha256=H5BdLXvDlvTEfb-3zcRjy207PeqEnaymkG122R7UA4o,8635
136
+ deepdoctection/utils/settings.py,sha256=k6OyuWbj-IPeaO9zT9RZ-5Yad1wNhWGYqGLZdtgXAZY,12464
137
+ deepdoctection/utils/tqdm.py,sha256=cBUtR0L1x0KMeYrLP2rrzyzCamCjpQAKroHXLv81_pk,1820
138
+ deepdoctection/utils/transform.py,sha256=3kCgsEeRkG1efCdkfvj7tUFMs-e2jbjbflq826F2GPU,8502
139
+ deepdoctection/utils/types.py,sha256=_3dmPdCIZNLbgU5QP5k_c5phDf18xLe1kYL6t2nM45s,2953
140
+ deepdoctection/utils/utils.py,sha256=ANzyIX6AY1yc-4gcn6yxksV84sPrJDaUurUNVatAFu8,5168
141
+ deepdoctection/utils/viz.py,sha256=Xm6pKlhM29UWBBGZHlWFl9XYFDAqaYDdwHXwe26Hvqo,25728
142
+ deepdoctection-0.34.dist-info/LICENSE,sha256=GQ0rUvuGdrMNEI3iHK5UQx6dIMU1QwAuyXsxUHn5MEQ,11351
143
+ deepdoctection-0.34.dist-info/METADATA,sha256=YJ5XJnf7zMlDmr6f7vqvFNL11hy-ZEz8VbdYgii0AQo,19169
144
+ deepdoctection-0.34.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
145
+ deepdoctection-0.34.dist-info/top_level.txt,sha256=hs2DdoOL9h4mnHhmO82BT4pz4QATIoOZ20PZmlnxFI8,15
146
+ deepdoctection-0.34.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,68 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # File: detection_types.py
3
-
4
- # Copyright 2021 Dr. Janis Meyer. All rights reserved.
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- """
19
- Typing sheet for the whole package
20
- """
21
-
22
- import queue
23
- from pathlib import Path
24
- from typing import TYPE_CHECKING, Any, Dict, Protocol, Tuple, Type, TypeVar, Union
25
-
26
- import numpy.typing as npt
27
- import tqdm
28
- from numpy import uint8
29
-
30
-
31
- # Type for a general dataclass
32
- class IsDataclass(Protocol): # pylint: disable=R0903
33
- """
34
- type hint for general dataclass
35
- """
36
-
37
- __dataclass_fields__: Dict[Any, Any]
38
-
39
-
40
- # Type for category dict of the DatasetCategories class
41
- KeyValue = Union[str, int]
42
-
43
- # Numpy image type
44
- ImageType = npt.NDArray[uint8]
45
-
46
- # typing for curry decorator
47
- DP = TypeVar("DP")
48
- S = TypeVar("S")
49
- T = TypeVar("T")
50
-
51
- # Some type hints that must be distinguished when runnning mypy and linters
52
- if TYPE_CHECKING:
53
- QueueType = queue.Queue[Any] # pylint: disable=E1136
54
- TqdmType = tqdm.tqdm[Any] # pylint: disable=E1136
55
- BaseExceptionType = Type[BaseException]
56
- else:
57
- BaseExceptionType = bool
58
- QueueType = queue.Queue
59
- TqdmType = tqdm.tqdm
60
-
61
- JsonDict = Dict[str, Any]
62
-
63
- # Type for requirements. A requirement is a Tuple of string and a callable that returns True if the requirement is
64
- # available
65
- Requirement = Tuple[str, bool, str]
66
-
67
- # Pathlike, use this typing for everything where a path (absolute/relative) is involved
68
- Pathlike = Union[str, Path]
@@ -1,146 +0,0 @@
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,,