Coder Social home page Coder Social logo

chujinjin101 / mindocr Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mindspore-lab/mindocr

0.0 0.0 0.0 9.13 MB

A toolbox of OCR models, algorithms, and pipelines based on MindSpore

Home Page: https://mindspore-lab.github.io/mindocr/

License: Apache License 2.0

Shell 0.65% C++ 8.43% Python 90.61% C 0.07% CMake 0.12% Cython 0.12%

mindocr's Introduction

Introduction

MindOCR is an open-source toolbox for OCR development and application based on MindSpore, which integrates series of mainstream text detection and recognition algorihtms/models, provides easy-to-use training and inference tools. It can accelerate the process of developing and deploying SoTA text detection and recognition models in real-world applications, such as DBNet/DBNet++ and CRNN/SVTR, and help fulfill the need of image-text understanding.

Major Features
  • Modular design: We decoupled the OCR task into several configurable modules. Users can setup the training and evaluation pipelines, customize the data processing pipeline and model architectures easily by modifying just few lines of code.
  • High-performance: MindOCR provides a series of pretrained weights trained with optimized configurations that reach competitive performance on OCR tasks.
  • Low-cost-to-apply: Easy-to-use inference tools are provided in MindOCR to perform text detection and recognition tasks.

Installation

Prerequisites

MindOCR is built on MindSpore AI framework, which supports CPU/GPU/NPU devices. MindOCR is compatible with the following framework versions. For details and installation guideline, please refer to the installation links shown below.

  • mindspore >= 1.9 [install]
  • python >= 3.7
  • openmpi 4.0.3 (for distributed training/evaluation) [install]
  • mindspore lite (for inference) [install]

Dependency

pip install -r requirements.txt

Install from Source (recommend)

git clone https://github.com/mindspore-lab/mindocr.git
cd mindocr
pip install -e .

Using -e for "editable" mode can help resolve potential module import issues.

Install from PyPI

pip install mindocr

As this project is under active development, the version installed from PyPI is out-of-date currently. (will update soon).

Quick Start

1. Text Detection and Recognition Demo

After installing MindOCR, we can run text detection and recognition on an arbitrary image easily as follows.

python tools/infer/text/predict_system.py --image_dir {path_to_img or dir_to_imgs} \
                                          --det_algorithm DB++  \
                                          --rec_algorithm CRNN

After running, the results will be saved in ./inference_results by default. Here is an example result.

Visualization of text detection and recognition result

We can see that all texts on the image are detected and recognized accurately. For more usage, please refer to the inference section in tutorials.

2. Model Training and Evaluation - Quick Guideline

It is easy to train your OCR model with the tools/train.py script, which supports both text detection and recognition model training.

python tools/train.py --config {path/to/model_config.yaml}

The --config arg specifies the path to a yaml file that defines the model to be trained and the training strategy including data process pipeline, optimizer, lr scheduler, etc.

MindOCR provides SoTA OCR models with their training strategies in configs folder. You may adapt it to your task/dataset, for example, by running

# train text detection model DBNet++ on icdar15 dataset
python tools/train.py --config configs/det/dbnet/db++_r50_icdar15.yaml
# train text recognition model CRNN on icdar15 dataset
python tools/train.py --config configs/rec/crnn/crnn_icdar15.yaml

Similarly, it is easy to evaluate the trained model with the tools/eval.py script.

python tools/eval.py \
    --config {path/to/model_config.yaml} \
    --opt eval.dataset_root={path/to/your_dataset} eval.ckpt_load_path={path/to/ckpt_file}

For more illustration and usage, please refer to the model training section in Tutorials.

3. Model Inference - Quick Guideline

You can do MindSpore Lite inference in MindOCR using MindOCR models or Third-party models (PaddleOCR, MMOCR, etc.). Please refer to MindOCR Models Inference - Quick Start or Third-party Models Inference - Quick Start.

Tutorials

Model List

Text Detection
Text Recognition

For the detailed performance of the trained models, please refer to configs.

For details of MindSpore Lite and ACL inference models support, please refer to MindOCR Models Support List and Third-party Models Support List (PaddleOCR, MMOCR, etc.).

Dataset List

MindOCR provides a dataset conversion tool to OCR datasets with different formats and support customized dataset by users. We have validated the following public OCR datasets in model training/evaluation.

General OCR Datasets

We will include more datasets for training and evaluation. This list will be continuously updated.

Notes

What is New

  • 2023/07/06
  1. Add new trained models
  • 2023/07/05
  1. Add new trained models
  • 2023/06/29
  1. Add new trained models
  • 2023/06/07
  1. Add new trained models
    • PSENet for text detection
    • EAST for text detection
    • SVTR for text recognition
  2. Add more benchmark datasets and their results
  3. Add resume training function, which can be used in case of unexpected interruption in training. Usage: add the resume parameter under the model field in the yaml config, e.g.,resume: True, load and resume training from {ckpt_save_dir}/train_resume.ckpt or resume: /path/to/train_resume.ckpt, load and resume training from the given path.
  4. Improve postprocessing for detection: re-scale detected text polygons to original image space by default, which can be enabled by add "shape_list" to the eval.dataset.output_columns list.
  5. Refactor online inference to support more models, see README.md for details.
  • 2023/05/15
  1. Add new trained models
  2. Add more benchmark datasets and their results
  3. Add checkpoint manager for saving top-k checkpoints and improve log.
  4. Python inference code refactored.
  5. Bug fix: use Meter to average loss for large datasets, disable pred_cast_fp32 for ctcloss in AMP training, fix error when invalid polygons exist.
  • 2023/05/04
  1. Support loading self-defined pretrained checkpoints via setting model-pretrained with checkpoint url or local path in yaml.
  2. Support setting probability for executing augmentation including rotation and flip.
  3. Add Exponential Moving Average(EMA) for model training, which can be enabled by setting train-ema (default: False) and train-ema_decay in the yaml config.
  4. Arg parameter changed:num_columns_to_net -> net_input_column_index: change the column number feeding into the network to the column index.
  5. Arg parameter changed:num_columns_of_labels -> label_column_index: change the column number corresponds to the label to the column index.
  • 2023/04/21
  1. Add parameter grouping to support flexible regularization in training. Usage: add grouping_strategy argument in yaml config to select a predefined grouping strategy, or use no_weight_decay_params argument to pick layers to exclude from weight decay (e.g., bias, norm). Example can be referred in configs/rec/crnn/crnn_icdar15.yaml
  2. Add gradient accumulation to support large batch size training. Usage: add gradient_accumulation_steps in yaml config, the global batch size = batch_size * devices * gradient_accumulation_steps. Example can be referred in configs/rec/crnn/crnn_icdar15.yaml
  3. Add gradient clip to support training stablization. Enable it by setting grad_clip as True in yaml config.
  • 2023/03/23
  1. Add dynamic loss scaler support, compatible with drop overflow update. To enable dynamic loss scaler, please set type of loss_scale as dynamic. A YAML example can be viewed in configs/rec/crnn/crnn_icdar15.yaml
  • 2023/03/20
  1. Arg names changed: output_keys -> output_columns, num_keys_to_net -> num_columns_to_net
  2. Data pipeline updated
  • 2023/03/13
  1. Add system test and CI workflow.
  2. Add modelarts adapter to allow training on OpenI platform. To train on OpenI:
  i)   Create a new training task on the openi cloud platform.
  ii)  Link the dataset (e.g., ic15_mindocr) on the webpage.
  iii) Add run parameter `config` and write the yaml file path on the website UI interface, e.g., '/home/work/user-job-dir/V0001/configs/rec/test.yaml'
  iv)  Add run parameter `enable_modelarts` and set True on the website UI interface.
  v)   Fill in other blanks and launch.

How to Contribute

We appreciate all kinds of contributions including issues and PRs to make MindOCR better.

Please refer to CONTRIBUTING.md for the contributing guideline. Please follow the Model Template and Guideline for contributing a model that fits the overall interface :)

License

This project follows the Apache License 2.0 open-source license.

Citation

If you find this project useful in your research, please consider citing:

@misc{MindSpore OCR 2023,
    title={{MindSpore OCR }:MindSpore OCR Toolbox},
    author={MindSpore Team},
    howpublished = {\url{https://github.com/mindspore-lab/mindocr/}},
    year={2023}
}

mindocr's People

Contributors

samithuang avatar haoyanglee avatar liangxhao avatar hadipash avatar hqkate avatar zhtmike avatar victorhe-1 avatar songyuanwei avatar wtomin avatar colawyee avatar jianyunchao avatar tonytonglt avatar heepengpeng avatar shahjahanishaq avatar spencerbb-02 avatar bruce-py avatar kingcong avatar safeandnewyh avatar wang-hua-2019 avatar caitinzhao avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.