We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug The LatinBackoffLemmatizer seems to fail on words with -aris ending.
LatinBackoffLemmatizer
-aris
To Reproduce
from cltk.lemmatize.lat import LatinBackoffLemmatizer lemmatizer = LatinBackoffLemmatizer() lemmatizer.lemmatize(["abundaris"]) Out[7]: [('abundaris', 'abundaris')] lemmatizer.lemmatize(["amaris"]) Out[8]: [('amaris', 'amaris')] lemmatizer.lemmatize(["duraris"]) Out[9]: [('duraris', 'duraris')] lemmatizer.lemmatize(["crearis"]) Out[10]: [('crearis', 'crearis')]
Expected behavior E.g., amaris should lemmatize to amo.
amaris
amo
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
diyclassics
No branches or pull requests
Describe the bug
The
LatinBackoffLemmatizer
seems to fail on words with-aris
ending.To Reproduce
Expected behavior
E.g.,
amaris
should lemmatize toamo
.Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: