python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How does stopwords.words('english') work here?
I have used two different data sets to train as I mentioned on both examples
x_train = ['This !was awesome movie',
'It is Wonderful movie',
'Yeah it is bad movie @',
'...

user12435269
Votes: 0
Answers: 1
Remove SPECIAL stopwords for NLP
I am having a text classification task. I want to classify a set of documents in 4 categories (Business, Entertainment, Health, Technology). I create wordcloud for every category(i removed stopwords) ...
Traxanios
Votes: 0
Answers: 1
How to import and use stopwords list from NLTK?
I already imported stopwords from nltk.corpus, but I get STOPWORDS is not defined error. Below is my code:
import nltk
from nltk.corpus import stopwords
#Create stopword list:
stopwords = set(STOPWORD...

user14364844
Votes: 0
Answers: 2
Remove specific stopwords Pyspark
New to Pyspark, I'd like to remove some french stopwords from pyspark column.
Due to some constraint, I can't use NLTK/Spacy, StopWordsRemover is the only option that I got.
Below is what I have tried...

A2N15
Votes: 0
Answers: 2