Questions tagged [snowballanalyzer]

The Snowball Analyzer is ElasticSearch analyzer of type snowball that uses the standard tokenizer, with standard filter, lowercase filter, stop filter, and snowball filter.

The Snowball Analyzer is ElasticSearch analyzer of type snowball that uses the standard tokenizer, with standard filter, lowercase filter, stop filter, and snowball filter.

The Snowball Analyzer is a stemming analyzer from Lucene that is originally based on the snowball project from snowball.tartarus.org.

14 questions
5
votes
1 answer

Lucene Highlighter with stemming analyzer

I am using Lucene's Highlighter class to highlight fragments of matched search results and it works well. I would like to switch from searching with the StandardAnalyzer to the EnglishAnalyzer, which will perform stemming of terms. The search…
user605331
  • 3,718
  • 4
  • 33
  • 60
3
votes
0 answers

Lucene breaks Snowball stemmer dependency

In my Java project (using Maven) I have Gate 8.0 as basis for doing some natural language processing and it loads the Stemmer_Snowball plugin (see plugin list). As the documentation states the Stemmers are processing resource wrappers over the…
nyxz
  • 6,918
  • 9
  • 54
  • 67
2
votes
1 answer

Get stemmed word in Lucene

In Lucene I use the SnowballAnalyzer for indexing and searching. When I have the index built I make queries on my index. For example I make a query 'specialized' for the field 'body'. IndexSearcher returns documents containing 'specialize,…
Jakub
  • 393
  • 1
  • 4
  • 18
2
votes
1 answer

Why "snowball" analyser was removed in Elasticsearch 5.1

I had Elasticsearch 2.4 and many of my indexes where using "snowball" analyzer, however today I updated to 5.1 and this analyzers stop working, Why did they where removed and how to convert my "snowball" analyzers to the equivalent in 5.1?
svelandiag
  • 4,231
  • 1
  • 36
  • 72
1
vote
1 answer

Using SnowBallAnalyzer with PyLucene

I'm trying to use SnowBallAnalyzer in PyLucene but I always get an error saying: InvalidArgsError when I try to create an instance of it like this: analyzer = SnowBallAnalyzer("Spanish") or analyzer = SnowBallAnalyzer("Spanish", STOPWORDS) What I…
Harph
  • 2,250
  • 2
  • 17
  • 16
1
vote
1 answer

Exception when indexing text documents with Lucene, using SnowballAnalyzer for cleaning up

I am indexing the documents with Lucene and am trying to apply the SnowballAnalyzer for punctuation and stopword removal from text .. I keep getting the following error :( IllegalAccessError: tried to access method…
Julia
  • 1,217
  • 8
  • 23
  • 46
1
vote
2 answers

improve lucene.net analyzer

I'm using lucene.net and the snowball analyzer in a asp.net application. With a specific language I'm using I have the following issue: For two specific words with different meanings after they are stemmed the result is the same, therefore a search…
Gnomo
  • 407
  • 4
  • 13
0
votes
1 answer

Solr SnowballPorterFilterFactory filter provides incorrect sugestions

I use SnowballPorterFilterFactory for index and query analyzers. Search for "apple" word. Solr successfully finds necessary articles, but tels that the word was spelled incorrect and give suggestion: "appl". It works correct if I search for…
0
votes
1 answer

What is the proper dependency entry in pom.xml to use the Snowball analyzer with Lucene 2.4.0?

I'm trying to swap in the SnowballAnalyzer for StandardAnalyzer on my Maven 2 project. I'm currently using org.apache.lucene lucene-contrib
Hank Gay
  • 70,339
  • 36
  • 160
  • 222
0
votes
1 answer

elastic not returning data if part of string is being used to search

I am having issue while getting data back from elastic Here is mapping "device": { "properties": { "deviceName": { "type": "string", "analyzer": "snowball" } } } When I am using the full device name(i.e…
learntech
  • 123
  • 1
  • 9
0
votes
1 answer

Snowball stemmer is not working

I created an index for an attachment using elasticsearch2.3.3 and Nest 2.3.2.My indexing is given below. I am searching for singular words with plurals in the document.Read that snowball stemmer will do this type of conversion. But no records were…
Ajoe
  • 1,397
  • 4
  • 19
  • 48
0
votes
0 answers

German stemming with SnowballPorterFilterFactory

I have a problem with my german stemming SnowballPorterFilterFactory. I just can´t get it to work. Neither in english or germna. I´m using this AnalzyderDef. @AnalyzerDef(name = "customAnalyzer", charFilters = { @CharFilterDef(factory =…
Rallenaldo
  • 107
  • 8
0
votes
1 answer

where to find snowball.dll that is compatible with Lucene 3.0

I am using Lucene 3.0 and I need Snowball analyzer for stemming that is compatible with Lucene 3.0. I searched in Google for an hour and I was unable to find a credible source. Please suggest a trusted location from which I can download snowball.dll…
dotcoder
  • 2,828
  • 10
  • 34
  • 50
0
votes
1 answer

Solr SnowballPorterFilterFactory for index and query analyzers

I use SnowballPorterFilterFactory for index and query analyzers. When i search for "profession" word. Solr successfully finds only articles that contains "profession", but i want "professional" "professionalism" ... This is the current…
ZendMind
  • 101
  • 1
  • 3
  • 7