Google

Archives

Computer Science Department Journal Rankings

Computer Science Department Journal Rankings

Artificial Intelligence

Premium

Artificial Intelligence Computational Linguistics IEEE Trans on Pattern Analysis and Machine Intl IEEE Trans on Robotics and Automation IEEE Trans on Image Processing Journal of AI Research Neural Computation Machine Learning Intl Jnl of Computer Vision IEEE Trans on Neural Networks  

Leading

Artificial Intelligence Review ACM Transactions on Asian Language Information Processing AI Magazine Annals of Mathematics and AI Applied Artificial Intelligence Applied Intelligence Artificial Intelligence in [...]

SIGIR 2010 Full Paper List

SIGIR 2010, Geneva July 19 – 23
1  Session: Retrieval Models and Ranking
Chair:  Djoerd Hiemstra (University of Twente)

30     Estimation of Statistical Translation Models Based on Mutual Information for Ad Hoc Information Retrieval
Maryam Karimzadehgan, ChengXiang Zhai (University of Illinois at Urbana-Champaign)

502   DivQ: [...]

Be care of RangeQuery in Lucene

Reminder, Lucene has many Query types

– TermQuery, BooleanQuery,

ConstantScoreQuery, MatchAllDocsQuery,

MultiPhraseQuery, FuzzyQuery,

WildcardQuery, RangeQuery, PrefixQuery,

PhraseQuery, Span*Query,

DisjunctionMaxQuery, etc.

There is a bunch of Query implements in Lucene, which makes lucene very powerful in search. However, you should be very care of using Query like RangeQuery, especially when the size of your collection is very large.

As you know that lucene will [...]

The Ivory Toolkit with the SMRF Retrieval Engine (under Hadoop Framework)

As the Increase of IR dataset in size, it seems that a powerful platform for rapidly indexing and searching is need.  Ivory is a newly announced search platform developed on the basis of Hadoop. It could be a good choice when we come to billion era.

This would also be a future step for our SaberLucene Project (under release). Beside MapReduce framework, [...]

Trie-based approximate autocomplete implementation with support for ranks and synonyms

Thoughts on Lucene, Solr, Nutch and vertical search 
Trie-based approximate autocomplete implementation with support for ranks and synonyms

Posted by Kelvin on 01 Jul 2009 at 02:30 am | Tagged as: programming

The problem of auto-completing user queries is a well-explored one.

For example,
Type less, find more: fast autocompletion search with a succinct index
http://stevedaskam.wordpress.com/2009/06/07/putting-autocomplete-data-structure-to-the-test/
http://suggesttree.sourceforge.net/
http://sujitpal.blogspot.com/2007/02/three-autocomplete-implementations.html

However, there’s been little written [...]