zyc 2646edabc0 改变参数 | 3 gadi atpakaļ | |
---|---|---|
.. | ||
PPOCRLabel | 3 gadi atpakaļ | |
StyleText | 3 gadi atpakaļ | |
configs | 3 gadi atpakaļ | |
deploy | 3 gadi atpakaļ | |
doc | 3 gadi atpakaļ | |
ppocr | 3 gadi atpakaļ | |
tools | 3 gadi atpakaļ | |
.gitignore | 3 gadi atpakaļ | |
.pre-commit-config.yaml | 3 gadi atpakaļ | |
.style.yapf | 3 gadi atpakaļ | |
LICENSE | 3 gadi atpakaļ | |
MANIFEST.in | 3 gadi atpakaļ | |
README.md | 3 gadi atpakaļ | |
README_ch.md | 3 gadi atpakaļ | |
__init__.py | 3 gadi atpakaļ | |
paddleocr.py | 3 gadi atpakaļ | |
requirements.txt | 3 gadi atpakaļ | |
setup.py | 3 gadi atpakaļ | |
train.sh | 3 gadi atpakaļ |
English | 简体中文
PaddleOCR aims to create multilingual, awesome, leading, and practical OCR tools that help users train better models and apply them into practice.
PaddleOCR supports both dynamic graph and static graph programming paradigm
Recent updates
The above pictures are the visualizations of the general ppocr_server model. For more effect pictures, please see More visualizations.
You can also quickly experience the ultra-lightweight OCR : Online Experience
Mobile DEMO experience (based on EasyEdge and Paddle-Lite, supports iOS and Android systems): Sign in to the website to obtain the QR code for installing the App
Also, you can scan the QR code below to install the App (Android support only)
Note : Compared with models 1.1, which are trained with static graph programming paradigm, models 2.0 are the dynamic graph trained version and achieve close performance.
Model introduction | Model name | Recommended scene | Detection model | Direction classifier | Recognition model |
---|---|---|---|---|---|
Chinese and English ultra-lightweight OCR model (9.4M) | ch_ppocr_mobile_v2.0_xx | Mobile & server | inference model / pre-trained model | inference model / pre-trained model | inference model / pre-trained model |
Chinese and English general OCR model (143.4M) | ch_ppocr_server_v2.0_xx | Server | inference model / pre-trained model | inference model / pre-trained model | inference model / pre-trained model |
For more model downloads (including multiple languages), please refer to PP-OCR v2.0 series model downloads.
For a new language request, please refer to Guideline for new language_requests.
PP-OCR is a practical ultra-lightweight OCR system. It is mainly composed of three parts: DB text detection[2], detection frame correction and CRNN text recognition[7]. The system adopts 19 effective strategies from 8 aspects including backbone network selection and adjustment, prediction head design, data augmentation, learning rate transformation strategy, regularization parameter selection, pre-training model use, and automatic model tailoring and quantization to optimize and slim down the models of each module. The final results are an ultra-lightweight Chinese and English OCR model with an overall size of 3.5M and a 2.8M English digital OCR model. For more details, please refer to the PP-OCR technical article (https://arxiv.org/abs/2009.09941). Besides, The implementation of the FPGM Pruner [8] and PACT quantization [9] is based on PaddleSlim.
Chinese OCR model
English OCR model
Multilingual OCR model
If you want to request a new language support, a PR with 2 following files are needed:
In folder ppocr/utils/dict,
it is necessary to submit the dict text to this path and name it with {language}_dict.txt
that contains a list of all characters. Please see the format example from other files in that folder.
In folder ppocr/utils/corpus,
it is necessary to submit the corpus to this path and name it with {language}_corpus.txt
that contains a list of words in your language.
Maybe, 50000 words per language is necessary at least.
Of course, the more, the better.
If your language has unique elements, please tell me in advance within any way, such as useful links, wikipedia and so on.
More details, please refer to Multilingual OCR Development Plan.
This project is released under Apache 2.0 license
We welcome all the contributions to PaddleOCR and appreciate for your feedback very much.