Is there a way how to customize this
stopWords = set(stopwords.words('english'))
or any other way, so I can use a text file with stop-words from my language in Python's NLTK?
If my text file was my_stop_words.txt, how can I say to NLTK to take this set of words instead of set for 'english'?
Thanks a lot!