Displaying 20 results from an estimated 300 matches similar to: "make error in xapian-application/omega (jiangwen jiang)"
2013 Feb 05
1
make error in xapian-application/omega
Hi, all:
I check out the trunk code from svn yesterday
*svn co svn://svn.xapian.org/xapian/trunk xapian*
compile process:
*./bootstrap*
*mkdir build*
*cd build*
*../configure --disable-documentation*
*make*
then the error occur:
cd xapian-applications/omega && make all
make[1]: Entering directory
`/home/white127/xapian-svn/build/xapian-applications/omega'
/usr/bin/perl
2013 Jun 16
3
Backend for Lucene format indexes-How to get doclength
Hi, all:
I have wrote a demo patch for Backend for Lucene format indexes, Lucene
version is 3.6.2.
http://lucene.apache.org/core/3_6_2/fileformats.html
Now, this demo patch just support the basic features in Lucene. Compound
File(.cfs/.cfe)?term vector(.tvx/.tvd/.tvf)
delete document(.del) are not supported, skip list in .fdx is not supported
too
example/quest.cc is used to test this demo.
2013 Mar 13
1
patch-Add standard ExpandDecider subclass to restrict to terms with a particular prefix
Hi, guys, I wrote a patch for ticket
#467<http://trac.xapian.org/ticket/467>(Add
standard ExpandDecider subclass to restrict to terms with a particular
prefix).
A new ExpandDecider class is added in expanddecider.cc/h, which delete all
unprefix terms
I am a newbiee to open source contribution, please let me know if this
patch is work.
Patch is here(generate by svn diff):
2011 Feb 09
1
Not separating words when parsing HTML in Omega
We noticed, when indexing a Word 2007 document, that two words in
adjacent paragraphs got melded together in the Xapian database. For
example:
To find the document containing
these two paragraphs...
...you would search for "containingthese".
I fixed it locally by adding a "dump.append(" ");" just before the
return in process_text() in myhtmlparse.cc. Thought
2016 Sep 22
2
issues compiling omega
All,
I'm having some issues compiling omega. Here are the particulars
I'm on win7, using cygwin 4.9.2 64 bit. Here's the relevant output from
make:
libtool: link: g++ -fshow-column -Wall -W -Wredundant-decls -Wpointer-arith
-Wca
st-qual -Wcast-align -Wno-long-long -Wformat-security -fno-gnu-keywords
-Wundef
-Woverloaded-virtual -Wstrict-null-sentinel -Wshadow -Wstrict-overflow=1
2013 Sep 24
2
Is the project learning to rank need to be improved?
HI, Parth:
Thanks for your reply.
There's xapian-letor folder in current master trunk, is this code merged in
2011? the letor code of 2012 is not merged to the trunk?
Regards
2013/9/23 Parth Gupta <pargup8 at gmail.com>
> Dear Jiangwen Jiang,
>
> The current state of the project can be reached from the repo:
> http://trac.xapian.org/wiki/GSoC2012/LTR
>
> I would
2013 Sep 02
2
Backend for Lucene format indexes-How to get doclength
On Mon, Sep 02, 2013 at 09:21:48AM +0800, jiangwen jiang wrote:
> TfIdfWeight and BM25(b=0) also need wdf_upper_bound, it is not exists in
> Lucene backends.
If you don't provide an implementation of wdf_upper_bound(), the default
is to use the collection frequency of the term, so provided that
information is available in the lucene files, the lack of
wdf_upper_bound information
2013 Sep 25
2
Is the project learning to rank need to be improved?
As Olly has already pointed out the 2012 branch is not merged.
I think there are some compilation errors in the branch.
The code in branch is better refactored. The Ranker and FeatureManager
classes are well defined and implemented.
Parth.
On Wed, Sep 25, 2013 at 9:02 AM, Olly Betts <olly at survex.com> wrote:
> On Tue, Sep 24, 2013 at 08:34:10PM +0800, jiangwen jiang wrote:
>
2013 Aug 26
2
Backend for Lucene format indexes-How to get doclength
On Mon, Aug 26, 2013 at 09:41:07AM +0800, jiangwen jiang wrote:
> > For now, using weighting schemes which don't use document length is
> > probably the simplest answer.
>
> There's tf-idf weighting scheme on svn master, is it suitable for lucene
> backend?
Yes - TfIdfWeight doesn't ever use the document length (at least with
the normalisations currently
2013 Oct 30
2
Lucene 3.6.2 backend for xapian (#25)
[Replying to xapian-devel, as I think a wider audience would be useful]
On Mon, Oct 21, 2013 at 11:24:51PM +0800, jiangwen jiang wrote:
> yes, it's less efficient. Lucene database has multiple segments, each
> segment can treat as a independent database. The same term may exists in >=
> 1 segments.
Sorry for taking a while to respond - I've been both busy and mulling
this
2013 Aug 25
2
Backend for Lucene format indexes-How to get doclength
On Tue, Aug 20, 2013 at 07:28:42PM +0800, jiangwen jiang wrote:
> I think norm(t, d) in Lucene can used to caculate the number which is
> similar to doc length(see norm(t,d) in
> http://lucene.apache.org/core/3_5_0/api/all/org/apache/lucene/search/Similarity.html#formula_norm).
It sounds similar (especially if document and field boosts aren't in use),
though some places may rely on
2013 Sep 23
2
Is the project learning to rank need to be improved?
Hi, guys:
I found this project idea
http://trac.xapian.org/wiki/GSoCProjectIdeas#Project:LearningtoRank
If it is need to be improved, I will try to handle it
thanks
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.xapian.org/pipermail/xapian-devel/attachments/20130923/d0ced0d6/attachment-0002.html>
2009 Feb 02
2
Ticket #282: omindex-assorted-enhancements.patch woes
I would really like to try out the features in the patch above. But I
can't ever seem to get the resulting omindex.cc to "make".
I tried updating to rev 10801 from the SVN then run /bootstrap but then
I seem to get errors compiling everything when I try and do "make" (I'm
using ubuntu 8.10).
So I thought I'd try an apply the patch to the latest stable version
2012 Jan 20
3
get_docid???
my $mset = $enq->get_mset($nstart,$nrecords);
for(my $mit=$mset->begin(); $mit != $mset->end();$mit++) {
my $doc = $mit->get_document();
my $dat = $doc->get_data();
my $id = $doc->get_docid();
}
[Fri Jan 20 10:35:06 2012] newmail.cgi: Can't locate
auto/Search/Xapian/Document/get_docid.al in @INC (@INC contains:
/etc/perl
2005 Oct 18
1
Re: [Xapian-commits] 6355: trunk/xapian-applications/omega/ trunk/xapian-applications/omega/docs/
On Fri, Jul 29, 2005 at 10:08:13AM +0100, james wrote:
> SVN root: svn://svn.xapian.org/xapian
> Changes by: james
> Revision: 6355
> Date: 2005-07-29 10:08:13 +0100 (Fri, 29 Jul 2005)
>
> Log message (6 lines):
> omindex.cc: add --preserve-nonduplicates / -p option to not delete any
> documents that aren't updated, in replace duplicates mode
2017 Jun 06
1
Test for the end of PostingIterator in perl?
Hi all. I want to iterate over all the documents in my database.
my $pi = $db->postlist_begin("");
while ("$pi" =~ qr/END/) {
my $oldid = $pi->get_docid;
$pi++;
#...
}
That used to work with Search::Xapian in perl version 1.2, but now with
xapian-bindings-1.4.4 it does not seem to. How are you supposed to tell
when you have reached the
2011 Apr 09
1
Pretty URLs for omega?
Hello :-)
How can the default omega URL be prettified?
http://<host_ID>/cgi-bin/omega is working fine, giving us all omega's
default CGI parameters. Now we want multiple databases which could be
accessed using http://<host_ID>/cgi-bin/omega?DB=<index_ID> but this is
starting to get messy. It will get messier when we start to customise
templates with
2007 Apr 05
0
omega squared calculation
Hi list,
Is there a function in R to calculate the omega squared (an estimate of the dependent variance accounted for by the independent variable in the population for a fixed effects model), or does anyone have some code to let me calculate this fairly easy out of aov() or anova() output?
Kind regards,
Koen
--
Checked by AVG Free Edition.
13:09
[[alternative HTML version deleted]]
2013 May 26
1
Omega : Indexing disallowed by Meta tag
Hi everybody,
I am trying to index a big collection of webpages (~15GB) with Omega but
cannot index them due the meta tag. Is there some way I can still index
them?
Kind regards,
Merlijn
2010 Apr 02
1
McDonald's omega calculation. How to???
hi people,
I am a newbie to R and I would appreciate it very much if someone can help me. I
am used to use SPSS so I don?t have experience with writing a script. I have a
questionnaire (questions 1-12) and I would like to use the omega reliability.
Question 1-8 is factor 1 and question 9-12 factor 2. How can I write the
scripit? Can someone help me???
Thanks in advance
Asterios