Spaces:
Runtime error
Runtime error
File size: 304 Bytes
b1b401c 8b070c3 | 1 2 3 4 5 6 7 8 9 10 11 12 | # Install necessary packages
pip install -r requirements.txt
# Download NLTK data
python -m nltk.downloader wordnet
python -m nltk.downloader omw-1.4
python -m nltk.downloader punkt
# Download and install the Spacy models
python -m spacy download en_core_web_lg
python -m spacy download en_core_web_sm |