Problem importing Rake - Analysing science text #428
Chizuruoke-Nnadi
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all, I just bumped into this a year after it was concluded but it has been helpful all the same.
I have been trying to run the codes provided in jupyter note book myself but am stuck on the code below
import nlp_rake
extractor = nlp_rake.Rake(max_words=2,min_freq=3,min_chars=5)
res = extractor.apply(text)
res
it gives me the error message below;
ModuleNotFoundError Traceback (most recent call last)
Input In [11], in <cell line: 1>()
----> 1 import nlp_rake
2 extractor = nlp_rake.Rake(max_words=2,min_freq=3,min_chars=5)
3 res = extractor.apply(text)
ModuleNotFoundError: No module named 'nlp_rake'
Beta Was this translation helpful? Give feedback.
All reactions