spaCy/spacy/lang/el/lemmatizer/_dets_irreg.py
Ioannis Daras 6ed18412d0 Greek language optimizations (#2558)
* Greek language optimizations

* Add encoding on files containing greek words

* Add encoding on files containing greek words
2018-07-18 18:51:38 +02:00

13 lines
224 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding: utf8
from __future__ import unicode_literals
DETS_IRREG = {
"του": ("το",),
"των": ("το",),
"τους": ("το",),
"τις": ("τη",),
"τα": ("το",),
"οι": ("ο","η"),
}