File tree Expand file tree Collapse file tree 7 files changed +12
-10
lines changed
Expand file tree Collapse file tree 7 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 22
33## 😺 项目介绍
44
5- ** RapidDoc 是一个轻量级、专注于文档解析的开源框架,支持 ** OCR、版面分析、公式识别、表格识别和阅读顺序恢复** 等多种功能,支持将复杂 PDF 文档转换为 Markdown、JSON、WORD、HTML 多种格式 **
5+ ** RapidDoc 是一个轻量级、专注于文档解析的开源框架,支持 ** OCR、版面分析、公式识别、表格识别和阅读顺序恢复** 等多种功能,支持将复杂 PDF 文档转换为 Markdown、JSON、WORD、HTML 格式。 **
66
77** 框架基于 [ Mineru] ( https://github.com/opendatalab/MinerU ) 二次开发,移除 VLM,专注于 Pipeline 产线下的高效文档解析,在 CPU 上也能保持不错的解析速度。**
88
5656
5757### 1. OmniDocBench
5858
59- 以下是RapidDoc在 OmniDocBench 上的评估结果。Pipeline 模型使用 PP-DocLayoutV2、PP-OCRv5-mobile、PP-FormulaNet_plus-M、UNET_SLANET_PLUS。
59+ 以下是RapidDoc在 OmniDocBench 上的评估结果。
60+
61+ Pipeline 模型使用 PP-DocLayoutV2、PP-OCRv5-mobile、PP-FormulaNet_plus-M、UNET_SLANET_PLUS。
6062<table style =" width :100% ; border-collapse : collapse ;" >
6163 <caption>Comprehensive evaluation of document parsing on OmniDocBench (v1.5)</caption>
6264 <thead>
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ RUN apt-get update && \
2121WORKDIR /app
2222
2323# 安装 Python 依赖
24- RUN python3 -m pip install 'rapid-doc[cpu]==0.6.0 ' -i https://pypi.org/simple --break-system-packages && \
25- python3 -m pip install 'rapid-doc[api]==0.6.0 ' -i https://pypi.org/simple --break-system-packages && \
24+ RUN python3 -m pip install 'rapid-doc[cpu]==0.6.1 ' -i https://pypi.org/simple --break-system-packages && \
25+ python3 -m pip install 'rapid-doc[api]==0.6.1 ' -i https://pypi.org/simple --break-system-packages && \
2626 python3 -m pip cache purge
2727
2828# 复制配置文件和脚本(优先复制,利用Docker缓存)
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ WORKDIR /app
2929
3030# 安装 Python 依赖
3131RUN python3 -m pip install --upgrade pip setuptools wheel && \
32- python3 -m pip install 'rapid-doc[gpu]==0.6.0 ' 'rapid-doc[api]==0.6.0 ' -i https://pypi.org/simple && \
32+ python3 -m pip install 'rapid-doc[gpu]==0.6.1 ' 'rapid-doc[api]==0.6.1 ' -i https://pypi.org/simple && \
3333 python3 -m pip install 'onnxruntime-gpu==1.23.0' -i https://pypi.org/simple && \
3434 python3 -m pip cache purge
3535
Original file line number Diff line number Diff line change 1212cd docker
1313
1414# 1. CPU 模式
15- docker build -f Dockerfile -t hzkitty/rapid-doc:0.6.0 .
15+ docker build -f Dockerfile -t hzkitty/rapid-doc:0.6.1 .
1616
1717# 2. GPU 模式
18- docker build -f DockerfileGPU -t hzkitty/rapid-doc:0.6.0 -gpu .
18+ docker build -f DockerfileGPU -t hzkitty/rapid-doc:0.6.1 -gpu .
1919```
2020
2121
Original file line number Diff line number Diff line change 11services :
22 rapid-doc-server :
33 container_name : rapid-doc-server
4- image : hzkitty/rapid-doc:0.6.0 -gpu
4+ image : hzkitty/rapid-doc:0.6.1 -gpu
55 deploy :
66 resources :
77 reservations :
Original file line number Diff line number Diff line change 11services :
22 rapid-doc-server :
33 container_name : rapid-doc-server
4- image : hzkitty/rapid-doc:0.6.0
4+ image : hzkitty/rapid-doc:0.6.1
55 ports :
66 - " 8888:8888"
77 environment :
Original file line number Diff line number Diff line change 1- __version__ = "0.6.0 "
1+ __version__ = "0.6.1 "
22__mineru_version__ = "2.6.4"
You can’t perform that action at this time.
0 commit comments