Re: How to get the un-stemed word

2005-07-12 Thread Andrew Boyd
Thats why (at least one of the reasons) I wish the token type was stored in the index. -Original Message- From: markharw00d <[EMAIL PROTECTED]> Sent: Jul 11, 2005 4:08 PM To: java-user@lucene.apache.org Subject: Re: How to get the un-stemed word >>Would that show up in the

Re: How to get the un-stemed word

2005-07-11 Thread markharw00d
ion as the stemmed word. Would that show up in the TermVectors? -Original Message- From: mark harwood <[EMAIL PROTECTED]> Sent: Jul 8, 2005 10:44 AM To: java-user@lucene.apache.org, Andrew Boyd <[EMAIL PROTECTED]> Subject: Re: How to get the un-stemed word You can get th

Re: How to get the un-stemed word

2005-07-11 Thread Andrew Boyd
ect: Re: How to get the un-stemed word You can get the unstemmed word by re-analysing the (hopefully stored somewhere) text. Look at the tokens emitted from the TokenStream and when you get to the one that matches the stemmed form you can use the token offset info to retrieve the unstemmed f

Re: How to get the un-stemed word

2005-07-08 Thread Marvin Humphrey
On Jul 8, 2005, at 8:44 AM, mark harwood wrote: You can get the unstemmed word by re-analysing the (hopefully stored somewhere) text. Look at the tokens emitted from the TokenStream and when you get to the one that matches the stemmed form you can use the token offset info to retrieve the unste

Re: How to get the un-stemed word

2005-07-08 Thread mark harwood
You can get the unstemmed word by re-analysing the (hopefully stored somewhere) text. Look at the tokens emitted from the TokenStream and when you get to the one that matches the stemmed form you can use the token offset info to retrieve the unstemmed form from the original text. Another option w

Re: How to get the un-stemed word

2005-07-08 Thread Erik Hatcher
in my current work context of learning and building a system that leverages RDF heavily. Erik Andrew -Original Message- From: Erik Hatcher <[EMAIL PROTECTED]> Sent: Jul 8, 2005 11:01 AM To: java-user@lucene.apache.org Subject: Re: How to get the un-stemed word On Jul 8, 20

Re: How to get the un-stemed word

2005-07-08 Thread Andrew Boyd
AIL PROTECTED]> Sent: Jul 8, 2005 11:01 AM To: java-user@lucene.apache.org Subject: Re: How to get the un-stemed word On Jul 8, 2005, at 9:08 AM, Andrew Boyd wrote: > Hi all, > I am using the snowball stemmer and for all my searches that > works fine. > However, I have a need

Re: How to get the un-stemed word

2005-07-08 Thread Erik Hatcher
On Jul 8, 2005, at 9:08 AM, Andrew Boyd wrote: Hi all, I am using the snowball stemmer and for all my searches that works fine. However, I have a need to display the un-stemmed word after doing some term vector analysis. I was thinking that I might insert the real word at the same po

How to get the un-stemed word

2005-07-08 Thread Andrew Boyd
Hi all, I am using the snowball stemmer and for all my searches that works fine. However, I have a need to display the un-stemmed word after doing some term vector analysis. I was thinking that I might insert the real word at the same position as the stemed word but give the real word a type