-
Notifications
You must be signed in to change notification settings - Fork 229
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
Stopwords being ignored #70
Comments
I guess the stopwords-removing step is done in the last steps, i.e.:
|
@chaturv3di I am running in the same issue, have you found a solution? |
Unfortunately not. |
Not sure if secsilm was referring to this, but I am thinking about using my stopwords as a postprocessing step outside of the Yake Class. |
That's not elegant but works. Eg if I wanted up to 4 word phrases without stopwords, but if I were to remove stopwords in post processing, then I'd need to fetch up to 6 word phrases hoping that up to 2 of them will be stopwords. That is clunky and increases the compute time. OTOH, there doesn't seem to be another option right now. |
I am passing the set of English stopwords which I create from
yake/StopwordsList/stopwords_en.txt
.And the results end up containing stopwords like
of
,a
,from
, etc.If I invoke the method with parameter
stopwords=None
, the results don't change. Am I doing something silly here?Thanks a lot.
The text was updated successfully, but these errors were encountered: