Displaying 14 results from an estimated 14 matches for "webstay".
2005 Apr 12
1
R Package: mmlcr and/or flexmix
...our help!
Scott Geller
library(mmlcr)
model2 = mmlcr(outer = ~ first_brand_HOLIDAY + perc_zone1 +
perc_Group_nights + perc_num_asian + DaysBetweenStays + CROStays +
DaysSinceLastStay + wghtmean_median_age_pop100 + perc_num_white +
perc_num_hispanic + perc_CROStays + numMonthsActive + WEBStays +
property_loyalty + perc_NoZone + ltgold1 + ltgold3 + rho + p_hat_PCR|
gst_id, components = list(list(formula = nts ~ PCR_Dummy_class, class =
"poislong")),data=Dataset, n.groups = 5, max.iter = 5000)
libray(flexmix)
m1<-flexmix(nts ~ first_brand_HOLIDAY+ perc_zone1+ perc...
2007 Aug 23
0
Re: [Swig-devel] license issue
...l solution whereby swig has the power to banish licensing conflicts that may exist between any imported library and the target system for which swig is generating a module.
-----Original Message-----
From: "Sam Liddicott" <sam@liddicott.com>
To: "Alexander Lind" <malte@webstay.org>; "William S Fulton" <wsf@fultondesigns.co.uk>
Cc: swig-devel@lists.sourceforge.net; "Xapian Discussion" <xapian-discuss@lists.xapian.org>
Sent: 22/08/07 07:55
Subject: RE: [Xapian-discuss] Re: [Swig-devel] license issue
Sorry for top-quoting, darn pocket-out...
2006 Apr 06
1
search on subsets
hi all
i am building an experimental php search app on top of xapian (using the
xapian-bindings).
i want to add a feature so that you can search within a search - search
on a subset.
i haven't yet started working on it, but as far as i can tell, there
seems to be no easy way of doing this.
can someone point me in the right direction?
thanks
alec
2006 May 15
1
term / posting question
Hi guys
Sorry to take up your time with this, I have just been stuck on a little
problem with xapian for a few days here and I can't seem to figure it
out for myself.
I have created an xapian index (using the php bindings). I have added
documents to it, with values, terms and postings. I can successfully
search in this index on anything that is in a posting, but if I search
on a word that
2006 Jun 15
1
enquire bug(?)
Hi Guys
I've run into a little problem, which I think may be a bug in Xapian (or
more likely the php bindings).
The functions I think may not be working correctly is
Enquire_set_sort_by_value()
and
Enquire_set_sort_by_value_then_relevance()
Given a result set where each document has a unique number set on the
first value (0), I am trying to order the result by this value.
If I do
2006 Jul 06
1
Re: [XapianBug 84] Enquire_set_sort_by_value() and friends have no effect
ah, that explains it ... sorry to waste your time, im going to go sit in
the corner for a while now :p
is there a reason you have no numeric sort function?
cheers
alec
bugzilla-daemon at ixion.tartarus.org wrote:
> http://www.xapian.org/cgi-bin/bugzilla/show_bug.cgi?id=84
>
> olly at survex.com changed:
>
> What |Removed |Added
>
2007 Jun 14
1
relevance sets and stemmed terms
Hi List
Is there a good way to generate search term suggestions meant for the
user to see? I was thinking using the relevance set and expansion set
stuff for this, but since these functions return a lot of Z-prefixed
stemmed down versions of words, those results are not always suitable to
be presented to the user.
Cheers
Alec
2007 Aug 21
1
PHP extension
Hi All
Is there any reason why someone could not build a regular PHP extension
(not using SWIG) for Xapian?
Same as mnoGoSearch has.
The extension itself would be released under the PHP license.
Is there anything on either side of the pond that would prevent this
from being legal?
Alec
2007 Jan 12
1
xapian error
Just got this error when replacing (updating) a document in the xapian
index (using php bindings):
Fatal error: Uncaught exception 'Exception' with message 'DatabaseError:
Error reading block 16908825: got end of file'
Does anyone know what this means exactly?
Alec
2007 Aug 19
1
xapian 1.0.2 in the ubuntu repo
Hi all
Does anyone know when we can expect to see ubuntu 1.0.2 in the ubuntu
repository?
I am talking about the repo hosted at xapian.org, |
(http://www.xapian.org/debian feisty main)
|I know I can download it manually, but it just feels so good to type
'apt-get upgrade' instead :)
Alec
2006 Dec 02
1
document_id globally incrementing
Hi All
I have made my xapian indexer automatically create new indexes once it
reaches X documents in each, and for each document that I add to each
sub-index, I record its document_id and its index_id (relating to what
index the document ended up in).
writabledatabase_add_document() returns document_id:s beginning from 0
for each new index when you add new documents, like you would expect.
So
2006 May 15
1
adaptive query scoring
Hi all
Is there a way to do adaptive query scoring (as in popular results
returned by a query should get more weight because they are getting
clicked more often) in xapian? Is this what the rset class should be
used for?
I could write a php app to do adaptive results scoring for separate
words (just recording the clicks and then have a cron:ned script add
weight to the document_id:s for the
2006 Dec 01
1
writabledatabase_delete_document()
Hi guys
I have implemented xapian on a website, and it currently has about 2M
items in its index.
Its all been working quite nicely so far, until I tried removing some
old items from the index (removing items when the index was smaller was
no problems at all).
When I try to remove them now (using writabledatabase_delete_document()
via php), it halfway freezes up the machine, and the apache
2007 Mar 21
1
scoring question
Hi All
I have just realized that if I set a query like
'green jelly bean'
xapian will turn that query into
'green OR jelly OR bean'
This causes documents containing just one of the words to be considered
a 100% hit.
The behavior I would like to see is that each word gives a 33.3% hit, so
that a document containing all 3 words gets placed above a document with
only 1 or 2