Re: Limit Porter stemmer to plural stemming only?

2014-06-19 Thread jerry.ja...@gmail.com
Hi, Do you mind attaching the Plural only Stemmer? I cant find it in this post. Thanks Jerry -- View this message in context: http://lucene.472066.n3.nabble.com/Limit-Porter-stemmer-to-plural-stemming-only-tp486449p4142867.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Limit Porter stemmer to plural stemming only?

2014-06-19 Thread Chris Hostetter
: Can you please share the Java code for Plural Only Porter Stemmer for English if you don't mind? The Porter stemmer algorithm, by definition, does more then just stip plurals. If you are interested in a lighter weight stemmer for english, this is exactly what the

Limit Porter stemmer to plural stemming only?

2014-06-18 Thread Jacob, Jerry (RIS-ATL)
Hi, Can you please share the Java code for Plural Only Porter Stemmer for English if you don't mind? Thanks, Jerry

Re: Limit Porter stemmer to plural stemming only?

2008-07-01 Thread Guillaume Smet
Hi Cuong, On Tue, Jul 1, 2008 at 4:45 AM, climbingrose [EMAIL PROTECTED] wrote: I modified the original English Stemmer written in Snowball language and regenerate the Java implementation using Snowball compiler. It's been working for me so far. I certainly can share the modified Snowball

Re: Limit Porter stemmer to plural stemming only?

2008-07-01 Thread climbingrose
Attached is the modified Snowball source code for plural-only English stemmer. You need to compile it to Java using instruction here: http://snowball.tartarus.org/runtime/use.html. Essentially, you need to: 1) Download (Snowball, algorithms, and libstemmer

Limit Porter stemmer to plural stemming only?

2008-06-30 Thread climbingrose
Hi all, Porter stemmer in general is really good. However, there are some cases where it doesn't work. For example, accountant matches Accountant as well as Account Manager which isn't desirable. Is it possible to use this analyser for plural words only? For example: +Accountant - accountant

Re: Limit Porter stemmer to plural stemming only?

2008-06-30 Thread climbingrose
Ok, it looks like step 1a in Porter algo does what I need. On Mon, Jun 30, 2008 at 6:39 PM, climbingrose [EMAIL PROTECTED] wrote: Hi all, Porter stemmer in general is really good. However, there are some cases where it doesn't work. For example, accountant matches Accountant as well as

Re: Limit Porter stemmer to plural stemming only?

2008-06-30 Thread Mike Klaas
If you find a solution that works well, I encourage you to contribute it back to Solr. Plural-only stemming is probably a common need (I've definitely wanted to use it before). cheers, -Mike On 30-Jun-08, at 2:25 AM, climbingrose wrote: Ok, it looks like step 1a in Porter algo does what

Re: Limit Porter stemmer to plural stemming only?

2008-06-30 Thread climbingrose
I modified the original English Stemmer written in Snowball language and regenerate the Java implementation using Snowball compiler. It's been working for me so far. I certainly can share the modified Snowball English Stemmer if anyone wants to use it. Cheers, Cuong On Tue, Jul 1, 2008 at 4:12