Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

8
votes
5answers
353 views

How can I sort an SQLite query ignoring articles (“the”, “a”, etc.)?

I'm using C# to display a list of movie titles that I am calling from an SQLite database. Currently, I'm using a custom ListBox class that has a function to sort the text stripping the word 'The' from ...
5
votes
1answer
110 views

How to stop the result in solr, when phrase containing a stopword?

I have a problem while searching with Solr a phrase which has stopwords. Solr send result with stopword and this is not my expected output. I added a word "test" in stopwords.txt file. In schema.xml ...
5
votes
3answers
449 views

How to remove list of words from strings

What I would like to do (in Clojure): For example, I have a vector of words that need to be removed: (def forbidden-words [":)" "the" "." "," " " ...many more...]) ... and a vector of strings: ...
4
votes
2answers
109 views

Ignoring stopwords while sorting SQL Server 2008 records

I have a table that has a book title field. I would like to be able to sort the records like this: The Ancient Alligator Aunt Annie's Alligator A Complete Guide to Alligators Countrified ...
4
votes
2answers
561 views

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 and easy enough to change?
4
votes
3answers
178 views

How to omit “THE” in search using PHP and MYSQL

I am doing a "ALPHABETICAL ORDER SEARCH" module for a project. that is it will look like A B C D E F . . . . . . . . . .. . . . . . . .. . . . Z When i click on "A" the results should be sort by ...
4
votes
1answer
541 views

Full Text Search: Noise words are being searched for

I have a database in SQL Server 2008 with Full Text Search indexes. I have defined the Stopword 'al' in the Stoplist. However, when I search for any phrase with the keyword 'al', the word 'al' is ...
3
votes
2answers
233 views

MySQL full-text stopwords problem

I have a database named "products" and a FULLTEXT index with the columns: title and description. All of my products are lubrifiants (oils), and there are two types of it: industrials and aut-moto, ...
3
votes
3answers
1k views

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 they chose to test was 'test only'. Which failed; from my testing it seems 'only' is a ...
3
votes
2answers
667 views

MySQL Fulltext Stopwords Rationale

I am currently trying to develop a basic fulltext search for my website, and I noticed that certain words like "regarding" are listed as stopwords for MySQL fulltext searches. This doesn't bother me ...
2
votes
1answer
105 views

Looking for a frequency list of English stopwords

I'm simply looking for a list of English stopwords (easy) sorted by their frequency, not alphabetically (less easy to find). The reason behind this request is that when I remove stop-words from a ...
2
votes
1answer
103 views

Sql Server 2008 not ignoring a noise word in a fulltext phrasal query?

Lets assume we have a table with a fulltext field on it. This field is called text. The content of the table would be: car wash car and wash The word and is in my stoplist Now, I will query this ...
2
votes
1answer
128 views

SQLite3, FTS3 and stop-words

How do you prevent SQLite3 from not indexing certain key words, or "stop-words", during the build of a virtual FTS3 table? Examples I'd like to not index include "is", "the", "a" etc.
2
votes
1answer
256 views

Solr stopwords showing up in facet search results

I am currently testing facet searches on a text field in my Solr schema and noticing that I am getting a significant number of results that are in my stopwords.txt file. My schema is currently using ...
2
votes
1answer
250 views

Stopwords and MySQL boolean fulltext

I'm using mysql's built in boolean fulltext features to search a dataset. (MATCH... AGAINST syntax). I'm running into a problem where keywords that are in MySql's default stopwords list are not ...
2
votes
2answers
484 views

Stop-word elimination and stemmer in python

I have a somewhat large document and want to do stop-word elimination and stemming on the words of this document with Python. Does anyone know an of the shelf package for these? If not a code which is ...
2
votes
3answers
206 views

List of uninteresting words

[Caveat] This is not directly a programing question, but it is something that comes up so often in language processing that I'm sure it's of some use to the community. Does anyone have a good list of ...
2
votes
2answers
2k views

Query SQl Server 2005 Full Text Search noise/stop words

Is it possible to get the list of Full Text Search noise/stop words from SQL Server 2005 by querying the database? I am aware that the noise words are in a text file ~/FTData/noiseEng.txt but this ...
2
votes
1answer
321 views

Xapian multiple-language searching with stop words?

I have two Xapian databases, let's call one "EN" and the other "DE", and let's say the former contains some documents in English, and the latter in German. If I want users to be able to search both ...
2
votes
2answers
856 views

liferay workflow to preview / review blog comments

is there a some out of the box workflow, which helps you to review blog comments in liferay. Eg. Post blog entry -> User comments blog entry -> Mail goes to moderator about/with new entry -> User ...
2
votes
5answers
1k views

Filter out common words for search query

Are there any easy ways to implement filtering a user's input (possibly a question) by extracting the meaningful data in the query? I basically want to filter out any noise words so I can send a ...
1
vote
1answer
28 views

Lucene: how to preserve whitespaces etc when tokenizing stream?

I am trying to perform a "translation" of sorts of a stream of text. More specifically, I need to tokenize the input stream, look up every term in a specialized dictionary and output the corresponding ...
1
vote
0answers
54 views

Software to auto-tag text, such as blog post or news articles?

I am searching for a software that would do the following: process numerous articles varying from 100-1k words; automatically remove stop words; recommend best tags based on remaining words, i.e. ...
1
vote
2answers
127 views

Using grep to filter out words from a stopwords file

Hi I want to use grep together with a stopwords-file to filter out common english words from another file. The file "somefile" contains one word per line. cat somefile | grep -v -f stopwords The ...
1
vote
1answer
105 views

my stopwords list is loaded but not working

I have a modified stopwords list file, which basically took out the word 'alone'. I have updated my /etc/my.cnf ft_stopword_file=/etc/new_stopwords_list.txt After restarting my mysql server, I ...
1
vote
1answer
197 views

Reindexing using lucene/ deleting term from index

I hope you can help me, here is my problem: edit: Now that I re-thought, if there is a way to delete a term from the index, it would work anyway. Is there a way to do that? if there is, there is no ...
1
vote
0answers
152 views

Apache Solr: Removing Stopwords from LukeRequestHandler's topTerms

title pretty much says everything, I'm querying Solr for its topTerms using the LukeRequestHandler, is but the list contains lots of short words like 'is', 'a', 'do' (actually, they're german) and so ...
1
vote
3answers
245 views

Removing stop words and saving the new file Perl

I have created a Perl file to load in an array of "Stop words". Then I load in a directory with ".ner" files contained in it. Each file gets opened and each word is split and compared to the words in ...
1
vote
1answer
429 views

“protected phrase” in Solr

A customer of mine is a photo agency specialized in photojournalism (well, and gossip), so many of their customers' searches revolve around specific people. We index about 1.5m documents, with ...
1
vote
1answer
200 views

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, in my C# codebehind? I want to use it in a ASP.NET page that I use to search terms and highlight ...
1
vote
3answers
573 views

How can I remove stop words from a large text file?

I have a billion word corpus which I have collected in a scalar. I have a .regex file that contains all the stop words that I want to eliminate from my data (text). I don't know how to use this ...
1
vote
2answers
145 views

Is there a better way to remove stopwords in objective c?

The method I am doing right now is breaking the string into array of words in NSSet and minus the set of stopwords. Is there a more efficient way?
1
vote
1answer
203 views

Ignoring apostrophes in sphinx indexes

In my sphinx config file, I have the following: ignore_chars: "U+0027" charset_table: "0..9, a..z, _, A..Z->a..z, U+00C0->a, U+00C1->a, U+00C2->a, U+00C3->a, U+00C4->a, ...
0
votes
1answer
45 views

SQL 2008: Turn off Stop Words for Full Text Search Query

I'm having quite a bit of difficulty finding a good solution for this: Let's say I have a table of "Company", with a column called "Name". I have a full-text catalog on this column. If a user ...
0
votes
0answers
27 views

MySQL Full Text Search With Dynamic Stop Words

Is is possible to inject stop words into a MySQL full text search (IN NATURAL LANGUAGE MODE) query or do they have to be added to the stop word list?
0
votes
1answer
124 views

how to perform tokenization and stopword removal in C#?

Basically i want to tokenise each word of the paragraph and then perform stopword removal. Which will be preprocessed data for my algorithm.
0
votes
3answers
124 views

Remove common english words strategy

I want to extract relevant keywords from a html page. I already stipped all html stuff, split the text into words, used a stemmer and removed all words appearing in a stop word list from lucene. But ...
0
votes
0answers
67 views

Is it possible to create a dictionary in PostgreSQL dynamically?

I'm new to full text search in PostgreSQL and discovered things like Dictionaries and stop words in it. I have a table with a lot of words from many texts. I want to create my own dictionary and put ...
0
votes
1answer
318 views

Remove stop words in Java — Help needed

Im using a method to remove stop word defined in a file, that will rip off those words from the query string that i pass to this method... The code is working fine Now what i need to do is ... If the ...
0
votes
1answer
261 views

Sql Server 2008 - Drop a word from the system stop list?

I am trying to drop the "-" character from the stop words list, but I am not able to. I have created my custom stop list which inherits from the system stop list. When I try to delete the "-" from the ...
0
votes
1answer
104 views

Sql Server 2008 - How to avoid the character “/” being a stop word?

Let's assume we have a large full text index table and there are some strings like that (in the full text indexed collumn, of course): 123.456.789/14 111.222.22222.2/5111 Those strings are ...
0
votes
3answers
816 views

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 on what easiest to implement) I was wondering that since I read my text from files ...
0
votes
2answers
136 views

What is the mysql stop words file format?

Does the words have quotes or not, is it comma separated or line separated ?
0
votes
0answers
50 views

Stop Words for a Shopping Search

Does anyone have access to a list of stop words that should be omitted if I want meaningful results from a shopping search? E.G: I can't search Google shopping for "being cool" and expect to get any ...
0
votes
2answers
249 views

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 a majority of the words I would like it too, I'm looking to add words to this stop list so that it ...
0
votes
1answer
216 views

Ignoring duplicate words in a python dictionary

I have a Python script that takes in '.html' files removes stop words and returns all other words in a python dictionary. But if the same word occurs in multiple files I want it to return only once. ...
0
votes
3answers
514 views

Extract Relevant Tag/Keywords from Text block

I wanted a particular implementation, such that the user provide a block of text like: "Requirements - Working knowledge, on LAMP Environment using Linux, Apache 2, MySQL 5 and PHP 5, - ...
0
votes
2answers
181 views

Where should I store a list of stop words?

My function parses texts and removes short words, such as "a", "the", "in", "on", "at", etc. The list of these words might be modified in the future. Also, switching between different lists (i.e., ...
0
votes
1answer
140 views

Easy way to implement stop words on model fields

I am using Rails 3.0 and have several models which have a public, English, reference field such as a title on a chapter of a story. I am looking for an elegant way to implement certain stop words for ...
0
votes
1answer
273 views

dismax feat. stopwords , synonyms etc

Does dismax support all the features like the standard requestHandler ? stopwords ? synonymes ? stemming ? did you hear about "edismax" ? I'm using Solr1.4 For my first tests of the stopwords , it ...

1 2