LitReviewAI / src /constants.py
bano1's picture
Create constants.py
2f0c07a verified
Raw
History Blame Contribute Delete
119 Bytes
import nltk
from nltk.corpus import stopwords
nltk.download("stopwords")
STOP_WORDS = set(stopwords.words("english"))