jarobyte91 / post_ocr_correction

Source code for the paper "Post-OCR Document Correction with Large Ensembles of Character Sequence-to-Sequence Models"

Home Page:https://ojs.aaai.org/index.php/AAAI/article/view/21369

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Post-OCR Document Correction with Large Ensembles of Character Sequence-to-Sequence Models

This is the source code for the paper Post-OCR Document Correction with Large Ensembles of Character Sequence-to-Sequence Models by Ramirez-Orta et al., (2021).

Abstract

In this paper, we propose a novel method to extend sequence-to-sequence models to accurately process sequences much longer than the ones used during training while being sample-and resource-efficient, supported by thorough experimentation. To investigate the effectiveness of our method, we apply it to the task of correcting documents already processed with Optical Character Recognition (OCR) systems using sequence-to-sequence models based on characters. We test our method on nine languages of the ICDAR 2019 competition on post-OCR text correction and achieve a new state-of-the-art performance in five of them. The strategy with the best performance involves splitting the input document in character n-grams and combining their individual corrections into the final output using a voting scheme that is equivalent to an ensemble of a large number of sequence models. We further investigate how to weigh the contributions from each one of the members of this ensemble.

Usage

Contents

  • The data folder contains the model parameters and architecture specifications to reconstruct the models for each language (this is created after running download_data.py).
  • The evaluate folder contains the scripts to reproduce the evaluation results from the paper.
  • The lib folder contains the code to use the sequence-to-sequence models to correct very long strings of characters, to compute the metrics used in the paper and the source code of the sequence-to-sequence models.
  • The notebooks folder contains the Jupyter Notebooks to build the datasets required to train the sequence-to-sequence models, as well as the exploratory data analysis of the data from the ICDAR 2019 competition.
  • The tests folder contains scripts to test the installation of the repository.
  • The train folder contains the scripts with hyper-parameters to train the models shown in the paper.
  • The tutorials folder contains use cases on how to use the library.

Installation

git clone https://github.com/jarobyte91/post_ocr_correction.git
cd post_ocr_correction
pip install .

To download the datasets and models

python download_data.py

To reproduce the results from the paper

pip install -r requirements.txt
cd notebooks

To install the Python package

pip install post_ocr_correction

Contribute & Support

License

The project is licensed under the MIT License.

About

Source code for the paper "Post-OCR Document Correction with Large Ensembles of Character Sequence-to-Sequence Models"

https://ojs.aaai.org/index.php/AAAI/article/view/21369

License:MIT License


Languages

Language:Jupyter Notebook 96.2%Language:Python 3.7%Language:Shell 0.0%