Stop words list to use for CountVectorization

The sci-kit learn library by defaults provides two options either no stop words
or one can specify stop_words=english to include a list of predefined English words
I am using Naive Bayes for SMS spam detection. Is there any other list of stop words
I can experiment with?

Topic naive-bayes-algorithim scikit-learn

Category Data Science


import nltk
from nltk.corpus import stopwords
print(stopwords.words('english'))

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.