Metadata-Version: 2.1
Name: armcor
Version: 0.1
Summary: ArmCor is Python library for OCR errors detection and correction for Armenian texts
Home-page: https://github.com/DotCom99/ArmCor
Author: Shahane Tigranyan, Tsolak Ghukasyan
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# ArmCor

ArmCor is a Python library for detecting and correcting OCR errors for Armenian texts.

## Installation

```bash
pip install armcor
```

## Usage

```python
from armcor import ocr
ocr.detect_errors(tokens) # returns list of labels, 
                             # 1 if word contains OCR errors, and 0 otherwise
ocr.correct_errors(tokens, labels) # returns list of corrected words








