docling 2.4.1__py3-none-any.whl → 2.4.2__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.
- docling/models/easyocr_model.py +5 -0
- {docling-2.4.1.dist-info → docling-2.4.2.dist-info}/METADATA +1 -1
- {docling-2.4.1.dist-info → docling-2.4.2.dist-info}/RECORD +6 -6
- {docling-2.4.1.dist-info → docling-2.4.2.dist-info}/LICENSE +0 -0
- {docling-2.4.1.dist-info → docling-2.4.2.dist-info}/WHEEL +0 -0
- {docling-2.4.1.dist-info → docling-2.4.2.dist-info}/entry_points.txt +0 -0
docling/models/easyocr_model.py
CHANGED
@@ -2,6 +2,7 @@ import logging
|
|
2
2
|
from typing import Iterable
|
3
3
|
|
4
4
|
import numpy
|
5
|
+
import torch
|
5
6
|
from docling_core.types.doc import BoundingBox, CoordOrigin
|
6
7
|
|
7
8
|
from docling.datamodel.base_models import OcrCell, Page
|
@@ -30,8 +31,12 @@ class EasyOcrModel(BaseOcrModel):
|
|
30
31
|
"Alternatively, Docling has support for other OCR engines. See the documentation."
|
31
32
|
)
|
32
33
|
|
34
|
+
use_gpu = (
|
35
|
+
False if torch.backends.mps.is_available() else self.options.use_gpu
|
36
|
+
)
|
33
37
|
self.reader = easyocr.Reader(
|
34
38
|
lang_list=self.options.lang,
|
39
|
+
gpu=use_gpu,
|
35
40
|
model_storage_directory=self.options.model_storage_directory,
|
36
41
|
download_enabled=self.options.download_enabled,
|
37
42
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: docling
|
3
|
-
Version: 2.4.
|
3
|
+
Version: 2.4.2
|
4
4
|
Summary: SDK and CLI for parsing PDF, DOCX, HTML, and more, to a unified document representation for powering downstream workflows such as gen AI applications.
|
5
5
|
Home-page: https://github.com/DS4SD/docling
|
6
6
|
License: MIT
|
@@ -22,7 +22,7 @@ docling/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
docling/models/base_model.py,sha256=Yq_-FmUhqhE20vXYG3WiQXDRTIPjik1CyuEZ8iYTGAY,701
|
23
23
|
docling/models/base_ocr_model.py,sha256=Ti0glL-_DVRfmP3MpywYVmkNf5RP6qhRg_UKzJuV1Dc,5663
|
24
24
|
docling/models/ds_glm_model.py,sha256=2OpWW8MMzCIshrtP36gDSRPYOCjv1ex34FqxD2nYjP4,11986
|
25
|
-
docling/models/easyocr_model.py,sha256=
|
25
|
+
docling/models/easyocr_model.py,sha256=zl-B3OR81r0AHt5zFP_A5TqJUSjIjo1-x4GsMZyIzVk,3983
|
26
26
|
docling/models/layout_model.py,sha256=ZvbTSyxvXB5yLHNEti0Wv3trz0vwGuHySI5TCdApb0U,14011
|
27
27
|
docling/models/page_assemble_model.py,sha256=kSGNiRKhmzkpFH7xCiT3rulMsgJmUXFa6Th_eB-cLEk,7103
|
28
28
|
docling/models/page_preprocessing_model.py,sha256=1gVrZjObKxAvXkkKvXnIFApPOggzgiTFPtt1CGbMbSs,2763
|
@@ -38,8 +38,8 @@ docling/utils/export.py,sha256=KyGF1BVDHPFfHVXZc8vegsWlFfOgGPP2YckWpTadyI8,4694
|
|
38
38
|
docling/utils/layout_utils.py,sha256=vlN0rc8i0ayRGn3WnaG-pdmqEL00KKGl2zez3Gj-hrk,32074
|
39
39
|
docling/utils/profiling.py,sha256=YaMGoB9MMZpagF9mb5ndoHj8Lpb9aIdb7El-Pl7IcFs,1753
|
40
40
|
docling/utils/utils.py,sha256=llhXSbIDNZ1MHOwBEfLHBAoJIAYI7QlPIonlI1jLUJ0,1208
|
41
|
-
docling-2.4.
|
42
|
-
docling-2.4.
|
43
|
-
docling-2.4.
|
44
|
-
docling-2.4.
|
45
|
-
docling-2.4.
|
41
|
+
docling-2.4.2.dist-info/LICENSE,sha256=mBb7ErEcM8VS9OhiGHnQ2kk75HwPhr54W1Oiz3965MY,1088
|
42
|
+
docling-2.4.2.dist-info/METADATA,sha256=WCTdN8xVORJ5Nxt-1CQSmNEe4j5kNvgYu2BK25O0We4,6530
|
43
|
+
docling-2.4.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
44
|
+
docling-2.4.2.dist-info/entry_points.txt,sha256=VOSzV77znM52dz5ysaDuJ0ijl1cnfrh1ZPg8od5OcTs,48
|
45
|
+
docling-2.4.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|