Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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. ...
2
votes
1answer
55 views

how to write code for Lucene snowball in Java

Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_29); IndexSearcher indexSearcher; File file = new File("/sdcard/index/"); Directory indexDir = FSDirectory.open(file); indexSearcher = new ...
2
votes
4answers
1k views

Is there a java implementation of Porter2 stemmer

Do you know any java implementation of the Porter2 stemmer(or any better stemmer written in java)? I know that there is a java version of Porter(not Porter2) here : ...
2
votes
3answers
3k views

Lucene Standard Analyzer vs Snowball

Just getting started with Lucene.Net. I indexed 100,000 rows using standard analyzer, ran some test queries, and noticed plural queries don't return results if the original term was singular. I ...
0
votes
1answer
25 views

error using snowball in lucene

I have added lucene 3.5.0 and when i added a seperate jar for the snowball analyzer i get the following error : Exception in thread "main" java.lang.NoSuchMethodError: ...
0
votes
3answers
123 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
1answer
481 views

Porter Stemmer and Weka

I am using Weka with the porter Stemmer provided in the SnowBall package. Everything works fine if I run my application within Eclipse, but as soon as I export it as runnable jar (With all the ...
0
votes
2answers
686 views

Lucene using Snowball and SpellChecker brings back strange values

I am trying to get SpellChecker setup using Lucene.NET, it all works fine other than situations similar to the following: I have text containing satellite in the index, I analyze it using Snowball. ...