From lucene-user-return-2929-qmlist-jakarta-archive-lucene-user=jakarta.apache.org@jakarta.apache.org Mon Nov 11 00:12:39 2002 Return-Path: Delivered-To: apmail-jakarta-lucene-user-archive@apache.org Received: (qmail 48970 invoked from network); 11 Nov 2002 00:12:35 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 11 Nov 2002 00:12:35 -0000 Received: (qmail 27012 invoked by uid 97); 11 Nov 2002 00:13:34 -0000 Delivered-To: qmlist-jakarta-archive-lucene-user@jakarta.apache.org Received: (qmail 26972 invoked by uid 97); 11 Nov 2002 00:13:34 -0000 Mailing-List: contact lucene-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Lucene Users List" Reply-To: "Lucene Users List" Delivered-To: mailing list lucene-user@jakarta.apache.org Received: (qmail 26960 invoked by uid 98); 11 Nov 2002 00:13:33 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Message-ID: <001d01c28917$c2147950$0200a8c0@aaron> From: "Aaron Galea" To: "Lucene Users List" , References: <002401c2890f$4f0a6030$5ae3fea9@Lissus> Subject: Re: Indexing synonyms Date: Mon, 11 Nov 2002 01:17:44 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.3018.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.1300 X-Declude-Sender: agale@nextgen.net.mt [80.77.199.248] X-Declude-Spoolname: Df5e121fb009a7933.SMD X-Note: This E-mail was scanned by NextGen.net JunkMail Server for spam. X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Thanks for all your replies, Well I will start of with an idea of what I am trying to achieve. I am building a question answer system and one of its modules is an FAQ Module. Since the QA system is concerned with education, users can concentrate their question on a particular subject reducing the set of question/answer pair to consider. Since there is this hierarchical indexing the index files are not that big so I can store synonyms for each word in a question in the index. Query expansion will solve the problem and eliminating the need to store synonyms in the index but this will slow things as there is no depth limit to consider for term expansion. It is not my intension to build something similar to the FAQFinder system but I want to further reduce the subset of questions to consider on which a question reformulation algorithm would be applied. Therefore the idea is get an faq file dealing with one education subject, index all of its questions and expand each term in the question. Using lucene I will retrieve the questions that are likely to be similar to a user question, select say the top 5 and apply a query reformulation algorithm. If this succeeds fine and I return the answer to user, otherwise submit the question to an answer extraction module. The most important thing is speed so putting term expansion in the index hopefully should improve things. Obviously problems arise with this method as there is no word sense disambiguation but the query reformulation algorithm will solve this. However it is slow so I must reduce the number of questions it is applied on. It is a tradeoff!!! Well I managed to solve this by overriding the next() method and when it gets to an EOS I start returning the new expanded terms that I accumulated in a list. Thanks everyone for your reply!!!! Aaron NB : And yep I am a Malteser Otis ! :) ----- Original Message ----- From: "Alex Murzaku" To: "'Lucene Users List'" Sent: Monday, November 11, 2002 12:17 AM Subject: RE: Indexing synonyms > You could also do something with org.apache.lucene.analyzer.Token which > includes the following self-explanatory note: > > /** Set the position increment. This determines the position of this > token > * relative to the previous Token in a {@link TokenStream}, used in > phrase > * searching. > * > *

The default value is one. > * > *

Some common uses for this are:

    > * > *
  • Set it to zero to put multiple terms in the same position. > This is > * useful if, e.g., a word has multiple stems. Searches for phrases > * including either stem will match. In this case, all but the first > stem's > * increment should be set to zero: the increment of the first > instance > * should be one. Repeating a token with an increment of zero can > also be > * used to boost the scores of matches on that token. > * > *
  • Set it to values greater than one to inhibit exact phrase > matches. > * If, for example, one does not want phrases to match across removed > stop > * words, then one could build a stop word filter that removes stop > words and > * also sets the increment to the number of stop words removed before > each > * non-stop word. Then exact phrase queries will only match when the > terms > * occur with no intervening stop words. > * > *
> * @see TermPositions > */ > public void setPositionIncrement(int positionIncrement) { > if (positionIncrement < 0) > throw new IllegalArgumentException > ("Increment must be positive: " + positionIncrement); > this.positionIncrement = positionIncrement; > } > > > -- > Alex Murzaku > ___________________________________________ > alex(at)lissus.com http://www.lissus.com > > -----Original Message----- > From: Otis Gospodnetic [mailto:otis_gospodnetic@yahoo.com] > Sent: Sunday, November 10, 2002 1:30 PM > To: Lucene Users List > Subject: Re: Indexing synonyms > > > .mt? Malta? That's rare! :) > > A person called Clemens Marschner just submitted diffs for query > rewriting to lucene-dev list 1-2 weeks ago. The diffs are not in CVS > yet, and they are a bit old now becase the code they were made against > has changed since they were made. You could either try applying them > yourself, of waiting until they get applied and then you could get a > nightly build. > > Otis > > --- Aaron Galea wrote: > > Hi everyone, > > > > I need to create a filter that extends a tokenfilter whose purpose is > > to generate some synonyms for words in the document using Wordnet. > > Well searching for synonyms using wordnet is not that problematic but > > I need to add the synonym words to Lucene tokenstream before they are > > passed for indexing. However TokenStream class does not support any > > add method. Did anyone ever needed to do this? Can someone suggest an > > alternative of how to add some synonym words to the index? > > > > Thanks > > Aaron > > > > > __________________________________________________ > Do you Yahoo!? > U2 on LAUNCH - Exclusive greatest hits videos http://launch.yahoo.com/u2 > > -- > To unsubscribe, e-mail: > > For additional commands, e-mail: > > > > -- > To unsubscribe, e-mail: > For additional commands, e-mail: > > --- > [This E-mail was scanned for spam and viruses by NextGen.net.] > > > --- [This E-mail was scanned for spam and viruses by NextGen.net.] -- To unsubscribe, e-mail: For additional commands, e-mail: