Morphological tagger for Ancient Greek and Latin using deep learning.
Make sure you are running Python 3.6 or higher, and that you have already installed PyTorch >= 1.3.0. You can install the package from PyPI:
pip install deepmorpheusImport the library:
import deepmorpheusTo tag a .txt file::
deepmorpheus.tag_from_file("input.txt", "ancient-greek")To tag a string directly:
deepmorpheus.tag_from_lines("τὰ γὰρ πρὸ αὐτῶν καὶ τὰ ἔτι παλαίτερα σαφῶς μὲν εὑρεῖν διὰ χρόνου πλῆθος ἀδύνατα ἦν", "ancient-greek")