Top "Stop-words" questions

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

Stop words and stemmer in java

I'm thinking of putting a stop words in my similarity program and then a stemmer (going for porters 1 or 2 depends …

java nlp stop-words porter-stemmer
NameError: name 'stopwords' is not defined

I'm getting the error NameError: name 'stopwords' is not defined for some reason, even though I have the package installed. …

python nlp stop-words
NLTK available languages for stopwords

I'm wondering where I can find the full list of supported langs (and their keys) for the NLTK stopwords. I …

python nlp nltk stop-words
R remove stopwords from a character vector using %in%

I have a data frame with strings that I'd like to remove stop words from. I'm trying to avoid using …

r nlp subset tm stop-words
ignoring mysql fulltext stopwords in query

I'm building a search for a site, which utilizes a fulltext search. The search itself works great, that's not my …

mysql full-text-search stop-words
How to select stop words using tf-idf? (non english corpus)

I have managed to evaluate the tf-idf function for a given corpus. How can I find the stopwords and the …

information-retrieval text-mining stop-words tf-idf
How to get a list of StopWords used in my FullText Catalog?

Is there a way to get the StopWord list that my SQL Server 2008 FullText Catalog is using? And use it, …

c# .net sql-server full-text-search stop-words
How to remove stop words in java?

I want to remove stop words in java. So, I read stop words from text file. and store Set Set&…

java stop-words
Tokenize, remove stop words using Lucene with Java

I am trying to tokenize and remove stop words from a txt file with Lucene. I have this: public String …

java lucene nlp tokenize stop-words