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
Hi, When I run main.py, it shows the following error.
OSError: [E050] Can't find model 'en_core_web_md'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.
Please let me know the solution for this problem.
The text was updated successfully, but these errors were encountered:
Just run the below and you are good to go (make sure you have spacy installed).
python -m spacy download en_core_web_sm
Sorry, something went wrong.
@pidugusundeep I am not getting any output.It is showing. Warning: parsing empty text
------X------ Start output:
End OutPut -----X-----
in aggFunction.py replace nlp = spacy.load('en_core_web_md') with import en_core_web_sm nlp = en_core_web_sm.load()
also install nltk.download('punkt') nltk.download('averaged_perceptron_tagger')
No branches or pull requests
Hi,
When I run main.py, it shows the following error.
OSError: [E050] Can't find model 'en_core_web_md'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.
Please let me know the solution for this problem.
The text was updated successfully, but these errors were encountered: