Image-Text-to-Text
PaddleOCR
Safetensors
English
Chinese
multilingual
paddleocr_vl
ERNIE4.5
PaddlePaddle
image-to-text
ocr
document-parse
layout
table
formula
chart
seal
spotting
conversational
custom_code
Eval Results
Instructions to use PaddlePaddle/PaddleOCR-VL-1.5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PaddleOCR
How to use PaddlePaddle/PaddleOCR-VL-1.5 with PaddleOCR:
# See https://www.paddleocr.ai/latest/version3.x/pipeline_usage/PaddleOCR-VL.html to installation from paddleocr import PaddleOCRVL pipeline = PaddleOCRVL(pipeline_version="v1.5") output = pipeline.predict("path/to/document_image.png") for res in output: res.print() res.save_to_json(save_path="output") res.save_to_markdown(save_path="output") - Notebooks
- Google Colab
- Kaggle
Update README.md
#18
by jopillar - opened
paddle ocr的文档已经过时,按照文档中的命令启动会导致使用的是PaddleOCR-VL模型而不是1.5的版本,此外在paddleocr中使用vllm作为后端,使用文档结构解析功能的时候,会请求PaddleOCR-VL-1.5模型,但是在vllm中 模型名字默认是带组织前缀的也就是说此时vllm 能够提供服务的模型名字是PaddlePaddle/PaddleOCR-VL-1.5 而不是PaddleOCR-VL-1.5,从而导致VLLM会返回如下错误
Error with model error=ErrorInfo(message='The model
PaddleOCR-VL-1.5does not exist.', type='NotFoundError', param='model', code=404)