https://github.com/amir22010/deep-text-recognition-benchmark

Text recognition (optical character recognition) with deep learning methods.

https://github.com/amir22010/deep-text-recognition-benchmark

Science Score: 10.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
    Links to: arxiv.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.1%) to scientific vocabulary
Last synced: 9 months ago · JSON representation

Repository

Text recognition (optical character recognition) with deep learning methods.

Basic Info
  • Host: GitHub
  • Owner: Amir22010
  • License: apache-2.0
  • Language: Python
  • Default Branch: master
  • Homepage:
  • Size: 1.42 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Fork of clovaai/deep-text-recognition-benchmark
Created almost 7 years ago · Last pushed almost 7 years ago

https://github.com/Amir22010/deep-text-recognition-benchmark/blob/master/

# What is wrong with scene text recognition model comparisons? dataset and model analysis
| [paper](https://arxiv.org/abs/1904.01906) | [training and evaluation data](https://github.com/clovaai/deep-text-recognition-benchmark#download-lmdb-dataset-for-traininig-and-evaluation-from-here) | [failure cases and cleansed label](https://github.com/clovaai/deep-text-recognition-benchmark#download-failure-cases-and-cleansed-label-from-here) | [pretrained model](https://drive.google.com/drive/folders/15WPsuPJDCzhp2SvYZLRj8mAlT3zmoAMW) | [Baidu ver(passwd:rryk)](https://pan.baidu.com/s/1KSNLv4EY3zFWHpBYlpFCBQ) |

Official PyTorch implementation of our four-stage STR framework, that most existing STR models fit into.
Using this framework allows for the module-wise contributions to performance in terms of accuracy, speed, and memory demand, under one consistent set of training and evaluation datasets.
Such analyses clean up the hindrance on the current comparisons to understand the performance gain of the existing modules. 

## Honors Based on this framework, we recorded the 1st place of [ICDAR2013 focused scene text](https://rrc.cvc.uab.es/?ch=2&com=evaluation&task=3), [ICDAR2019 ArT](https://rrc.cvc.uab.es/files/ICDAR2019-ArT.pdf) and 3rd place of [ICDAR2017 COCO-Text](https://rrc.cvc.uab.es/?ch=5&com=evaluation&task=2), [ICDAR2019 ReCTS (task1)](https://rrc.cvc.uab.es/files/ICDAR2019-ReCTS.pdf).
The difference between our paper and ICDAR challenge is summarized [here](https://github.com/clovaai/deep-text-recognition-benchmark/issues/13). ## Updates **Jun 24, 2019**: added gt.txt of failure cases that contains path and label of each image, see [image_release_190624.zip](https://drive.google.com/open?id=1VAP9l5GL5fgptgKDLio_h3nMe7X9W0Mf)
**May 17, 2019**: uploaded resources in Baidu Netdisk also, added [Run demo](https://github.com/clovaai/deep-text-recognition-benchmark#run-demo-with-pretrained-model). (check [@sharavsambuu's](https://github.com/sharavsambuu) [colab demo also](https://colab.research.google.com/drive/1PHnc_QYyf9b1_KJ1r15wYXaOXkdm1Mrk))
**May 9, 2019**: PyTorch version updated from 1.0.1 to 1.1.0, use torch.nn.CTCLoss instead of torch-baidu-ctc, and various minor updated. ## Getting Started ### Dependency - This work was tested with PyTorch 1.1.0, CUDA 9.0, python 3.6 and Ubuntu 16.04.
You may need `pip3 install torch==1.1.0` - requirements : lmdb, pillow, torchvision, nltk, natsort ``` pip3 install lmdb pillow torchvision nltk natsort ``` ### Download lmdb dataset for traininig and evaluation from [here](https://drive.google.com/drive/folders/192UfE9agQUMNq6AgU3_E05_FcPZK4hyt) data_lmdb_release.zip contains below.
training datasets : [MJSynth (MJ)](http://www.robots.ox.ac.uk/~vgg/data/text/)[1] and [SynthText (ST)](http://www.robots.ox.ac.uk/~vgg/data/scenetext/)[2] \ validation datasets : the union of the training sets [IC13](http://rrc.cvc.uab.es/?ch=2)[3], [IC15](http://rrc.cvc.uab.es/?ch=4)[4], [IIIT](http://cvit.iiit.ac.in/projects/SceneTextUnderstanding/IIIT5K.html)[5], and [SVT](http://www.iapr-tc11.org/mediawiki/index.php/The_Street_View_Text_Dataset)[6].\ evaluation datasets : benchmark evaluation datasets, consist of [IIIT](http://cvit.iiit.ac.in/projects/SceneTextUnderstanding/IIIT5K.html)[5], [SVT](http://www.iapr-tc11.org/mediawiki/index.php/The_Street_View_Text_Dataset)[6], [IC03](http://www.iapr-tc11.org/mediawiki/index.php/ICDAR_2003_Robust_Reading_Competitions)[7], [IC13](http://rrc.cvc.uab.es/?ch=2)[3], [IC15](http://rrc.cvc.uab.es/?ch=4)[4], [SVTP](http://openaccess.thecvf.com/content_iccv_2013/papers/Phan_Recognizing_Text_with_2013_ICCV_paper.pdf)[8], and [CUTE](http://cs-chan.com/downloads_CUTE80_dataset.html)[9]. ### Run demo with pretrained model 1. Download pretrained model from [here](https://drive.google.com/drive/folders/15WPsuPJDCzhp2SvYZLRj8mAlT3zmoAMW) 2. Add image files to test into `demo_image/` 3. Run demo.py (add `--sensitive` option if you use case-sensitive model) ``` CUDA_VISIBLE_DEVICES=0 python3 demo.py \ --Transformation TPS --FeatureExtraction ResNet --SequenceModeling BiLSTM --Prediction Attn \ --image_folder demo_image/ \ --saved_model TPS-ResNet-BiLSTM-Attn.pth ``` #### prediction results | demo images | [TPS-ResNet-BiLSTM-Attn](https://drive.google.com/open?id=1b59rXuGGmKne1AuHnkgDzoYgKeETNMv9) | [TPS-ResNet-BiLSTM-Attn (case-sensitive)](https://drive.google.com/open?id=1ajONZOgiG9pEYsQ-eBmgkVbMDuHgPCaY) | | --- | --- | --- | | | available | Available | | | shakeshack | SHARESHACK | | | london | Londen | | | greenstead | Greenstead | | | toast | TOAST | | | merry | MERRY | | | underground | underground | | | ronaldo | RONALDO | | | bally | BALLY | | | university | UNIVERSITY | ### Training and evaluation 1. Train CRNN[10] model ``` CUDA_VISIBLE_DEVICES=0 python3 train.py \ --train_data data_lmdb_release/training --valid_data data_lmdb_release/validation \ --select_data MJ-ST --batch_ratio 0.5-0.5 \ --Transformation None --FeatureExtraction VGG --SequenceModeling BiLSTM --Prediction CTC ``` 2. Test CRNN[10] model ``` CUDA_VISIBLE_DEVICES=0 python3 test.py \ --eval_data data_lmdb_release/evaluation --benchmark_all_eval \ --Transformation None --FeatureExtraction VGG --SequenceModeling BiLSTM --Prediction CTC \ --saved_model saved_models/None-VGG-BiLSTM-CTC-Seed1111/best_accuracy.pth ``` 3. Try to train and test our best accuracy combination (TPS-ResNet-BiLSTM-Attn) also. ([download pretrained model](https://drive.google.com/drive/folders/15WPsuPJDCzhp2SvYZLRj8mAlT3zmoAMW)) ``` CUDA_VISIBLE_DEVICES=0 python3 train.py \ --train_data data_lmdb_release/training --valid_data data_lmdb_release/validation \ --select_data MJ-ST --batch_ratio 0.5-0.5 \ --Transformation TPS --FeatureExtraction ResNet --SequenceModeling BiLSTM --Prediction Attn ``` ``` CUDA_VISIBLE_DEVICES=0 python3 test.py \ --eval_data data_lmdb_release/evaluation --benchmark_all_eval \ --Transformation TPS --FeatureExtraction ResNet --SequenceModeling BiLSTM --Prediction Attn \ --saved_model saved_models/TPS-ResNet-BiLSTM-Attn-Seed1111/best_accuracy.pth ``` ### Arguments * `--train_data`: folder path to training lmdb dataset. * `--valid_data`: folder path to validation lmdb dataset. * `--eval_data`: folder path to evaluation (with test.py) lmdb dataset. * `--select_data`: select training data. default is MJ-ST, which means MJ and ST used as training data. * `--batch_ratio`: assign ratio for each selected data in the batch. default is 0.5-0.5, which means 50% of the batch is filled with MJ and the other 50% of the batch is filled ST. * `--Transformation`: select Transformation module [None | TPS]. * `--FeatureExtraction`: select FeatureExtraction module [VGG | RCNN | ResNet]. * `--SequenceModeling`: select SequenceModeling module [None | BiLSTM]. * `--Prediction`: select Prediction module [CTC | Attn]. * `--saved_model`: assign saved model to evaluation. * `--benchmark_all_eval`: evaluate with 10 evaluation dataset versions, same with Table 1 in our paper. ## Download failure cases and cleansed label from [here](https://drive.google.com/drive/folders/1W84gS9T5GU5l5Wp3VV1aeXIIKV87yjRm) image_release.zip contains failure case images and benchmark evaluation images with cleansed label. ## When you need to create lmdb dataset ``` pip3 install fire python3 create_lmdb_dataset.py --inputPath data/ --gtFile data/gt.txt --outputPath result/ ``` At this time, `gt.txt` should be `{imagepath}\t{label}\n`
For example ``` test/word_1.png Tiredness test/word_2.png kills test/word_3.png A ... ``` ## Acknowledgements This implementation has been based on these repository [crnn.pytorch](https://github.com/meijieru/crnn.pytorch), [ocr_attention](https://github.com/marvis/ocr_attention). ## Reference [1] M. Jaderberg, K. Simonyan, A. Vedaldi, and A. Zisserman. Synthetic data and artificial neural networks for natural scenetext recognition. In Workshop on Deep Learning, NIPS, 2014.
[2] A. Gupta, A. Vedaldi, and A. Zisserman. Synthetic data fortext localisation in natural images. In CVPR, 2016.
[3] D. Karatzas, F. Shafait, S. Uchida, M. Iwamura, L. G. i Big-orda, S. R. Mestre, J. Mas, D. F. Mota, J. A. Almazan, andL. P. De Las Heras. ICDAR 2013 robust reading competition. In ICDAR, pages 14841493, 2013.
[4] D. Karatzas, L. Gomez-Bigorda, A. Nicolaou, S. Ghosh, A. Bagdanov, M. Iwamura, J. Matas, L. Neumann, V. R.Chandrasekhar, S. Lu, et al. ICDAR 2015 competition on ro-bust reading. In ICDAR, pages 11561160, 2015.
[5] A. Mishra, K. Alahari, and C. Jawahar. Scene text recognition using higher order language priors. In BMVC, 2012.
[6] K. Wang, B. Babenko, and S. Belongie. End-to-end scenetext recognition. In ICCV, pages 14571464, 2011.
[7] S. M. Lucas, A. Panaretos, L. Sosa, A. Tang, S. Wong, andR. Young. ICDAR 2003 robust reading competitions. In ICDAR, pages 682687, 2003.
[8] T. Q. Phan, P. Shivakumara, S. Tian, and C. L. Tan. Recognizing text with perspective distortion in natural scenes. In ICCV, pages 569576, 2013.
[9] A. Risnumawan, P. Shivakumara, C. S. Chan, and C. L. Tan. A robust arbitrary text detection system for natural scene images. In ESWA, volume 41, pages 80278048, 2014.
[10] B. Shi, X. Bai, and C. Yao. An end-to-end trainable neural network for image-based sequence recognition and its application to scene text recognition. In TPAMI, volume 39, pages22982304. 2017. ## Links - WebDemo (combination of Clova AI detection and recognition) : https://demo.ocr.clova.ai/ - Repo of detection : https://github.com/clovaai/CRAFT-pytorch ## Citation If you find this work useful for your research, please cite: ``` @article{baek2019STRcomparisons, title={What is wrong with scene text recognition model comparisons? dataset and model analysis}, author={Baek, Jeonghun and Kim, Geewook and Lee, Junyeop and Park, Sungrae and Han, Dongyoon and Yun, Sangdoo and Oh, Seong Joon and Lee, Hwalsuk}, journal={arXiv preprint arXiv:1904.01906}, year={2019} } ``` ## Contact Feel free to contact me if there is any question (Jeonghun Baek jh.baek@navercorp.com). ## License Copyright (c) 2019-present NAVER Corp. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Owner

  • Name: Amir Khan
  • Login: Amir22010
  • Kind: user
  • Location: India

working on developing a state of art AI solutions mainly in computer vision, chat bots and nlp domain. building an awesome AI as a professional developer 😍.

GitHub Events

Total
Last Year