Re: Lucene 4 - POS and Syntactic Tagging

2012-04-09 Thread T. Kuro Kurosaka
Please disregard this suggestion. It is a bad idea. Almost every text would have a verb, noun, etc. so search on a pos tag only field won't make sense. Maybe the parallel field should have a lemma (dictionary form) plus part-of-speech tag putting together as a token like "like_verb", "lemming_

Re: Lucene 4 - POS and Syntactic Tagging

2012-04-09 Thread T. Kuro Kurosaka
If you want to search on part-of-speech tag, I'd just make a parallel field ("text_pos" for the field "text", for example) and search on that field (text_pos:noun). Kuro On 3/14/12 9:37 AM, Mark McGuire wrote: I'm working on a project where I need to tag both the part of speech and other synt

Query Rewrite - Utilities?

2012-04-09 Thread Paul Hill
Just thought I throw out a question. What is available in the libraries to help with manipulating and asking questions about queries? So far my best (and worst) efforts have involved combinations setting up a parser, generating a query object, then looking through the various clauses and re-work

RE: Partial word match

2012-04-09 Thread Steven A Rowe
Hi Hanu, Depending on the nature of the partial word match you're looking for - do you want to only match partial words that match at the beginning of the word? - you should look either at NGramTokenFilter or EdgeNGramTokenFilter:

Partial word match

2012-04-09 Thread hanu_bhambi
Is it possible to match partial words using Lucene. we are using Standard Analyzer for tokenization. -- View this message in context: http://lucene.472066.n3.nabble.com/Partial-word-match-tp3896450p3896450.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. ---