AndyTheFactory / RO-Diacritics

Python package for Romanian diacritics restoration

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RO Diacritics module

RO Diacritics is a straightforward diacritics restoration module for Romanian Language

from ro_diacritics import restore_diacritics
print(restore_diacritics("fara poezie, viata e pustiu"))

or correcting a pandas dataframe:

from ro_diacritics import restore_diacritics
df['text-diacritice'] = df['text'].apply(restore_diacritics)

Installing

$ python -m pip install ro-diacritics

or

$ pip install ro-diacritics

Requirements

  • torch and torchtext
  • numpy
  • nltk and scikit-learn (for training)
  • needs nltk.download('punkt') for tokenization

References

About

Python package for Romanian diacritics restoration

License:MIT License


Languages

Language:Python 100.0%