search for: letor_internal_refactored

Displaying 4 results from an estimated 4 matches for "letor_internal_refactored".

2014 Mar 04
4
Questions on letor module
...d how about the cross validation for the training set? Is there any method included in the current project? For SVM method, I found letor_learn_model() has been commented out, but I didn't find any other file contain this function (or maybe in letor_internal.cc)? Finally I found a file called letor_internal_refactored.cc file, is that the latest version of letor_internal.cc ? Is letor_internal.cc still being used? Thank you very much. I am waiting for your reply. -- Jia Xu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xapian.org/pipermail/xapian-devel/attachm...
2014 Mar 09
2
[GSOC 2014] Some questions about Letor module
...tor_internal.cc#L299, there is a write_to_file method, which save RankList into ?train.txt?. But the format for ?train.txt? is different from the one mentioned in http://trac.xapian.org/wiki/GSoC2011/LTR/Notes#QueryLevelNorm. And in https://github.com/rishabhmehrotra/xapian/blob/master/xapian-letor/letor_internal_refactored.cc#L716, Qid and DocID become optional. What format should we use for ?train.txt?? Is there any sample ?train.txt? available? 2. In http://trac.xapian.org/wiki/GSoC2011/LTR/Notes#QueryLevelNorm, it mentioned "the first column is the relevance judgement?. I think the value of the relevance jud...
2014 Mar 09
2
[GSOC 2014] Some questions about Letor module
...tor_internal.cc#L299, there is a write_to_file method, which save RankList into ?train.txt?. But the format for ?train.txt? is different from the one mentioned in http://trac.xapian.org/wiki/GSoC2011/LTR/Notes#QueryLevelNorm. And in https://github.com/rishabhmehrotra/xapian/blob/master/xapian-letor/letor_internal_refactored.cc#L716, Qid and DocID become optional. What format should we use for ?train.txt?? Is there any sample ?train.txt? available? > > > You can find a sample of training file in the resources of Learning-to-Rank project on Xapian GSoC idea page. > > 2. In http://trac.xapian.org/wiki/...
2014 Mar 10
2
A few more question about LETOR
1.Could you explain why are these libraries included in all the xapian-letor headers? #include<xapian/intrusive_ptr.h> #include<xapian/types.h> #include<xapian/visibility.h> Or just provide me with the documentation of these header. I looked into these header files but couldn't anything substantial. 2.