Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
948 views

Lucene Hebrew analyzer

Does anybody know whether one exists? I've been googling this for monthes... Thanks
7
votes
1answer
447 views

SQL Server vs MySQL: CONTAINS(*,'FORMSOF(THESAURUS,word)')

I am shocked. I spent past 3-4 days figuring out how I could implement stemming (and synonyms searches) in mysql when I see in SQL Server the query is incredibly easly: Select * from tab where ...
7
votes
8answers
9k views

How do I do word Stemming or Lemmatization?

I've tried PorterStemmer and Snowball but both don't work on all words, missing some very common ones. My test words are: "cats running ran cactus cactuses community communities", and both get less ...
6
votes
3answers
298 views

Base word stemming instead of root word stemming in R

Is there any way to get base word instead of root word in stemming using NLP in R? Code: > #Loading libraries > library(tm) > library(slam) > > #Vector > Vec=c("happyness happies ...
6
votes
2answers
1k views

What is the best “turnkey” stemming algorithm? [closed]

I need a good stemming algorithm for a project I'm working on. It was suggested that I look at the Porter Stemmer. When I checked out the page on the Porter stemmer I found that it is deprecated now ...
4
votes
4answers
177 views

SQL word root matching

I'm wondering whether major SQL engines out there (MS SQL, Oracle, MySQL) have the ability to understand that 2 words are related because they share the same root. We know it's easy to match ...
4
votes
2answers
6k views

Stemming algorithm that produces real words

I need to take a paragraph of text and extract from it a list of "tags". Most of this is quite straight forward. However I need some help now stemming the resulting word list to avoid duplicates. ...
3
votes
2answers
231 views

English lemmatizer databases?

Do you know any big enough lemmatizer database that returns correct result for following sample words: geese: goose plantes: //not found Wordnet's morphological analyzer is not sufficient, since it ...
3
votes
5answers
11k views

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, removes the stop words and stems for use in an IR system. For example: "The big fat cat, said ...
3
votes
4answers
2k views

Stemming - code examples or open source projects?

Stemming is something that's needed in tagging systems. I use delicious, and I don't have time to manage and prune my tags. I'm a bit more careful with my blog, but it isn't perfect. I write ...
2
votes
1answer
73 views

Slovenian stemmer for Sphinx

I am searching stemming algorithm for Slovenian language that I can use with Sphinx search. What I'm trying to achieve is for example when searching for 'jabolka', I also want results for documents ...
2
votes
0answers
36 views

Strange behavior of Lucene SpanishAnalyzer class with accented words

I'm using the SpanishAnalyzer class in Lucene 3.4. When I want to parse accented words, I'm having a strange result. If I parse, for example, these two words: "comunicación" and "comunicacion", the ...
2
votes
1answer
164 views

Is there an implementation of a croatian word stemming algorithm?

i'm searching for an implementation of a croatian word stemming algorithm. Ideally in Java but i would also accept any other language. Is there somewhere a community of english speaking developers, ...
2
votes
3answers
268 views

How to find basic, uninflected word for searching?

I am having trouble trying to write a search engine that treats all inflections of a word as the same basic word. So for verbs these are all the same root word, be: number/person (e.g. am; is; ...
2
votes
1answer
201 views

Polish search for Sphinx?

I want to implement a search solution for a website written in Django. From the available options (I have researched Solr, Sphinx, Xapian, PostgreSQL/Tsearch3, MySQL) Sphinx looks like the nicest. ...
2
votes
2answers
209 views

Russian Porter stemming in JavaScript [closed]

Does someone have an example of Russian Porter stemming in JavaScript?
2
votes
3answers
243 views

Ruby: is there a stemmer that “knows” English irregular verbs?

There is a ruby stemmer https://github.com/aurelian/ruby-stemmer, but it 1) does not stem English irregular verbs 2) fails to build native extensions on Windows. Is there an alternative that fixes at ...
2
votes
2answers
565 views

stemming library in java

Is there any library for stemming in java!?
2
votes
2answers
180 views

is there is any stemmer available for indian language

is there is any implementation of stemmers for indian languages like(hindi,telugu) are available ....
2
votes
2answers
248 views

Schinke Latin stemming algorithm in PHP

This website offers the "Schinke Latin stemming algorithm" for download to use it in the Snowball stemming system. I want to use this algorithm, but I don't want to use Snowball. The good thing: ...
2
votes
2answers
483 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
493 views

Extract key sentences from a text

do you know about an effective method for extracting key sentences from a text with their frequency parameters, etc and that can also do "stemming" (search also for similar sentences) ? I wonder also ...
1
vote
1answer
82 views

Solr Snowball stemmer is inconsistent with Spanish

I have this stemmed field: <fieldtype name="textes" class="solr.TextField"> <analyzer type="index"> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter ...
1
vote
2answers
57 views

Transform words into their basic form in Java

What is a good library to use in Java to transform words into their basic form? That is, if we have "go" "going" and "gone" on the input, I need to receive 3 times "go" on the output.
1
vote
1answer
93 views

The best IR software for my use?

I want to take what people chat about in a chat room and do the following information retrieval: Get the keywords Ignore all noise words, keep verb an nouns mainly Perform stemming on the keywords ...
1
vote
1answer
142 views

In Solr, why is 'built' not being stemmed to 'build' but 'building' is?

I'm trying to figure out two things in this posting: Why is 'built' NOT being stemmed to 'build' even though the field type definition has a stemmer defined. However, 'building' is being stemmed to ...
1
vote
1answer
338 views

Lucene synonym expansion,stemming,spell check and more

I am using Lucene to index my database and then perform a phrase search on a specific field(field name: keyword). I am using following code currently: String userQuery = ...
1
vote
2answers
159 views

Avoid slow highlighting on Solr because of stemming

I am quite new about using Solr, but would like to ask your help. I am developing an application which should be able to highlight the results of a query. For this I am using regex fragmenter: ...
1
vote
1answer
96 views

Solr search/faceting results have strange behaviour: i only get “stemmed” strings (hope it's correct definition)

Sorry for a title that bad, but i didn't know how to describe my problem. I'm using sunburnt (python interface) to query solr within my django app. When i'm searching, everything is ok, i get the full ...
1
vote
2answers
263 views

Can WordNetLemmatizer in Nltk stem words?

I want to find word stems with Wordnet. Does wordnet have a function for stemming? I use this import for my stemming, but it doesn't work as expected. from nltk.stem.wordnet import ...
1
vote
2answers
189 views

I want a Java Arabic stemmer

I'm looking for a Java stemmer for Arabic. I found a lib called "AraMorph" , but its output is uncontrollable and it makes formation to words which is unwanted. Is there any other stemmer for Arabic ...
1
vote
2answers
234 views

Solr question about exact word search

I have a question which closely relates to the below Solr - one word phrase search to avoid stemming In my schema I have a field <field name="text" type="textgen" indexed="true" stored="true" ...
1
vote
2answers
333 views

Solr - one word phrase search to avoid stemming

I have stemming enabled in my Solr instance, I had assumed that in order to perform an exact word search without disabling stemming, it would be as simple as putting the word into quotes. This however ...
1
vote
1answer
403 views

Lucene.NET stemming problem

I'm running into a problem using the SnowBallAnalyzer in Lucene.NET. It works great for some words, but others it doesn't find any results on at all, and I'm not sure how to dig into this further to ...
1
vote
1answer
229 views

Stop word removal in Javascript

HI I am looking for a library that'll remove stop words from text in Javascript, my end goal is to calculate tf-idf and then convert the given document into vector space, and all of this is ...
1
vote
3answers
2k views

Stemming English words with Lucene

I'm processing some English texts in a Java application, and I need to stem them. For example, from the text "amenities/amenity" I need to get "amenit". The function looks like: String ...
1
vote
1answer
318 views

Difference between Lucene stemmers: EnglishStemmer, PorterStemmer, LovinsStemmer

Have anybody compared these stemmers from Lucene (package org.tartarus.snowball.ext): EnglishStemmer, PorterStemmer, LovinsStemmer? What are the strong/weak points of algorithms behind them? When each ...
1
vote
3answers
523 views

Word Base/Stem Dictionary

It seems my Google-fu is failing me. Does anyone know of a freely available word base dictionary that just contains bases of words? So, for something like strawberries, it would have strawberry. But ...
1
vote
1answer
144 views

Can Solr return the actual final query that was used when synonyms and stemming are used?

I would like to be able to show in my UI what the query terms were that solr used to run the final query. For example, I might type the query "run" but behind the scenes solr will use stemming to also ...
1
vote
1answer
643 views

MySQL fulltext with stems

I am building a little search function for my site. I am taking my user's query, stemming the keywords and then running a fulltext MySQL search against the stemmed keywords. The problem is that MySQL ...
1
vote
7answers
784 views

Can you programmatically detect pluralizations of English words, and derive the singular form?

The title says it all: Given some (English) word that we shall assume is a plural, is it possible to derive the singular form? I'd like to avoid lookup/dictionary tables if possible. Some examples: ...
1
vote
1answer
222 views

why does Porter Stemmer yield a string which can be stemmed again?

stem('apples')='apple' stem('apple')='appl' stem('appl')='appl' isn't this a flaw in the stemming algorithm? (this is using the Porter Stemming Algorithm)
0
votes
1answer
35 views

creating a lucene analyzer

I want to do some basic hebrew stemming. All the examples of custom analyzers I could find always merge other analyzers and and filters but never do any string level processing themselves. What do I ...
0
votes
2answers
47 views

Python package to find pre-defined keywords/tags in a file / url / string

Are there any python packages that can take a list of keywords / tags and match them up to a given string / file / url ? Specifically using stemming and/or some other synonym way of matching. i.e. ...
0
votes
2answers
48 views

How to index words with their prefix in solr? [closed]

Possible Duplicate: how index words with their prefix in solr? I'm using solr 3.3. I want solr index words with their suffixes. When I index 'book' and 'books' and search for 'book', solr ...
0
votes
1answer
46 views

how index words with their prefix in solr?

I use solr 3.3 to index my files, I want solr index words with their suffixes for example I want to index colorful like color and when i search color solr show any document that has colorful.
0
votes
0answers
35 views

djapian: stemming does not work

I'm using django for my web-application. My site should have fulltext search, so I've decided to use xapian + djapian. I've followed the official tutorials http://code.google.com/p/djapian/w/list, ...
0
votes
0answers
70 views

Using Full-text search for stemming

SELECT * FROM sys.dm_fts_parser('FORMSOF(INFLECTIONAL, "stopped")', 1033, 0, 0) Above t-sql query retrieving below resultset, _Resultset _ stop stopping stops stopped For English everything is ...
0
votes
1answer
124 views

save output of porter stemming algorithm to text file

i have this porter algorithm code in c#,can someone tell me how to save the output of this code to txt file? also do i input name of a file or its contents? using System; using System.IO; namespace ...
0
votes
2answers
225 views

How to use stemDocument in the R language tm (text mining) package?

I am trying to stem a Corpus using stemDocument in the R language tm package which calls Java. I have tried the example in the tm manual: data("crude") crude[[1]] stemDocument(crude[[1]]) and get ...

1 2