search for: get_eset

Displaying 11 results from an estimated 11 matches for "get_eset".

2010 Jul 26
2
related documents
Hi All, I would like to take a doc in the xapian DB and find all related documents by relevance e.g. so when you view one document it says "Related entries X Y Z". I'm aware of the "Morelikethis" Lucene plugin that is supposed to do something like this, by generating a query from a document based on term frequency. Has anyone developed a tool to generate a query from a
2014 Apr 13
2
Adding an external library to Xapian
...uot;Use of a percentage cutoff while sorting primary by value isn't currently supported"); @@ -701,6 +714,7 @@ const RSet & rset, int flags, double k, const ExpandDecider * edecider, Xapian::weight min_wt) const { + cout << "In Enquire::Internal::get_eset : 6 args" << endl; LOGCALL(MATCH, ESet, "Enquire::Internal::get_eset", maxitems | rset | flags | k | edecider | min_wt); if (maxitems == 0 || rset.empty()) { @@ -1012,6 +1026,15 @@ const MatchDecider *mdecider, const MatchDecider *matchspy) const { + cout...
2014 Mar 10
2
[GSoC 2014] clustering of search results
...ing > implementations, neither of which is usable on larger sets of documents. > > I think the clustering would probably be based on the terms in the > documents (I can't really think what else it would be based on). > Possibly using Xapian's query expansion feature (Enquire::get_eset()) to > generate a more restricted list of "interesting" terms to consider would > help. > Yes, what I know is that clustering will be based on number of clusters i.e. no. of disjoints sets for that particular document. Enquire:::get_eset() will return the expand set of related...
2014 Apr 13
2
Adding an external library to Xapian
My code is not on Github. I am using the tarball as of now. The following it the error that occurred: http://pastebin.com/cVJrjUZX On Sun, Apr 13, 2014 at 8:16 PM, James Aylett <james-xapian at tartarus.org>wrote: > On 13 Apr 2014, at 15:37, Pallavi Gudipati <pallavigudipati at gmail.com> > wrote: > > > A linker error is encountered even after following the above
2014 Mar 09
2
[GSoC 2014] clustering of search results
Hello guys, I was looking forward to participate in GSoc14. I have a decent knowledge about c++ and parsers. I was looking at the idea pages where I found many interesting projects, in which "clustering of search results" interests me the most. I want someone to take me to the right track in understanding the project so that I can think about its implementation. According to me, in this
2013 Feb 07
0
Ideas for allowing specification of weighing scheme for Eset
...e relevant Eset) for query expansion if we use say something like BM25 (or allow the user to use a self coded scheme) for ranking the terms . I read up the code for the proxy,internal and iterator classes of Eset and Mset to get a feel of how those sets work.I then traced the working of Enquire::get_eset( ) (understood it well other than how a Termlist tree is built ) and Enquire::get_mset( ) (didn't understand this one completely,got lost during Multimatch::get_mset()) .I also read up the code for Xapian::Weight (both proxy and internal class) and the codes of BM25 and TradWeight classes . T...
2012 Mar 22
1
GSOC : Language Modelling for information retrieval with Diversified Search results
...g/citation.cfm?id=291008 http://goo.gl/klqYy http://dl.acm.org/citation.cfm?id=1860709 I have compiled and installed xapian and tried playing with xapian in past few days.I have few queries regarding xapian :- 1. xapain supports relevance feedback(query expansion) through " Xapian::Enquire::get_eset" function.which algorithm is used to expand query in Enquire class. Since search result diversification is its naive form performed by expanding query with different context and adding document from different context in final rank-list, thereby catering to all context of query. I was thinkin...
2009 Apr 23
1
Expanding the search in PHP
I tried using the simpleexpand.php from http://xapian.org/docs/bindings/php/examples/simpleexpand.php5 I get different results between PHP and the Omega expand (see below), I'd like to have the same functionality in PHP. Could anyone suggest how to do it? Is there an example I could use? Thanks, Frank And got the following results from PHP: Zdefin: weight = 46.963883268652 Zconfigur:
2009 Nov 14
1
[Xapian discuss] Is there difference between single database and multiple database?
Hi, all: I am not quite clear about the internal process of query in xapian, is there any differences between querying in a single database and a multiple database, if both of them have the same amount of data? For example, the single database has n documents, which is equal to the total documents' count of the databases in the multiple database ? What are the differences
2009 Jan 27
1
Segmentation fault in MSetIterator get_weight
Hi, I'm using xapian with c# and mono and i'm having a segfault in get_weight. When i print the index variable, the value is clearly too high. I think something write over it. Do you have any idea on how i could trace the beginning of the segmentation fault ? Thanks, -- Yann
2006 May 10
1
Documentation for the PHP OO wrapper
...many problems that I was not able to resolve : - some methods are documented but do not exist in the wrapper (e.g. empty(), max_size(), swap(), create()...) - some forms of methods use arguments types which are not in the wrapper and should not be documented (e.g : get_mset with a MatchDecider, get_eset with an ExpandDecider, SimpleStopper::__construct() with iterators...) - some methods exist in the wrapper but are not documented. This is everything which is specific to the bindings : http://svn.xapian.org/trunk/xapian-bindings/php/docs/bindings.html?view=co and some which are not documented li...