Re: Testing Precision and Recall on Lucene

2009-01-15 Thread Murat Yakici
>> precision and recall.Anyone with a small application that I can use >> quickly without having to program using the APIs? >> Thanks. >> David >> >> >> >> >> >> >> Murat Yakici Department of Computer & Information Scie

Re: Testing Precision and Recall on Lucene

2009-01-15 Thread Murat Yakici
also download and try it?At the moment I am > doing some simulation using Mathlab. > Thank you > > David > > > > > --- On Thu, 15/1/09, Murat Yakici wrote: > From: Murat Yakici > Subject: Re: Testing Precision and Recall on Lucene > To: java-user@lucene.apach

Re: Term Frequency and IndexSearcher

2009-01-15 Thread Murat Yakici
nsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org > For additional commands, e-mail: java-user-h...@lucene.apache.org > Murat Yakici Department of Computer & Information Sciences University of Strathclyde Glasgow, UK --- The University of Strathclyde is

Re: Listing fields in an index

2009-02-10 Thread Murat Yakici
he/lucene/index/IndexReader.FieldOption.html> fldOption)|; That should do. The selection of FieldOption's is important, therefore you need to know what you really want to get. Cheers, Murat Yakici Department of Computer & Information Sciences University of St

Re: Term Limit?

2009-04-04 Thread Murat Yakici
I'm also >> wondering whether the code may be a limiting factor even if the file >> formats >> are ok. >> >> Thanks. >> > > - > To unsubscribe, e-mail: java-user-unsubscr...@luce

Using Payloads

2009-04-21 Thread Murat Yakici
, -- Murat Yakici Department of Computer & Information Sciences University of Strathclyde Glasgow, UK --- The University of Strathclyde is a charitable body, registered in Scotland, with registration number SC01

Re: Using Payloads

2009-04-22 Thread Murat Yakici
No, just checking. I will let you everyone know I see one. Cheers, Murat > > On Apr 21, 2009, at 4:39 AM, Murat Yakici wrote: > >> Hi, >> I started playing with the experimental payload functionality. I >> have written an analyzer which adds a payload (some sort of

Re: Using Payloads

2009-04-25 Thread Murat Yakici
e itself or only used Lucene's jar and just > override code? > > I would very much apprecicate if you could give me a short explanation on > how was it done. > > Thanks a lot, > Liat > > 2009/4/21 Murat Yakici > >> Hi, >> I started playing with the e

Re: Using Payloads

2009-04-26 Thread Murat Yakici
.commit(); >>iwriter.optimize(); >>iwriter.close(); >> >>//Now read the index >> IndexReader ireader = IndexReader.open(index); >>TermPositions tpos = ireader.termPositions( >>

Re: Using Payloads

2009-04-26 Thread Murat Yakici
word2", 3); >> > mapScores.put("word3", 1); >> > panalyzer.setMapScores(mapScores); >> > iwriter.addDocument(d, panalyzer); >> > /*-*/ >> > // iwriter.commit(); >> > iwriter.optimize(); >> >

Re: Using Payloads

2009-04-27 Thread Murat Yakici
See http://wiki.apache.org/lucene-java/ImproveIndexingSpeed and http://wiki.apache.org/lucene-java/ImproveSearchingSpeed and http://wiki.apache.org/lucene-java/ConcurrentAccessToIndex Murat Yakici Department of Computer & Information Sciences University of Strathclyde Glasgow

Writing terms/freq pairs directly to the inverted file

2006-03-07 Thread Murat Yakici
Hi, I would like to by-pass the IndexWriter and directly write the terms and their frequencies to the index (and may proximity info later on). I might have missed any discussion if previously. As far as I know, the high level API in Lucene only allows you to add documents (which are populated

Unreported IOException received for SpanTermQuery class

2006-03-07 Thread Murat Yakici
Hi, I was building the Lucene 1.9.1 source code. I have received the following error msg: "Unreported exceptions: java.io.IOException must be caught or declared to be thrown. " in class SpanOrQuery, line number 154. Any ideas how to resolve it? Regards, Murat --

Re: Unreported IOException received for SpanTermQuery class

2006-03-07 Thread Murat Yakici
The compiler is Sun Java 1.4.2_08. Paul Elschot wrote: On Tuesday 07 March 2006 15:35, Murat Yakici wrote: Hi, I was building the Lucene 1.9.1 source code. I have received the following error msg: "Unreported exceptions: java.io.IOException must be caught or declared to be thrown.

Re: Unreported IOException received for SpanTermQuery class

2006-03-07 Thread Murat Yakici
Tuesday 07 March 2006 16:34, Murat Yakici wrote: The compiler is Sun Java 1.4.2_08. I'm using sun javac 1.5.0_01 and this compiles the current trunk without any problems, so I cannot reproduce the error msg. The common-build.xml file uses source and target 1.4 for javac, (in the compile macro

Re: Implemented subclasses of Similarity class in Lucene

2006-05-26 Thread Murat Yakici
Hi Edgar, While doing the integration/updating for Lucene 1.9, could you be more open and clear about the design so that people can 1)Understand it, 2)Extend it, Just an recommendation. Cheers, Murat Edgar Meij wrote: Hi Ganesh, We have developed a Language Modeling extension to Lucene at

Mirroring a remote index using only metadata

2005-09-29 Thread Murat Yakici
Hi, Let's assume that there is one remote index and one local index. I would like to create a mirror of the remote locally. I'm using a kind of protocol in between (which is not important) to only transfer each document ID, the unique terms in the document and the frequencies. Right now I'm n