greek-inflexion icon indicating copy to clipboard operation
greek-inflexion copied to clipboard

some verb conjugations that seem to give incorrect or incomplete results

Open bcrowell opened this issue 2 years ago • 0 comments

The following code seems to produce incorrect or incomplete results:

from greek_inflexion import GreekInflexion
inflexion = GreekInflexion('stemming.yaml', 'STEM_DATA/homer_lexicon.yaml')
print(inflexion.generate('λύω', 'AAI.3S').keys())
# ... fails
print(inflexion.generate('βάλλω', 'AAI.3S').keys())
# ... fails
print(inflexion.generate('βαίνω', 'AAD.2S').keys())
# ... only gives βῆθι, should also give βῆσον (Iliad 8.285)

bcrowell avatar May 10 '22 17:05 bcrowell