Displaying 7 results from an estimated 7 matches for "docsprint".
Did you mean:
do_print
2016 Feb 15
3
Issues in Example code
...fully
checked out and built the code. I am trying out the python codes given at (
http://getting-started-with-xapian.readthedocs.org/en/latest/overview.html#datasets-and-example-code).
The following are the steps that I have performed.:
- Checked out the code at https://github.com/xapian/xapian-docsprint
-
- python index1.py ../../data/states.csv index1_states.py.db
-
- python search1.py index1_states.py.db/ Montana
However I am getting the following output:
INFO:xapian.search:'Montana'[0:10] =
Could you please help me with what I am missing or doing wrong because I am
not abl...
2015 Jan 26
2
delve not found
Hi all,
Today I just cloned Xapian and Xapian-Docsprint from your GitHub repos and was working through the practical example in Python in your Getting Started with Xapian 1.2 guide. However after the index was generated, I wasn't able to inspect it with delve because the command was not found.
My system set-up is a fresh install of Debian 7.8.0 as...
2015 Jan 20
2
Question on "single writer, multiple reader"
...<https://getting-started-with-xapian.readthedocs.org/en/latest/concepts/indexing/databases.html?highlight=databasemodifiederror#concurrent-access>.
I've just improved this with a note that reopen() is a cheap no-op when
there isn't a newer revision:
https://github.com/jaylett/xapian-docsprint/commit/41bb7a1da61d22e0047a83176386da4db1ee9f15
Cheers,
Olly
2016 Mar 20
2
GSoC 2016 Letor Stabilisation
...etor/bin/questletor.cc to use and test core features
and API of letor. The current version of questletor.cc has a lot of
unusable and broken functions and is custom made for training with INEX
2010 dataset. The intention is to make it usable for a user provided
database. Currently I am using xapian-docsprint/data/100-objects-v1.csv as
my database and some manually written queries and qrels to make things
work.
2. Going through v-hasu's GSoC 2014 code to understand extra
functionalities added by him and planning how to introduce code from his
branch.
In summary, the approach I will follow is going...
2012 Jan 15
1
Another broken link
At page
http://getting-started-with-xapian.readthedocs.org/en/latest/overview.html#datasets-and-example-code
<http://getting-started-with-xapian.readthedocs.org/en/latest/overview.html#datasets-and-example-code>the
python examples file, http://xapian.org/docs/examples/python.tgz
<http://getting-started-with-xapian.readthedocs.org/en/latest/overview.html#datasets-and-example-code>
2013 Feb 27
0
Sent a pull request for an example weighting scheme that requires statistics
Hello guys, as discussed on IRC, I've added an example of a weighting
scheme that requires statistics to the howto manual of our Getting Started
guide.Please do let me know if any modifications are required.
The pull request is here :
https://github.com/jaylett/xapian-docsprint/pull/3
-Regards
-Aarsh.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.xapian.org/pipermail/xapian-devel/attachments/20130228/d7b5df1c/attachment-0001.html>
2015 Jan 16
2
Question on "single writer, multiple reader"
Hi, dear Xapianers!
I've been using Xapian in my project recently. The feature "single
writer, multiple reader" is one of my favorite, but currently I can't make
it work.
My goal is to add more documents to the database increamentally, while
the Xapian search process is not stopped.
I followed "quickstartindex.cc" and "quickstartsearch.cc" on