Skip to content
New issue

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

IndexError in spanish stemmer #75

Open
komod0 opened this issue Nov 9, 2019 · 0 comments
Open

IndexError in spanish stemmer #75

komod0 opened this issue Nov 9, 2019 · 0 comments

Comments

@komod0
Copy link

komod0 commented Nov 9, 2019

When summarizing text in spanish certain words cause the summarizer to raise an Exception, ie:

from summa import summarizer
summarizer.summarize("urgue", language="spanish")

Even though the word isn't grammatically correct, raising an Exception is undesired behavior.

The problem seems to be generated in the snowballer:

if rv.endswith(suffix):
if suffix in ("e", "\xE9"):
word = word[:-len(suffix)]
rv = rv[:-len(suffix)]
if word[-2:] == "gu" and rv[-1] == "u":

When the value of rv is "e" and suffix is "e".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant