similar to: Number of hits per document

Displaying 20 results from an estimated 6000 matches similar to: "Number of hits per document"

2005 Dec 14
4
Fuzzy search on a phrase
I''m trying to use Ferret to do fuzzy searches. If I use fuzzy search for just one word, it works fine: index.search(''name:gogle~0.4'') However, if I try to use a phrase, it doesn''t work: index.search(''name:"gogle search engine"~0.4'') On the other hand, I could do: index.search(''name:gogle~0.4 AND
2005 Dec 14
4
Is it possible to highlight search keywords in results?
I''m wondering if ferret has any built-in search/replace mechanism that I might be able to use to highlight the query data in each search result. The reason I think this would be a good idea is that I could end up having to practically duplicate the ferret query parser just to interpret the query so that I can figure out how to highlight the keywords in the search results. Just in case
2008 Oct 29
1
Help with impute.knn
ear all, This is my first time using this listserv and I am seeking help from the expert. OK, here is my question, I am trying to use impute.knn function in impute library and when I tested the sample code, I got the error as followingt: Here is the sample code: library(impute) data(khanmiss) khan.expr <- khanmiss[-1, -(1:2)] ## ## First example ## if(exists(".Random.seed"))
2008 Jul 07
3
rsh problems in CentOS 5.2 (was "cvs command failure on 5.2")
Okay, I've narrowed the problem down quite a bit. As previously reported, in CentOS 5.2 I get this: $ cvs log Makefile poll: protocol failure in circuit setup cvs [log aborted]: end of file from server (consult above messages if any) Turns out this is a problem with rsh: $ rsh khan ls connect to address 10.24.15.48 port 544: Connection refused Trying krb4 rsh... connect to address
2014 Oct 15
2
[LLVMdev] using -debug-ir to map identify IR mapping
Adding the flags in an opt pass seems to do the trick. I added the flags as follows M.addModuleFlag(llvm::Module::Warning, "Dwarf Version", 3); M.addModuleFlag(llvm::Module::Error, "Debug Info Version", llvm::DEBUG_METADATA_VERSION); llvm-dwarfdump and addr2line now point at a line in .ll files, not the source files. Thanks! /Muneeb On 15 Oct
2014 Oct 15
2
[LLVMdev] using -debug-ir to map identify IR mapping
On Wed, Oct 15, 2014 at 9:04 AM, Adrian Prantl <aprantl at apple.com> wrote: > I have no experience with debug-ir, but is it possible that the debug-ir > pass never sets the debug info version? There should be a named metadata > node > !llvm.module.flags = !{..., !123} > !123 = metadata !{i32 1, metadata !"Debug Info Version", i32 2} > in the .ll output. If
2014 Oct 15
2
[LLVMdev] using -debug-ir to map identify IR mapping
Yes, I am using opt and llc from the same version (3.5). I know that there were issues with debug-ir in 3.4. I have explored the source tree myself for 3.5 and I know that the pass -debug-ir does kick in with opt. But I have no clue of what happens with the debug information in (and after) the llc pass. /Muneeb On 15 Oct 2014, at 17:14, David Blaikie <dblaikie at gmail.com> wrote: >
2016 Mar 04
3
vignette index
Dear helpers, I have multiple vignette files for a package, and I would like to have the "right" order of these files when displayed online. For instance, see below: https://cran.r-project.org/web/packages/bst/index.html The order of vignette links on CRAN is different from what I hoped for: > vignette(package="bst") Vignettes in package 'bst': pros
2015 Nov 20
2
Cannot boot
I can boot from DVD. I deleted kernel. Thought it will fix the problem. Now I can see rescue menu only. Kernel source is there. How to get back kernel. On Friday, November 20, 2015, Arun Khan <knura9 at gmail.com> wrote: > On Fri, Nov 20, 2015 at 2:18 PM, Siva Prasad Nath > <shivaprasadnath21 at gmail.com <javascript:;>> wrote: > > Hi, > > My server not able
2007 Jan 27
4
Xapian vs Lucene
Hello, It's probably quite troll-risky to put a title like this, but did anyone take the trouble to compare Lucene to Xapian and make a list of differences? As I told the list at the end of last year, I'm going to have to integrate an indexing/search engine in the coming weeks or months. It will be integrated to Dokeos, an open-source e-learning application in PHP, and at the moment we
2012 Nov 07
1
Solr 4.0 - lucene - FTS
Hi Timo, As one who is interested in implementing FTS sometime in the future, I'm curious about what is in store as far as improvements go... Specifically, any plans for implementing immediate/automatic index updates at delivery time? The lack of automatically updated indexes is one downside for its implementation... Also, does the release of Solr 4.0 mean anything for the lucene library
2004 Aug 06
3
ices cvs crashing
Well, hi folks: I am still having this problem with ices crashing regularly. I have upgraded to todays cvs for ices and icecast hoping that would take care of it but no such luck. I am not sure just what is going on. It seems to happen fairly often which is not exactly making my listeners happy. I will include the relevant portion of the ices.log below. I would appreciate any suggestions
2009 Jul 31
5
Creating a column based on data in another column
hello all, I have a data frame and I want to create a column which assigns a letter based upon the value in another column. The data column has velocities ranging from 0 to 1000. So for example, for velocities between 0 and 300 I'd like to assign the letter "A" in the new column, for 300-600, "B" and so on and so forth. How would I do this? Thank you very much! Mehdi
2008 Mar 16
1
LDAP (was: Re: asterisk-users Digest, Vol 44, Issue 48)
If you write a HowTo, would you please insert it into the wiki at http://www.voip-info.org/wiki/index.php?page=LDAP ? Thanks. On Sun, 2008-03-16 at 07:09 -0500, asterisk-users-request at lists.digium.com wrote: > Date: Sat, 15 Mar 2008 18:20:32 -0200 > From: "Gonzalo Servat" <gservat at gmail.com> > Subject: Re: [asterisk-users] LDAP > To: "Asterisk Users Mailing
2007 Aug 04
3
request
I want to calculate the commulative sum of any numeric vector with the following command but this following command does not work "comsum" My question is , how we can calculate the commulative sum of any numeric vector with above command Thanks Zahid Khan Lecturer in Statistics Department of Mathematics Hazara University Mansehra. ---------------------------------
2014 Oct 15
2
[LLVMdev] using -debug-ir to map identify IR mapping
Hi, I am using the -debug-ir pass in LLVM-3.5 opt tool to map binary information back to the IR instead of the source files. I use the opt tool to generate a .ll file. But when I run the llc tool on it to generate an assembly (or object) file, it gives me the following warning warning: ignoring debug info with an invalid version (0) in How can I use the debug-ir functionality to achieve a
2013 Jul 31
1
Linux Plumbers ACPI/PM, PCI Microconference
On 07/30/2013 05:38 PM, Rafael J. Wysocki wrote: > On Wednesday, July 17, 2013 08:31:55 AM Shuah Khan wrote: >> Myron, >> >> On Tue, Jul 16, 2013 at 8:21 PM, Myron Stowe <myron.stowe at gmail.com> wrote: >> >>> >>> Shuah - You brought up the idea about "Converting drivers from Legacy >>> PM ops to dev_pm_ops"; would you like to
2013 Jul 31
1
Linux Plumbers ACPI/PM, PCI Microconference
On 07/30/2013 05:38 PM, Rafael J. Wysocki wrote: > On Wednesday, July 17, 2013 08:31:55 AM Shuah Khan wrote: >> Myron, >> >> On Tue, Jul 16, 2013 at 8:21 PM, Myron Stowe <myron.stowe at gmail.com> wrote: >> >>> >>> Shuah - You brought up the idea about "Converting drivers from Legacy >>> PM ops to dev_pm_ops"; would you like to
2016 Mar 21
2
Loss of devices registration (pjsip)
I have added CID name prefix on inbound route. and it works fine :) now I can simply forward five incoming routes to one extension. and as far as I guess, if I add CID name prefix for every number. it should work :) thanks alot :) On Tue, Mar 22, 2016 at 2:28 AM, somsad khan <ctrlz.network at gmail.com> wrote: > hello Pete Mundy, > > thanks alot for your idea and reply. but
2007 Feb 15
3
Proximity searching in rdig ferret
Lucene has a syntax "foo bar"~10 for finding foo within 10 words of bar. Does ferret support this feature? (the ~ is used for fuzzy queries) Does rdig? This could be a deal breaker for me ''cos I really need proximity searches -- Posted via http://www.ruby-forum.com/.