Top "Stop-words" questions

Stop words are words that are filtered out prior (or after) the processing of natural language data.

How to remove stop words using nltk or python

So I have a dataset that I would like to remove stop words from using stopwords.words('english') I'm struggling …

python nltk stop-words
Stopword removal with NLTK

I am trying to process a user entered text by removing stopwords using nltk toolkit, but with stopword-removal the words …

python nlp nltk stop-words
NLTK and Stopwords Fail #lookuperror

I am trying to start a project of sentiment analysis and I will use the stop words method. I made …

python nltk sentiment-analysis stop-words
Faster way to remove stop words in Python

I am trying to remove stopwords from a string of text: from nltk.corpus import stopwords text = 'hello bye the …

python regex stop-words
Tokenizer, Stop Word Removal, Stemming in Java

I am looking for a class or method that takes a long string of many 100s of words and tokenizes, …

java tokenize stemming stop-words
Add/remove custom stop words with spacy

What is the best way to add/remove stop words with spacy? I am using token.is_stop function and …

python nlp stop-words spacy
Adding words to nltk stoplist

I have some code that removes stop words from my data set, as the stop list doesn't seem to remove …

python nltk stop-words
NLTK Stopword List

I have the code beneath and I am trying to apply a stop word list to list of words. However …

python nltk stop-words
Get rid of stopwords and punctuation

I'm struggling with NLTK stopword. Here's my bit of code.. Could someone tell me what's wrong? from nltk.corpus import …

python nltk stop-words
Adding custom stopwords in R tm

I have a Corpus in R using the tm package. I am applying the removeWords function to remove stopwords tm_…

r text-mining stop-words corpus tm