Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
3k views

Call the LLVM Jit from c program

I am new with LLVM and i just played around with it for a couple of days. I generated a bc file with the online compiler on llvm.org and i would like to know if it was possible to load this bc file ...
5
votes
2answers
280 views

Fast in-memory inverted index

I am looking for a fast in-memory implementation of a generic inverted index. All I need is to store features with weights for a couple million entities and use the inverted index to compute ...
2
votes
0answers
23 views

example to train hidden markov model using mallet ( machine learning for langauge engineering)

I need to have a library of hmm for sequence modeling to model labeling of sentences in text. For this i explored to example of MALLET source code "TrainHMM" but stucked with not having training and ...
2
votes
1answer
53 views

Personalized Search with Lucene

I'd like to ask questions about personalized search. I'm about to design/implement a personalized search with Lucene. I did some googling about that, but didn't seem to find module/tools ready to use ...
2
votes
1answer
566 views

program ir receiver

I am thinking to buy an IR receiver for my HTPC. I wonder if I can make a software for my IR Receiver myself. How does ir receiver work on windows ? I mean, if I install IR receiver driver and ...
1
vote
1answer
79 views

Better source for query disambiguation other than WordNet

for example, I'm searching " buy apple " in my search engine, but how can I know the apple here stands for the fruit apple or the apple company? I have done some trys using WordNet, but for the ...
1
vote
1answer
434 views

Help Please…How to control any IR based home applience using iphone? will it require SSH/UPnP based application for iphone?

I want to use ssh protocol. I want to make an app to transmit signal that would ultimately converted to control IR based home appliences (like controlled by IR remote control. i.e TV) This stuff is ...
1
vote
2answers
603 views

list of infrared codes?

I have an app that controls an IR emitter and would like to get access to the universe of IR codes. Is this something that is freely available, or is it a subscription? (Companies like harmony and ...
0
votes
0answers
13 views

Linux IrDA printing

I have a USB IrDA that I got working with my IrDA printer (SiPiX compact printer A6) on the Windows side, using default 4000000 speed and 1.0ms turn-around time (in the driver config). The USB IrDA ...
0
votes
1answer
27 views

How would I 'decode' an IR signal?

I am looking to figure out how my remote communicates with my LCD tv for a school project. I need to be able to replicate this signal so I can control it from my own IR emitter. So I need to figure ...
0
votes
1answer
38 views

german date format jrxml

Hi I am new in jasper report how to print date in german format? <textFieldExpression class="java.lang.String"><![CDATA["München, den " + $P{TO_DATE}]]></textFieldExpression> ...
0
votes
0answers
67 views

kyoto cabinet scan_parallel not really parallel?

I just spent a day creating an abstraction layer to kyotodb to remove global locks from my code, I was busy porting my algorithms to this new abstraction layer when I discover that scan_parallel isn't ...
0
votes
1answer
100 views

Is there a way to control my iOS app using the Apple Remote?

I think the title of this question is sufficient. But, just in case there are doubts about what an Apple Remote is, click here.
0
votes
1answer
223 views

How to receive IR signal in PIC18F

I need to receive signal from IR transmitter LED. I am not sure how to program the microcontroler. I am looking for some concept, how to do that. Whether I have to use A/D conversion? How to ...
0
votes
3answers
258 views

Extract news links from news website

Is there any reliable method to find out the collection of links which is directed us to detail news page. in other word after visiting the first page of website I just want those links that refer to ...
0
votes
2answers
691 views

How does Lucene compute multifield score?

Here's Lucene scoring equation: score(q,d) = coord(q,d) · queryNorm(q) · ∑ ( tf(t in d) · idf(t)2 · t.getBoost() · norm(t,d) ) What about multifield scoring? Does the score gets directly ...