Top "Stop-words" questions

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

Solr stopwords magic

My stopwords don't works as expected. Here is part of my schema: <fieldType name="text_general" class="solr.TextField"&…

search solr lucene solr4 stop-words
Python : TypeError: 'float' object is not iterable

I am trying to remove stopwords from Pandas dataframe. This is my code: import nltk from nltk.corpus import stopwords …

python pandas stop-words
Where can I find a list of 'Stop' words for Oracle fulltext search?

I've a client testing the full text (example below) search on a new Oracle UCM site. The random text string …

full-text-search reserved-words stop-words oracle-xe oracle-ucm
how to add custom stop words using lucene in java

I am using lucene to remove English Stop words but my requirement is remove English stop words and Custom stop …

java lucene stop-words
How Can I Add More Languages to Stopwords in NLTK?

I'm using NLTK with stopwords to detect the language of a document using the method described by Alejandro Nolla at …

python nlp nltk stop-words
Remove Stopwords in French AND English in TfidfVectorizer

I am trying to remove stopwords in French and English in TfidfVectorizer. So far, I've only managed to remove stopwords …

python nltk stop-words tfidfvectorizer
Can I customize Elastic Search to use my own Stop Word list?

specifically, I want to index everything (e.g. the who) with no stop word list. Is elastic search flexible enough …

lucene stop-words elasticsearch
Effects of Stemming on the term frequency?

How are the term frequencies (TF), and inverse document frequency (IDF), affected by stop-word removal and stemming? Thanks!

data-mining text-processing tf-idf stop-words stemming
How to remove stopwords using stanford nlp

I want to parse the document using stanford nlp and remove stopwords from that, so my question is how to …

java parsing stanford-nlp stop-words