docling-ocr-onnxtr 0.1.1__tar.gz → 0.1.2__tar.gz
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_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/PKG-INFO +7 -3
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/README.md +5 -1
- docling_ocr_onnxtr-0.1.2/docling_ocr_onnxtr/version.py +1 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/PKG-INFO +7 -3
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/pyproject.toml +1 -1
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/setup.py +1 -1
- docling_ocr_onnxtr-0.1.1/docling_ocr_onnxtr/version.py +0 -1
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/LICENSE +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr/__init__.py +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr/onnxtr_model.py +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr/options.py +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr/plugin.py +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr/py.typed +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/SOURCES.txt +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/dependency_links.txt +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/entry_points.txt +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/requires.txt +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/top_level.txt +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/zip-safe +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/setup.cfg +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/tests/test_pipeline_invalid_cases.py +0 -0
- {docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/tests/test_plugin.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: docling-ocr-onnxtr
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: Onnx Text Recognition (OnnxTR) plugin for docling
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Onnx Text Recognition (OnnxTR) OCR plugin for docling
|
|
5
5
|
Author-email: Felix Dittrich <felixdittrich92@gmail.com>
|
|
6
6
|
Maintainer: Felix Dittrich
|
|
7
7
|
License: Apache License
|
|
@@ -266,7 +266,7 @@ Dynamic: license-file
|
|
|
266
266
|
[](https://codecov.io/gh/felixdittrich92/docling-OCR-OnnxTR)
|
|
267
267
|
[](https://app.codacy.com/gh/felixdittrich92/docling-OCR-OnnxTR/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
|
268
268
|
[](https://www.codefactor.io/repository/github/felixdittrich92/docling-ocr-onnxtr)
|
|
269
|
-
[](https://pypi.org/project//)
|
|
270
270
|

|
|
271
271
|
|
|
272
272
|
The `docling-OCR-OnnxTR` repository provides a plugin that integrates the [OnnxTR OCR engine](https://github.com/felixdittrich92/OnnxTR) into the [Docling framework](https://github.com/docling-project/docling), enhancing document processing capabilities with efficient and accurate text recognition.
|
|
@@ -283,6 +283,10 @@ The `docling-OCR-OnnxTR` repository provides a plugin that integrates the [OnnxT
|
|
|
283
283
|
|
|
284
284
|
To install the plugin, use one of the following commands based on your hardware:
|
|
285
285
|
|
|
286
|
+
For GPU support please take a look at: [ONNX Runtime](https://onnxruntime.ai/getting-started).
|
|
287
|
+
|
|
288
|
+
- **Prerequisites:** CUDA & cuDNN needs to be installed before [Version table](https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html).
|
|
289
|
+
|
|
286
290
|
```bash
|
|
287
291
|
# For CPU
|
|
288
292
|
pip install docling-ocr-onnxtr[cpu]
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://codecov.io/gh/felixdittrich92/docling-OCR-OnnxTR)
|
|
8
8
|
[](https://app.codacy.com/gh/felixdittrich92/docling-OCR-OnnxTR/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
|
9
9
|
[](https://www.codefactor.io/repository/github/felixdittrich92/docling-ocr-onnxtr)
|
|
10
|
-
[](https://pypi.org/project//)
|
|
11
11
|

|
|
12
12
|
|
|
13
13
|
The `docling-OCR-OnnxTR` repository provides a plugin that integrates the [OnnxTR OCR engine](https://github.com/felixdittrich92/OnnxTR) into the [Docling framework](https://github.com/docling-project/docling), enhancing document processing capabilities with efficient and accurate text recognition.
|
|
@@ -24,6 +24,10 @@ The `docling-OCR-OnnxTR` repository provides a plugin that integrates the [OnnxT
|
|
|
24
24
|
|
|
25
25
|
To install the plugin, use one of the following commands based on your hardware:
|
|
26
26
|
|
|
27
|
+
For GPU support please take a look at: [ONNX Runtime](https://onnxruntime.ai/getting-started).
|
|
28
|
+
|
|
29
|
+
- **Prerequisites:** CUDA & cuDNN needs to be installed before [Version table](https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html).
|
|
30
|
+
|
|
27
31
|
```bash
|
|
28
32
|
# For CPU
|
|
29
33
|
pip install docling-ocr-onnxtr[cpu]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = 'v0.1.2'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: docling-ocr-onnxtr
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: Onnx Text Recognition (OnnxTR) plugin for docling
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Onnx Text Recognition (OnnxTR) OCR plugin for docling
|
|
5
5
|
Author-email: Felix Dittrich <felixdittrich92@gmail.com>
|
|
6
6
|
Maintainer: Felix Dittrich
|
|
7
7
|
License: Apache License
|
|
@@ -266,7 +266,7 @@ Dynamic: license-file
|
|
|
266
266
|
[](https://codecov.io/gh/felixdittrich92/docling-OCR-OnnxTR)
|
|
267
267
|
[](https://app.codacy.com/gh/felixdittrich92/docling-OCR-OnnxTR/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
|
268
268
|
[](https://www.codefactor.io/repository/github/felixdittrich92/docling-ocr-onnxtr)
|
|
269
|
-
[](https://pypi.org/project//)
|
|
270
270
|

|
|
271
271
|
|
|
272
272
|
The `docling-OCR-OnnxTR` repository provides a plugin that integrates the [OnnxTR OCR engine](https://github.com/felixdittrich92/OnnxTR) into the [Docling framework](https://github.com/docling-project/docling), enhancing document processing capabilities with efficient and accurate text recognition.
|
|
@@ -283,6 +283,10 @@ The `docling-OCR-OnnxTR` repository provides a plugin that integrates the [OnnxT
|
|
|
283
283
|
|
|
284
284
|
To install the plugin, use one of the following commands based on your hardware:
|
|
285
285
|
|
|
286
|
+
For GPU support please take a look at: [ONNX Runtime](https://onnxruntime.ai/getting-started).
|
|
287
|
+
|
|
288
|
+
- **Prerequisites:** CUDA & cuDNN needs to be installed before [Version table](https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html).
|
|
289
|
+
|
|
286
290
|
```bash
|
|
287
291
|
# For CPU
|
|
288
292
|
pip install docling-ocr-onnxtr[cpu]
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "docling-ocr-onnxtr"
|
|
7
|
-
description = "Onnx Text Recognition (OnnxTR) plugin for docling"
|
|
7
|
+
description = "Onnx Text Recognition (OnnxTR) OCR plugin for docling"
|
|
8
8
|
authors = [{name = "Felix Dittrich", email = "felixdittrich92@gmail.com"}]
|
|
9
9
|
maintainers = [
|
|
10
10
|
{name = "Felix Dittrich"},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = 'v0.1.1'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/requires.txt
RENAMED
|
File without changes
|
{docling_ocr_onnxtr-0.1.1 → docling_ocr_onnxtr-0.1.2}/docling_ocr_onnxtr.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|