mineru 2.6.7__py3-none-any.whl → 2.7.0__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.
- mineru/backend/hybrid/__init__.py +1 -0
- mineru/backend/hybrid/hybrid_analyze.py +526 -0
- mineru/backend/hybrid/hybrid_magic_model.py +617 -0
- mineru/backend/hybrid/hybrid_model_output_to_middle_json.py +212 -0
- mineru/backend/pipeline/batch_analyze.py +9 -1
- mineru/backend/pipeline/model_init.py +96 -1
- mineru/backend/pipeline/pipeline_analyze.py +6 -4
- mineru/backend/pipeline/pipeline_middle_json_mkcontent.py +32 -41
- mineru/backend/vlm/utils.py +3 -1
- mineru/backend/vlm/vlm_analyze.py +12 -12
- mineru/backend/vlm/vlm_magic_model.py +24 -89
- mineru/backend/vlm/vlm_middle_json_mkcontent.py +118 -19
- mineru/cli/client.py +17 -17
- mineru/cli/common.py +170 -20
- mineru/cli/fast_api.py +39 -13
- mineru/cli/gradio_app.py +232 -206
- mineru/model/mfd/yolo_v8.py +12 -6
- mineru/model/mfr/unimernet/Unimernet.py +71 -3
- mineru/resources/header.html +5 -1
- mineru/utils/boxbase.py +23 -0
- mineru/utils/char_utils.py +55 -0
- mineru/utils/engine_utils.py +74 -0
- mineru/utils/enum_class.py +18 -1
- mineru/utils/magic_model_utils.py +85 -2
- mineru/utils/span_pre_proc.py +5 -3
- mineru/utils/table_merge.py +5 -21
- mineru/version.py +1 -1
- mineru-2.7.0.dist-info/METADATA +433 -0
- {mineru-2.6.7.dist-info → mineru-2.7.0.dist-info}/RECORD +33 -27
- mineru-2.6.7.dist-info/METADATA +0 -954
- {mineru-2.6.7.dist-info → mineru-2.7.0.dist-info}/WHEEL +0 -0
- {mineru-2.6.7.dist-info → mineru-2.7.0.dist-info}/entry_points.txt +0 -0
- {mineru-2.6.7.dist-info → mineru-2.7.0.dist-info}/licenses/LICENSE.md +0 -0
- {mineru-2.6.7.dist-info → mineru-2.7.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,433 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mineru
|
|
3
|
+
Version: 2.7.0
|
|
4
|
+
Summary: A practical tool for converting PDF to Markdown
|
|
5
|
+
License: AGPL-3.0
|
|
6
|
+
Project-URL: homepage, https://mineru.net/
|
|
7
|
+
Project-URL: documentation, https://opendatalab.github.io/MinerU/
|
|
8
|
+
Project-URL: repository, https://github.com/opendatalab/MinerU
|
|
9
|
+
Project-URL: issues, https://github.com/opendatalab/MinerU/issues
|
|
10
|
+
Keywords: magic-pdf,mineru,MinerU,convert,pdf,markdown
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Requires-Python: <3.14,>=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE.md
|
|
18
|
+
Requires-Dist: boto3>=1.28.43
|
|
19
|
+
Requires-Dist: click>=8.1.7
|
|
20
|
+
Requires-Dist: loguru>=0.7.2
|
|
21
|
+
Requires-Dist: numpy>=1.21.6
|
|
22
|
+
Requires-Dist: pdfminer.six==20250506
|
|
23
|
+
Requires-Dist: tqdm>=4.67.1
|
|
24
|
+
Requires-Dist: requests
|
|
25
|
+
Requires-Dist: httpx
|
|
26
|
+
Requires-Dist: pillow>=11.0.0
|
|
27
|
+
Requires-Dist: pypdfium2>=4.30.0
|
|
28
|
+
Requires-Dist: pypdf>=5.6.0
|
|
29
|
+
Requires-Dist: reportlab
|
|
30
|
+
Requires-Dist: pdftext>=0.6.3
|
|
31
|
+
Requires-Dist: modelscope>=1.26.0
|
|
32
|
+
Requires-Dist: huggingface-hub>=0.32.4
|
|
33
|
+
Requires-Dist: json-repair>=0.46.2
|
|
34
|
+
Requires-Dist: opencv-python>=4.11.0.86
|
|
35
|
+
Requires-Dist: fast-langdetect<0.3.0,>=0.2.3
|
|
36
|
+
Requires-Dist: scikit-image<1.0.0,>=0.25.0
|
|
37
|
+
Requires-Dist: openai<3,>=1.70.0
|
|
38
|
+
Requires-Dist: beautifulsoup4<5,>=4.13.5
|
|
39
|
+
Requires-Dist: magika<1.1.0,>=0.6.2
|
|
40
|
+
Requires-Dist: mineru-vl-utils<1,>=0.1.19.1
|
|
41
|
+
Requires-Dist: qwen-vl-utils<1,>=0.0.14
|
|
42
|
+
Provides-Extra: test
|
|
43
|
+
Requires-Dist: mineru[core]; extra == "test"
|
|
44
|
+
Requires-Dist: pytest; extra == "test"
|
|
45
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
46
|
+
Requires-Dist: coverage; extra == "test"
|
|
47
|
+
Requires-Dist: fuzzywuzzy; extra == "test"
|
|
48
|
+
Provides-Extra: vlm
|
|
49
|
+
Requires-Dist: torch<3,>=2.6.0; extra == "vlm"
|
|
50
|
+
Requires-Dist: transformers!=4.57.2,<5.0.0,>=4.51.1; extra == "vlm"
|
|
51
|
+
Requires-Dist: accelerate>=1.5.1; extra == "vlm"
|
|
52
|
+
Provides-Extra: vllm
|
|
53
|
+
Requires-Dist: vllm<0.12,>=0.10.1.1; extra == "vllm"
|
|
54
|
+
Provides-Extra: lmdeploy
|
|
55
|
+
Requires-Dist: lmdeploy<0.12,>=0.10.2; extra == "lmdeploy"
|
|
56
|
+
Provides-Extra: mlx
|
|
57
|
+
Requires-Dist: mlx-vlm<0.4,>=0.3.3; extra == "mlx"
|
|
58
|
+
Provides-Extra: pipeline
|
|
59
|
+
Requires-Dist: matplotlib<4,>=3.10; extra == "pipeline"
|
|
60
|
+
Requires-Dist: ultralytics<9,>=8.3.48; extra == "pipeline"
|
|
61
|
+
Requires-Dist: doclayout_yolo==0.0.4; extra == "pipeline"
|
|
62
|
+
Requires-Dist: dill<1,>=0.3.8; extra == "pipeline"
|
|
63
|
+
Requires-Dist: PyYAML<7,>=6.0.2; extra == "pipeline"
|
|
64
|
+
Requires-Dist: ftfy<7,>=6.3.1; extra == "pipeline"
|
|
65
|
+
Requires-Dist: shapely<3,>=2.0.7; extra == "pipeline"
|
|
66
|
+
Requires-Dist: pyclipper<2,>=1.3.0; extra == "pipeline"
|
|
67
|
+
Requires-Dist: omegaconf<3,>=2.3.0; extra == "pipeline"
|
|
68
|
+
Requires-Dist: torch<3,>=2.6.0; extra == "pipeline"
|
|
69
|
+
Requires-Dist: torchvision; extra == "pipeline"
|
|
70
|
+
Requires-Dist: transformers!=4.51.0,<5.0.0,>=4.49.0; extra == "pipeline"
|
|
71
|
+
Requires-Dist: onnxruntime>1.17.0; extra == "pipeline"
|
|
72
|
+
Provides-Extra: api
|
|
73
|
+
Requires-Dist: fastapi; extra == "api"
|
|
74
|
+
Requires-Dist: python-multipart; extra == "api"
|
|
75
|
+
Requires-Dist: uvicorn; extra == "api"
|
|
76
|
+
Provides-Extra: gradio
|
|
77
|
+
Requires-Dist: gradio==5.49.1; extra == "gradio"
|
|
78
|
+
Requires-Dist: gradio-pdf==0.0.22; extra == "gradio"
|
|
79
|
+
Provides-Extra: core
|
|
80
|
+
Requires-Dist: mineru[vlm]; extra == "core"
|
|
81
|
+
Requires-Dist: mineru[pipeline]; extra == "core"
|
|
82
|
+
Requires-Dist: mineru[api]; extra == "core"
|
|
83
|
+
Requires-Dist: mineru[gradio]; extra == "core"
|
|
84
|
+
Requires-Dist: mineru[mlx]; sys_platform == "darwin" and extra == "core"
|
|
85
|
+
Provides-Extra: all
|
|
86
|
+
Requires-Dist: mineru[core]; extra == "all"
|
|
87
|
+
Requires-Dist: mineru[vllm]; sys_platform == "linux" and extra == "all"
|
|
88
|
+
Requires-Dist: mineru[lmdeploy]; sys_platform == "windows" and extra == "all"
|
|
89
|
+
Dynamic: license-file
|
|
90
|
+
|
|
91
|
+
<div align="center" xmlns="http://www.w3.org/1999/html">
|
|
92
|
+
<!-- logo -->
|
|
93
|
+
<p align="center">
|
|
94
|
+
<img src="https://gcore.jsdelivr.net/gh/opendatalab/MinerU@master/docs/images/MinerU-logo.png" width="300px" style="vertical-align:middle;">
|
|
95
|
+
</p>
|
|
96
|
+
|
|
97
|
+
<!-- icon -->
|
|
98
|
+
|
|
99
|
+
[](https://github.com/opendatalab/MinerU)
|
|
100
|
+
[](https://github.com/opendatalab/MinerU)
|
|
101
|
+
[](https://github.com/opendatalab/MinerU/issues)
|
|
102
|
+
[](https://github.com/opendatalab/MinerU/issues)
|
|
103
|
+
[](https://pypi.org/project/mineru/)
|
|
104
|
+
[](https://pypi.org/project/mineru/)
|
|
105
|
+
[](https://pepy.tech/project/mineru)
|
|
106
|
+
[](https://pepy.tech/project/mineru)
|
|
107
|
+
[](https://mineru.net/OpenSourceTools/Extractor?source=github)
|
|
108
|
+
[](https://huggingface.co/spaces/opendatalab/MinerU)
|
|
109
|
+
[](https://www.modelscope.cn/studios/OpenDataLab/MinerU)
|
|
110
|
+
[](https://colab.research.google.com/gist/myhloli/a3cb16570ab3cfeadf9d8f0ac91b4fca/mineru_demo.ipynb)
|
|
111
|
+
[](https://arxiv.org/abs/2409.18839)
|
|
112
|
+
[](https://arxiv.org/abs/2509.22186)
|
|
113
|
+
[](https://deepwiki.com/opendatalab/MinerU)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
<a href="https://trendshift.io/repositories/11174" target="_blank"><img src="https://trendshift.io/api/badge/repositories/11174" alt="opendatalab%2FMinerU | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
|
117
|
+
|
|
118
|
+
<!-- language -->
|
|
119
|
+
|
|
120
|
+
[English](README.md) | [简体中文](README_zh-CN.md)
|
|
121
|
+
|
|
122
|
+
<!-- hot link -->
|
|
123
|
+
|
|
124
|
+
<p align="center">
|
|
125
|
+
🚀<a href="https://mineru.net/?source=github">Access MinerU Now→✅ Zero-Install Web Version ✅ Full-Featured Desktop Client ✅ Instant API Access; Skip deployment headaches – get all product formats in one click. Developers, dive in!</a>
|
|
126
|
+
</p>
|
|
127
|
+
|
|
128
|
+
<!-- join us -->
|
|
129
|
+
|
|
130
|
+
<p align="center">
|
|
131
|
+
👋 join us on <a href="https://discord.gg/Tdedn9GTXq" target="_blank">Discord</a> and <a href="https://mineru.net/community-portal/?aliasId=3c430f94" target="_blank">WeChat</a>
|
|
132
|
+
</p>
|
|
133
|
+
|
|
134
|
+
</div>
|
|
135
|
+
|
|
136
|
+
# Changelog
|
|
137
|
+
|
|
138
|
+
- 2025/12/30 2.7.0 Release
|
|
139
|
+
- Simplified installation process. No need to separately install `vlm` acceleration engine dependencies. Using `uv pip install mineru[all]` during installation will install all optional backend dependencies.
|
|
140
|
+
- Added new `hybrid` backend, which combines the advantages of `pipeline` and `vlm` backends. Built on vlm, it integrates some capabilities of pipeline, adding extra extensibility on top of high accuracy:
|
|
141
|
+
- Directly extracts text from text PDFs, natively supports multi-language recognition in text PDF scenarios, and greatly reduces parsing hallucinations;
|
|
142
|
+
- Supports text recognition in 109 languages for scanned PDF scenarios by specifying OCR language;
|
|
143
|
+
- Independent inline formula recognition switch, which can be disabled separately when inline formula recognition is not needed, improving the visual effect of parsing results.
|
|
144
|
+
- Simplified engine selection logic for `vlm/hybrid` backends. Users only need to specify the backend as `*-auto-engine`, and the system will automatically select the appropriate engine for inference acceleration based on the current environment, improving usability.
|
|
145
|
+
- Switched default parsing backend from `pipeline` to `hybrid-auto-engine`, improving out-of-the-box result consistency for new users and avoiding cognitive differences in parsing results.
|
|
146
|
+
- Added i18n support to gradio application, supporting switching between Chinese and English languages.
|
|
147
|
+
|
|
148
|
+
> 📝 View the complete [Changelog](https://opendatalab.github.io/MinerU/reference/changelog/) for more historical version information
|
|
149
|
+
|
|
150
|
+
# MinerU
|
|
151
|
+
|
|
152
|
+
## Project Introduction
|
|
153
|
+
|
|
154
|
+
MinerU is a tool that converts PDFs into machine-readable formats (e.g., markdown, JSON), allowing for easy extraction into any format.
|
|
155
|
+
MinerU was born during the pre-training process of [InternLM](https://github.com/InternLM/InternLM). We focus on solving symbol conversion issues in scientific literature and hope to contribute to technological development in the era of large models.
|
|
156
|
+
Compared to well-known commercial products, MinerU is still young. If you encounter any issues or if the results are not as expected, please submit an issue on [issue](https://github.com/opendatalab/MinerU/issues) and **attach the relevant PDF**.
|
|
157
|
+
|
|
158
|
+
https://github.com/user-attachments/assets/4bea02c9-6d54-4cd6-97ed-dff14340982c
|
|
159
|
+
|
|
160
|
+
## Key Features
|
|
161
|
+
|
|
162
|
+
- Remove headers, footers, footnotes, page numbers, etc., to ensure semantic coherence.
|
|
163
|
+
- Output text in human-readable order, suitable for single-column, multi-column, and complex layouts.
|
|
164
|
+
- Preserve the structure of the original document, including headings, paragraphs, lists, etc.
|
|
165
|
+
- Extract images, image descriptions, tables, table titles, and footnotes.
|
|
166
|
+
- Automatically recognize and convert formulas in the document to LaTeX format.
|
|
167
|
+
- Automatically recognize and convert tables in the document to HTML format.
|
|
168
|
+
- Automatically detect scanned PDFs and garbled PDFs and enable OCR functionality.
|
|
169
|
+
- OCR supports detection and recognition of 109 languages.
|
|
170
|
+
- Supports multiple output formats, such as multimodal and NLP Markdown, JSON sorted by reading order, and rich intermediate formats.
|
|
171
|
+
- Supports various visualization results, including layout visualization and span visualization, for efficient confirmation of output quality.
|
|
172
|
+
- Supports running in a pure CPU environment, and also supports GPU(CUDA)/NPU(CANN)/MPS acceleration
|
|
173
|
+
- Compatible with Windows, Linux, and Mac platforms.
|
|
174
|
+
|
|
175
|
+
# Quick Start
|
|
176
|
+
|
|
177
|
+
If you encounter any installation issues, please first consult the <a href="#faq">FAQ</a>. </br>
|
|
178
|
+
If the parsing results are not as expected, refer to the <a href="#known-issues">Known Issues</a>. </br>
|
|
179
|
+
|
|
180
|
+
## Online Experience
|
|
181
|
+
|
|
182
|
+
### Official online web application
|
|
183
|
+
The official online version has the same functionality as the client, with a beautiful interface and rich features, requires login to use
|
|
184
|
+
|
|
185
|
+
- [](https://mineru.net/OpenSourceTools/Extractor?source=github)
|
|
186
|
+
|
|
187
|
+
### Gradio-based online demo
|
|
188
|
+
A WebUI developed based on Gradio, with a simple interface and only core parsing functionality, no login required
|
|
189
|
+
|
|
190
|
+
- [](https://www.modelscope.cn/studios/OpenDataLab/MinerU)
|
|
191
|
+
- [](https://huggingface.co/spaces/opendatalab/MinerU)
|
|
192
|
+
|
|
193
|
+
## Local Deployment
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
> [!WARNING]
|
|
197
|
+
> **Pre-installation Notice—Hardware and Software Environment Support**
|
|
198
|
+
>
|
|
199
|
+
> To ensure the stability and reliability of the project, we only optimize and test for specific hardware and software environments during development. This ensures that users deploying and running the project on recommended system configurations will get the best performance with the fewest compatibility issues.
|
|
200
|
+
>
|
|
201
|
+
> By focusing resources on the mainline environment, our team can more efficiently resolve potential bugs and develop new features.
|
|
202
|
+
>
|
|
203
|
+
> In non-mainline environments, due to the diversity of hardware and software configurations, as well as third-party dependency compatibility issues, we cannot guarantee 100% project availability. Therefore, for users who wish to use this project in non-recommended environments, we suggest carefully reading the documentation and FAQ first. Most issues already have corresponding solutions in the FAQ. We also encourage community feedback to help us gradually expand support.
|
|
204
|
+
|
|
205
|
+
<table>
|
|
206
|
+
<thead>
|
|
207
|
+
<tr>
|
|
208
|
+
<th rowspan="2">Parsing Backend</th>
|
|
209
|
+
<th rowspan="2">pipeline</th>
|
|
210
|
+
<th colspan="2">*-auto-engine</th>
|
|
211
|
+
<th colspan="2">*-http-client</th>
|
|
212
|
+
</tr>
|
|
213
|
+
<tr>
|
|
214
|
+
<th>hybrid</th>
|
|
215
|
+
<th>vlm</th>
|
|
216
|
+
<th>hybrid</th>
|
|
217
|
+
<th>vlm</th>
|
|
218
|
+
</tr>
|
|
219
|
+
</thead>
|
|
220
|
+
<tbody>
|
|
221
|
+
<tr>
|
|
222
|
+
<th>Backend Features</th>
|
|
223
|
+
<td >Good Compatibility</td>
|
|
224
|
+
<td colspan="2">High Hardware Requirements</td>
|
|
225
|
+
<td colspan="2">For OpenAI Compatible Servers<sup>2</sup></td>
|
|
226
|
+
</tr>
|
|
227
|
+
<tr>
|
|
228
|
+
<th>Accuracy<sup>1</sup></th>
|
|
229
|
+
<td style="text-align:center;">82+</td>
|
|
230
|
+
<td colspan="4" style="text-align:center;">90+</td>
|
|
231
|
+
</tr>
|
|
232
|
+
<tr>
|
|
233
|
+
<th>Operating System</th>
|
|
234
|
+
<td colspan="5" style="text-align:center;">Linux<sup>3</sup> / Windows<sup>4</sup> / macOS<sup>5</sup></td>
|
|
235
|
+
</tr>
|
|
236
|
+
<tr>
|
|
237
|
+
<th>Pure CPU Support</th>
|
|
238
|
+
<td style="text-align:center;">✅</td>
|
|
239
|
+
<td colspan="2" style="text-align:center;">❌</td>
|
|
240
|
+
<td colspan="2" style="text-align:center;">✅</td>
|
|
241
|
+
</tr>
|
|
242
|
+
<tr>
|
|
243
|
+
<th>GPU Acceleration</th>
|
|
244
|
+
<td colspan="4" style="text-align:center;">Volta and later architecture GPUs or Apple Silicon</td>
|
|
245
|
+
<td rowspan="2">Not Required</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<th>Min VRAM</th>
|
|
249
|
+
<td style="text-align:center;">6GB</td>
|
|
250
|
+
<td style="text-align:center;">10GB</td>
|
|
251
|
+
<td style="text-align:center;">8GB</td>
|
|
252
|
+
<td style="text-align:center;">3GB</td>
|
|
253
|
+
</tr>
|
|
254
|
+
<tr>
|
|
255
|
+
<th>RAM</th>
|
|
256
|
+
<td colspan="3" style="text-align:center;">Min 16GB, Recommended 32GB or more</td>
|
|
257
|
+
<td colspan="2" style="text-align:center;">Min 8GB</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<th>Disk Space</th>
|
|
261
|
+
<td colspan="3" style="text-align:center;">Min 20GB, SSD Recommended</td>
|
|
262
|
+
<td colspan="2" style="text-align:center;">Min 2GB</td>
|
|
263
|
+
</tr>
|
|
264
|
+
<tr>
|
|
265
|
+
<th>Python Version</th>
|
|
266
|
+
<td colspan="5" style="text-align:center;">3.10-3.13</td>
|
|
267
|
+
</tr>
|
|
268
|
+
</tbody>
|
|
269
|
+
</table>
|
|
270
|
+
|
|
271
|
+
<sup>1</sup> Accuracy metrics are the End-to-End Evaluation Overall scores from OmniDocBench (v1.5), based on the latest version of `MinerU`.
|
|
272
|
+
<sup>2</sup> Servers compatible with OpenAI API, such as local model servers or remote model services deployed via inference frameworks like `vLLM`/`SGLang`/`LMDeploy`.
|
|
273
|
+
<sup>3</sup> Linux only supports distributions from 2019 and later.
|
|
274
|
+
<sup>4</sup> Since the key dependency `ray` does not support Python 3.13 on Windows, only versions 3.10~3.12 are supported.
|
|
275
|
+
<sup>5</sup> macOS requires version 14.0 or later.
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
### Install MinerU
|
|
279
|
+
|
|
280
|
+
#### Install MinerU using pip or uv
|
|
281
|
+
```bash
|
|
282
|
+
pip install --upgrade pip
|
|
283
|
+
pip install uv
|
|
284
|
+
uv pip install -U "mineru[all]"
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
#### Install MinerU from source code
|
|
288
|
+
```bash
|
|
289
|
+
git clone https://github.com/opendatalab/MinerU.git
|
|
290
|
+
cd MinerU
|
|
291
|
+
uv pip install -e .[all]
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
> [!TIP]
|
|
295
|
+
> `mineru[all]` includes all core features, compatible with Windows / Linux / macOS systems, suitable for most users.
|
|
296
|
+
> If you need to specify the inference framework for the VLM model, or only intend to install a lightweight client on an edge device, please refer to the documentation [Extension Modules Installation Guide](https://opendatalab.github.io/MinerU/quick_start/extension_modules/).
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
#### Deploy MinerU using Docker
|
|
301
|
+
MinerU provides a convenient Docker deployment method, which helps quickly set up the environment and solve some tricky environment compatibility issues.
|
|
302
|
+
You can get the [Docker Deployment Instructions](https://opendatalab.github.io/MinerU/quick_start/docker_deployment/) in the documentation.
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
### Using MinerU
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
If your device meets the GPU acceleration requirements in the table above, you can use a simple command line for document parsing:
|
|
310
|
+
```bash
|
|
311
|
+
mineru -p <input_path> -o <output_path>
|
|
312
|
+
```
|
|
313
|
+
If your device does not meet the GPU acceleration requirements, you can specify the backend as `pipeline` to run in a pure CPU environment:
|
|
314
|
+
```bash
|
|
315
|
+
mineru -p <input_path> -o <output_path> -b pipeline
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
You can use MinerU for PDF parsing through various methods such as command line, API, and WebUI. For detailed instructions, please refer to the [Usage Guide](https://opendatalab.github.io/MinerU/usage/).
|
|
319
|
+
|
|
320
|
+
# TODO
|
|
321
|
+
|
|
322
|
+
- [x] Reading order based on the model
|
|
323
|
+
- [x] Recognition of `index` and `list` in the main text
|
|
324
|
+
- [x] Table recognition
|
|
325
|
+
- [x] Heading Classification
|
|
326
|
+
- [x] Handwritten Text Recognition
|
|
327
|
+
- [x] Vertical Text Recognition
|
|
328
|
+
- [x] Latin Accent Mark Recognition
|
|
329
|
+
- [x] Code block recognition in the main text
|
|
330
|
+
- [x] [Chemical formula recognition](docs/chemical_knowledge_introduction/introduction.pdf)(mineru.net)
|
|
331
|
+
- [ ] Geometric shape recognition
|
|
332
|
+
|
|
333
|
+
# Known Issues
|
|
334
|
+
|
|
335
|
+
- Reading order is determined by the model based on the spatial distribution of readable content, and may be out of order in some areas under extremely complex layouts.
|
|
336
|
+
- Limited support for vertical text.
|
|
337
|
+
- Tables of contents and lists are recognized through rules, and some uncommon list formats may not be recognized.
|
|
338
|
+
- Code blocks are not yet supported in the layout model.
|
|
339
|
+
- Comic books, art albums, primary school textbooks, and exercises cannot be parsed well.
|
|
340
|
+
- Table recognition may result in row/column recognition errors in complex tables.
|
|
341
|
+
- OCR recognition may produce inaccurate characters in PDFs of lesser-known languages (e.g., diacritical marks in Latin script, easily confused characters in Arabic script).
|
|
342
|
+
- Some formulas may not render correctly in Markdown.
|
|
343
|
+
|
|
344
|
+
# FAQ
|
|
345
|
+
|
|
346
|
+
- If you encounter any issues during usage, you can first check the [FAQ](https://opendatalab.github.io/MinerU/faq/) for solutions.
|
|
347
|
+
- If your issue remains unresolved, you may also use [DeepWiki](https://deepwiki.com/opendatalab/MinerU) to interact with an AI assistant, which can address most common problems.
|
|
348
|
+
- If you still cannot resolve the issue, you are welcome to join our community via [Discord](https://discord.gg/Tdedn9GTXq) or [WeChat](https://mineru.net/community-portal/?aliasId=3c430f94) to discuss with other users and developers.
|
|
349
|
+
|
|
350
|
+
# All Thanks To Our Contributors
|
|
351
|
+
|
|
352
|
+
<a href="https://github.com/opendatalab/MinerU/graphs/contributors">
|
|
353
|
+
<img src="https://contrib.rocks/image?repo=opendatalab/MinerU" />
|
|
354
|
+
</a>
|
|
355
|
+
|
|
356
|
+
# License Information
|
|
357
|
+
|
|
358
|
+
[LICENSE.md](LICENSE.md)
|
|
359
|
+
|
|
360
|
+
Currently, some models in this project are trained based on YOLO. However, since YOLO follows the AGPL license, it may impose restrictions on certain use cases. In future iterations, we plan to explore and replace these with models under more permissive licenses to enhance user-friendliness and flexibility.
|
|
361
|
+
|
|
362
|
+
# Acknowledgments
|
|
363
|
+
|
|
364
|
+
- [PDF-Extract-Kit](https://github.com/opendatalab/PDF-Extract-Kit)
|
|
365
|
+
- [DocLayout-YOLO](https://github.com/opendatalab/DocLayout-YOLO)
|
|
366
|
+
- [UniMERNet](https://github.com/opendatalab/UniMERNet)
|
|
367
|
+
- [RapidTable](https://github.com/RapidAI/RapidTable)
|
|
368
|
+
- [TableStructureRec](https://github.com/RapidAI/TableStructureRec)
|
|
369
|
+
- [PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR)
|
|
370
|
+
- [PaddleOCR2Pytorch](https://github.com/frotms/PaddleOCR2Pytorch)
|
|
371
|
+
- [layoutreader](https://github.com/ppaanngggg/layoutreader)
|
|
372
|
+
- [xy-cut](https://github.com/Sanster/xy-cut)
|
|
373
|
+
- [fast-langdetect](https://github.com/LlmKira/fast-langdetect)
|
|
374
|
+
- [pypdfium2](https://github.com/pypdfium2-team/pypdfium2)
|
|
375
|
+
- [pdftext](https://github.com/datalab-to/pdftext)
|
|
376
|
+
- [pdfminer.six](https://github.com/pdfminer/pdfminer.six)
|
|
377
|
+
- [pypdf](https://github.com/py-pdf/pypdf)
|
|
378
|
+
- [magika](https://github.com/google/magika)
|
|
379
|
+
- [vLLM](https://github.com/vllm-project/vllm)
|
|
380
|
+
- [LMDeploy](https://github.com/InternLM/lmdeploy)
|
|
381
|
+
|
|
382
|
+
# Citation
|
|
383
|
+
|
|
384
|
+
```bibtex
|
|
385
|
+
@misc{niu2025mineru25decoupledvisionlanguagemodel,
|
|
386
|
+
title={MinerU2.5: A Decoupled Vision-Language Model for Efficient High-Resolution Document Parsing},
|
|
387
|
+
author={Junbo Niu and Zheng Liu and Zhuangcheng Gu and Bin Wang and Linke Ouyang and Zhiyuan Zhao and Tao Chu and Tianyao He and Fan Wu and Qintong Zhang and Zhenjiang Jin and Guang Liang and Rui Zhang and Wenzheng Zhang and Yuan Qu and Zhifei Ren and Yuefeng Sun and Yuanhong Zheng and Dongsheng Ma and Zirui Tang and Boyu Niu and Ziyang Miao and Hejun Dong and Siyi Qian and Junyuan Zhang and Jingzhou Chen and Fangdong Wang and Xiaomeng Zhao and Liqun Wei and Wei Li and Shasha Wang and Ruiliang Xu and Yuanyuan Cao and Lu Chen and Qianqian Wu and Huaiyu Gu and Lindong Lu and Keming Wang and Dechen Lin and Guanlin Shen and Xuanhe Zhou and Linfeng Zhang and Yuhang Zang and Xiaoyi Dong and Jiaqi Wang and Bo Zhang and Lei Bai and Pei Chu and Weijia Li and Jiang Wu and Lijun Wu and Zhenxiang Li and Guangyu Wang and Zhongying Tu and Chao Xu and Kai Chen and Yu Qiao and Bowen Zhou and Dahua Lin and Wentao Zhang and Conghui He},
|
|
388
|
+
year={2025},
|
|
389
|
+
eprint={2509.22186},
|
|
390
|
+
archivePrefix={arXiv},
|
|
391
|
+
primaryClass={cs.CV},
|
|
392
|
+
url={https://arxiv.org/abs/2509.22186},
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
@misc{wang2024mineruopensourcesolutionprecise,
|
|
396
|
+
title={MinerU: An Open-Source Solution for Precise Document Content Extraction},
|
|
397
|
+
author={Bin Wang and Chao Xu and Xiaomeng Zhao and Linke Ouyang and Fan Wu and Zhiyuan Zhao and Rui Xu and Kaiwen Liu and Yuan Qu and Fukai Shang and Bo Zhang and Liqun Wei and Zhihao Sui and Wei Li and Botian Shi and Yu Qiao and Dahua Lin and Conghui He},
|
|
398
|
+
year={2024},
|
|
399
|
+
eprint={2409.18839},
|
|
400
|
+
archivePrefix={arXiv},
|
|
401
|
+
primaryClass={cs.CV},
|
|
402
|
+
url={https://arxiv.org/abs/2409.18839},
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
@article{he2024opendatalab,
|
|
406
|
+
title={Opendatalab: Empowering general artificial intelligence with open datasets},
|
|
407
|
+
author={He, Conghui and Li, Wei and Jin, Zhenjiang and Xu, Chao and Wang, Bin and Lin, Dahua},
|
|
408
|
+
journal={arXiv preprint arXiv:2407.13773},
|
|
409
|
+
year={2024}
|
|
410
|
+
}
|
|
411
|
+
```
|
|
412
|
+
|
|
413
|
+
# Star History
|
|
414
|
+
|
|
415
|
+
<a>
|
|
416
|
+
<picture>
|
|
417
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=opendatalab/MinerU&type=Date&theme=dark" />
|
|
418
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=opendatalab/MinerU&type=Date" />
|
|
419
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=opendatalab/MinerU&type=Date" />
|
|
420
|
+
</picture>
|
|
421
|
+
</a>
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
# Links
|
|
425
|
+
- [Easy Data Preparation with latest LLMs-based Operators and Pipelines](https://github.com/OpenDCAI/DataFlow)
|
|
426
|
+
- [Vis3 (OSS browser based on s3)](https://github.com/opendatalab/Vis3)
|
|
427
|
+
- [LabelU (A Lightweight Multi-modal Data Annotation Tool)](https://github.com/opendatalab/labelU)
|
|
428
|
+
- [LabelLLM (An Open-source LLM Dialogue Annotation Platform)](https://github.com/opendatalab/LabelLLM)
|
|
429
|
+
- [PDF-Extract-Kit (A Comprehensive Toolkit for High-Quality PDF Content Extraction)](https://github.com/opendatalab/PDF-Extract-Kit)
|
|
430
|
+
- [OmniDocBench (A Comprehensive Benchmark for Document Parsing and Evaluation)](https://github.com/opendatalab/OmniDocBench)
|
|
431
|
+
- [Magic-HTML (Mixed web page extraction tool)](https://github.com/opendatalab/magic-html)
|
|
432
|
+
- [Magic-Doc (Fast speed ppt/pptx/doc/docx/pdf extraction tool)](https://github.com/InternLM/magic-doc)
|
|
433
|
+
- [Dingo: A Comprehensive AI Data Quality Evaluation Tool](https://github.com/MigoXLab/dingo)
|
|
@@ -1,27 +1,31 @@
|
|
|
1
1
|
mineru/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
2
|
-
mineru/version.py,sha256=
|
|
2
|
+
mineru/version.py,sha256=EtKWW0Hnl5oWglRNH0HZigvcDT2FEs58ek8buJdwW1E,22
|
|
3
3
|
mineru/backend/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
4
4
|
mineru/backend/utils.py,sha256=GLJU3IznDmhE1_qNmkU1UOtsuskIHBezgsEVO6Uar-Y,698
|
|
5
|
+
mineru/backend/hybrid/__init__.py,sha256=IFgr2C8NfSAj8q7JF7QOqMvCiJ6Fc8TIuU3Uh2DaFZU,51
|
|
6
|
+
mineru/backend/hybrid/hybrid_analyze.py,sha256=Sckw6T-pvMv3V_nqZkBeW8kY4zNIBlWxqeS2vXqNqtY,20939
|
|
7
|
+
mineru/backend/hybrid/hybrid_magic_model.py,sha256=39ByeZh54KBbPe77bzGCqZrZ5RNwNxGYttcoisgDOrc,24668
|
|
8
|
+
mineru/backend/hybrid/hybrid_model_output_to_middle_json.py,sha256=yE-c1eGa5LzPqLfKfvBON_SJRljqyz2B7LiglFcE7FQ,8468
|
|
5
9
|
mineru/backend/pipeline/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
6
|
-
mineru/backend/pipeline/batch_analyze.py,sha256=
|
|
7
|
-
mineru/backend/pipeline/model_init.py,sha256=
|
|
10
|
+
mineru/backend/pipeline/batch_analyze.py,sha256=3UBs2WOwcI-mfGAlxZt437OqSOleXPLnpYbrD9h5D54,21303
|
|
11
|
+
mineru/backend/pipeline/model_init.py,sha256=wz8VdieUXCxzS9NQqkmaiXweey8xz-_DBvmC1OuK_B4,12469
|
|
8
12
|
mineru/backend/pipeline/model_json_to_middle_json.py,sha256=reXkUR_wKmJD64d7vRNXMxFviwkzDlGjRshpdwsVquI,10951
|
|
9
13
|
mineru/backend/pipeline/model_list.py,sha256=7cXMBfZrP0K6qWueg1D_-WoUANeSINzkn_ic9E7YQLs,222
|
|
10
14
|
mineru/backend/pipeline/para_split.py,sha256=Kq95MmvkPm7rKxlCSGiTvVKyF7CErHI2eGGAs5sLl0Q,17119
|
|
11
|
-
mineru/backend/pipeline/pipeline_analyze.py,sha256=
|
|
15
|
+
mineru/backend/pipeline/pipeline_analyze.py,sha256=RPQTtu-m4WYVQxIRKLj39VPyaKqroi5Tc9-FCEuQhX8,6599
|
|
12
16
|
mineru/backend/pipeline/pipeline_magic_model.py,sha256=w8jGx8f6yZN0Wf2yPP3L9rYKc9rogxreZCrUJzJvPO8,14974
|
|
13
|
-
mineru/backend/pipeline/pipeline_middle_json_mkcontent.py,sha256=
|
|
17
|
+
mineru/backend/pipeline/pipeline_middle_json_mkcontent.py,sha256=NJCLGKE7BqM24bRdpXCfTalyiqozowFZjpdzpIUy5aA,14672
|
|
14
18
|
mineru/backend/vlm/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
15
19
|
mineru/backend/vlm/model_output_to_middle_json.py,sha256=AqYX44gS9crUO_t7SuUatD71EVjow6pI6yA2Ik3gQ0s,5139
|
|
16
|
-
mineru/backend/vlm/utils.py,sha256=
|
|
17
|
-
mineru/backend/vlm/vlm_analyze.py,sha256=
|
|
18
|
-
mineru/backend/vlm/vlm_magic_model.py,sha256=
|
|
19
|
-
mineru/backend/vlm/vlm_middle_json_mkcontent.py,sha256=
|
|
20
|
+
mineru/backend/vlm/utils.py,sha256=sqcS4WVCcxVL1aElKII1zNYMu2yH5tRpVqRb4lXVm38,3650
|
|
21
|
+
mineru/backend/vlm/vlm_analyze.py,sha256=EdfEmkroA3lafRZLqN4uOaLWx9oxVnUocqFsWZyS82c,11666
|
|
22
|
+
mineru/backend/vlm/vlm_magic_model.py,sha256=mD-irxboo2DmMu4QF1wnvbti2xdNyBmNflbB4a-TmsU,21402
|
|
23
|
+
mineru/backend/vlm/vlm_middle_json_mkcontent.py,sha256=w-Szbm4HitR7MY4pinSCZZdXtPSqmtlU9cjNh4IOQyg,29499
|
|
20
24
|
mineru/cli/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
21
|
-
mineru/cli/client.py,sha256=
|
|
22
|
-
mineru/cli/common.py,sha256=
|
|
23
|
-
mineru/cli/fast_api.py,sha256=
|
|
24
|
-
mineru/cli/gradio_app.py,sha256=
|
|
25
|
+
mineru/cli/client.py,sha256=mPNfMEShVG-ithmlJQ5nGRIad2gCZgUjBGHN7zAmLhQ,6978
|
|
26
|
+
mineru/cli/common.py,sha256=srzkJeh0dMlaccDlGWaDBIToqXLPFeyYL4JsARCGHTc,20468
|
|
27
|
+
mineru/cli/fast_api.py,sha256=TGpZqyUE1kg2eXsP76pr0p1yqNOOU9jyjL5Pc0FJwRc,16637
|
|
28
|
+
mineru/cli/gradio_app.py,sha256=2IIWOm2bEHHq5BZMlfmN3yAJw1Nf8SUALTQ95o-bYy0,21863
|
|
25
29
|
mineru/cli/models_download.py,sha256=LNfoIpUlJM7m7qb2SiCxtjMDw4jILBQtZwNP2JoY81U,4815
|
|
26
30
|
mineru/cli/vlm_server.py,sha256=27HaqO3wpMXSA_nA3CC6JOBTHK3q66SP00cD6m9HuQE,1974
|
|
27
31
|
mineru/data/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
@@ -43,13 +47,13 @@ mineru/model/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
|
43
47
|
mineru/model/layout/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
44
48
|
mineru/model/layout/doclayoutyolo.py,sha256=DttINdulzTiYcVDl_70oDtUdfVmGc9qkKWmbPOGAeV0,3867
|
|
45
49
|
mineru/model/mfd/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
46
|
-
mineru/model/mfd/yolo_v8.py,sha256=
|
|
50
|
+
mineru/model/mfd/yolo_v8.py,sha256=t7ptmShHoZCW9WkqLNCL1KRChxpa2E7j5g5fibXlUvY,3681
|
|
47
51
|
mineru/model/mfr/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
48
52
|
mineru/model/mfr/utils.py,sha256=pAi1HnkTuO0R6251Hdl-o50m0wH0Ce89PAf74WCsXPU,11499
|
|
49
53
|
mineru/model/mfr/pp_formulanet_plus_m/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
54
|
mineru/model/mfr/pp_formulanet_plus_m/predict_formula.py,sha256=alGX_sPJxZh_7v1sOK3DJ8akfkWO-2c5I_JR7aXMTLU,5588
|
|
51
55
|
mineru/model/mfr/pp_formulanet_plus_m/processors.py,sha256=MSKyanxiDDjgDQHBov-GjKtPnMx9tSmxBC9GIkM3ft8,23832
|
|
52
|
-
mineru/model/mfr/unimernet/Unimernet.py,sha256=
|
|
56
|
+
mineru/model/mfr/unimernet/Unimernet.py,sha256=1SGLSQ2rc6oslnEwP4Ti7JxaNlyCSGge0js-Tr1VikE,7864
|
|
53
57
|
mineru/model/mfr/unimernet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
58
|
mineru/model/mfr/unimernet/unimernet_hf/__init__.py,sha256=kHcISG8GS4TWJW34SCJCei1jxo6HxvO00aC0dqyNFgI,413
|
|
55
59
|
mineru/model/mfr/unimernet/unimernet_hf/modeling_unimernet.py,sha256=_lN3zDKxeqsW-h9tXx79DYiT5uT4P9ixG49WrSYKFxE,7551
|
|
@@ -148,24 +152,26 @@ mineru/model/utils/tools/infer/pytorchocr_utility.py,sha256=i1PFN-_kefJUUZ4Vk7ig
|
|
|
148
152
|
mineru/model/vlm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
153
|
mineru/model/vlm/lmdeploy_server.py,sha256=PvxJNcUIKB8VzWMDXeV1t0SHSgz_ULO36ZAzJbppz90,3262
|
|
150
154
|
mineru/model/vlm/vllm_server.py,sha256=w5ddusPbcVaEoWAo_BRjmwv_Ywxrc_bCMRhxihoyykY,2263
|
|
151
|
-
mineru/resources/header.html,sha256=
|
|
155
|
+
mineru/resources/header.html,sha256=7xrf6bGloR-3ZeTDyA-JvavE_NeRuUDe3p07cEKUXSI,4769
|
|
152
156
|
mineru/resources/fasttext-langdetect/lid.176.ftz,sha256=jzRyz-hzintgmejpmcPL-uDc0VaWqsfXc4qAOdtgPoM,938013
|
|
153
157
|
mineru/utils/__init__.py,sha256=8CRrCQVuExa0BttRFh3Z40lFy2K5jN0sp67KWjOlj5c,50
|
|
154
158
|
mineru/utils/block_pre_proc.py,sha256=uGBmxf2MR9bplTnQI8xHjCI-kj3plRhJr0hcWKidbOQ,9632
|
|
155
159
|
mineru/utils/block_sort.py,sha256=5e1mOLB3W7xu5Y1hmhvGSHPL_aQ41R_4VXcP4vjYAOU,12976
|
|
156
|
-
mineru/utils/boxbase.py,sha256=
|
|
160
|
+
mineru/utils/boxbase.py,sha256=xnGA1k7hVtTQrreqlJmK-SA3y9edTHgLmGiqGrSXckE,7568
|
|
161
|
+
mineru/utils/char_utils.py,sha256=74T5Ylr5mi1uddAIuJku9Z6sH7vhR7t595_H7qmbu4c,1777
|
|
157
162
|
mineru/utils/check_sys_env.py,sha256=TRjzg4xWyoSGrgv4KaP225A-99xBgLAfZ1cPcGqrBAA,1191
|
|
158
163
|
mineru/utils/cli_parser.py,sha256=4seFAu1kulsYnw6WM2q_cxgEOt2tErZVkI-LNEF_kGw,1445
|
|
159
164
|
mineru/utils/config_reader.py,sha256=IRVWTpBnbnRpck6eXZUKw-fcLt7hon5S4uqWW-RBb1w,4075
|
|
160
165
|
mineru/utils/cut_image.py,sha256=g3m4nfcJNWlxi-P0kpXTtlmspXkMcLCfGwmYuQ-Z2hE,751
|
|
161
166
|
mineru/utils/draw_bbox.py,sha256=FkgppjUzRhN-uxvChdkhHXcDavJEaApMD6qC6qoRwfQ,20292
|
|
162
|
-
mineru/utils/
|
|
167
|
+
mineru/utils/engine_utils.py,sha256=Jmao9-O-sZDzH7vANKEDaY6NJ8tuthKsTr23LFIeBLU,2203
|
|
168
|
+
mineru/utils/enum_class.py,sha256=Wejt7zX-EbmvQM_aiIPCS4cFN_K0-8OYzlO5Pyysugc,3728
|
|
163
169
|
mineru/utils/format_utils.py,sha256=2s89vHcSISjuolk8Hvg3K-5-rRbiT3Us7eFLzUKrNKs,10233
|
|
164
170
|
mineru/utils/guess_suffix_or_lang.py,sha256=aUC2wAJwa5LH0SHxwTbOEJqVVgvpdUCWFF6of8eDVkc,1198
|
|
165
171
|
mineru/utils/hash_utils.py,sha256=UPS_8NRBmVumdyOv16Lmv6Ly2xK8OVDJEe5gG6gKIFk,857
|
|
166
172
|
mineru/utils/language.py,sha256=7RT3mxSa7jdpoC5ySd7ZddHA7TO7UsnmDOWiYZAxuyg,1433
|
|
167
173
|
mineru/utils/llm_aided.py,sha256=9WUytvxenSAuaWR4sTQhVPQ5h8pY0wVOH1O2sj_6dLs,5149
|
|
168
|
-
mineru/utils/magic_model_utils.py,sha256=
|
|
174
|
+
mineru/utils/magic_model_utils.py,sha256=I6vdN56aqhQBGOasoWHiJbjnXsBwUojw6xFjbWZSHaU,8656
|
|
169
175
|
mineru/utils/model_utils.py,sha256=6moOQqE5ShHaJKkENXP8BXJA7RCWtOGlYHZ3nidwmZs,18977
|
|
170
176
|
mineru/utils/models_download_utils.py,sha256=UfjvwhxO6BkJHa5JSpEVNZ71GoLMPMmJpym3THET2T4,2957
|
|
171
177
|
mineru/utils/ocr_utils.py,sha256=lPIrwNUib5mrzUkponRYHuUCdjV2qvETNLSzOLyflrU,15990
|
|
@@ -177,11 +183,11 @@ mineru/utils/pdf_reader.py,sha256=WeINm5SyWBUXT0wP9lzIbeHs8P6WUIkN6nVL5X4LzG4,32
|
|
|
177
183
|
mineru/utils/pdf_text_tool.py,sha256=KEztjfdqsIHHuiTEAMAL7Lr1OS3R7Ur-uTqGiCRjReQ,1364
|
|
178
184
|
mineru/utils/run_async.py,sha256=rPeP4BCZerR8VByRDhiYzfZiahLVqoZEBVAS54dAjNg,1286
|
|
179
185
|
mineru/utils/span_block_fix.py,sha256=0eVQjJCrT03woRt9hoh6Uu42Tp1dacfGTv2x3B9qq94,8797
|
|
180
|
-
mineru/utils/span_pre_proc.py,sha256=
|
|
181
|
-
mineru/utils/table_merge.py,sha256=
|
|
182
|
-
mineru-2.
|
|
183
|
-
mineru-2.
|
|
184
|
-
mineru-2.
|
|
185
|
-
mineru-2.
|
|
186
|
-
mineru-2.
|
|
187
|
-
mineru-2.
|
|
186
|
+
mineru/utils/span_pre_proc.py,sha256=nu6Bh5TWPKFzHuFfbEs0Asr04M4xOL5IONz_8GJHn44,13862
|
|
187
|
+
mineru/utils/table_merge.py,sha256=zPjDwso28bHEaH9mwlQMtPvwAPcdNfwDK-pinXTf7E8,15129
|
|
188
|
+
mineru-2.7.0.dist-info/licenses/LICENSE.md,sha256=jVa0BUaKrRH4erV2P5AeJ24I2WRv9chIGxditreJ6e0,34524
|
|
189
|
+
mineru-2.7.0.dist-info/METADATA,sha256=NoPOfPd9ZWB153FfrhRLnlqBcNShcZP1WEDiCc8U93k,35263
|
|
190
|
+
mineru-2.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
191
|
+
mineru-2.7.0.dist-info/entry_points.txt,sha256=JbtrCPhx1T32s7TONUsteKg-24ZwRT1HSiFtW5jypVw,376
|
|
192
|
+
mineru-2.7.0.dist-info/top_level.txt,sha256=zuGQfZcbsHv4I4oKI9gaKPqEWBFm6xJroKuug2LnKP8,7
|
|
193
|
+
mineru-2.7.0.dist-info/RECORD,,
|