Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
manasagangotri
/
classify
like
0
Running
App
Files
Files
Community
c916824
classify
/
modules
/
install_stop_words.py
manasagangotri
Upload folder using huggingface_hub
e062e72
verified
16 days ago
raw
Copy download link
history
blame
120 Bytes
import
nltk
# Download NLTK stopwords and wordnet for lemmatization
nltk.download(
'stopwords'
)
nltk.download(
'wordnet'
)