Live data from Hacker News

Information Retrieval papers you need to read

scienceforseo.com

11–16 of 16 posts

Re: Information Retrieval papers you need to read

#11
post #5

Earlier quoted context omitted.

I'm doing the same right now. Massive scraping plus "gisting" or document summarization. You're pretty much on the right track; half of those papers are industry standards (my browser marked them as "visited" automatically :-)

So which of those would be a good starting point for someone who has no idea about IR?

start with LSA: laten semantic indexing, if you want information gisting/summarization.

i'm not worried about IR because I use a good search-engine library: Montezuma, and it's in Common Lisp. It's Java clone is called Lucene :-)

Re: Information Retrieval papers you need to read

#12
post #6

A couple other seminal favorites: Authoritative Sources in a Hyperlinked Environment http://www.cs.cornell.edu/home/kleinber/auth.pdf Probabilistic Latent Semantic Analysis http://www.cs.brown.edu/~th/papers/Hofmann-UAI99.pdf Kleinberg, author of the first paper, is quite possibly my favorite computer scientist. He's been on the leading edge of a lot of largely disjoint areas of research on the information structure…

The "rebel king" is also a phenominal lecturer and a favorite among all cornell CS students.

Re: Information Retrieval papers you need to read

#13
post #11

Earlier quoted context omitted.

So which of those would be a good starting point for someone who has no idea about IR?

start with LSA: laten semantic indexing, if you want information gisting/summarization. i'm not worried about IR because I use a good search-engine library: Montezuma, and it's in Common Lisp. It's Java clone is called Lucene :-)

A Google search gave me this: http://www.cs.utk.edu/~lsi/

Is that what you're talking about?

Re: Information Retrieval papers you need to read

#15
post #5

Earlier quoted context omitted.

I'm doing the same right now. Massive scraping plus "gisting" or document summarization. You're pretty much on the right track; half of those papers are industry standards (my browser marked them as "visited" automatically :-)

So which of those would be a good starting point for someone who has no idea about IR?

Honestly, I don't think LSI is a good place to start. It'd be better to start a few steps back with basic IR algorithms and data structures like tries, inverted indexes, stemming, string search algorithms like KMP and Boyer-Moore.

When I got started with IR I used Baeza-Yate's "Modern Information Retrieval"; Manning's new "Introduction to Information Retrieval" looks great, though I haven't gotten my hands on a copy yet. Here are the Wikipedia pages on the concepts above:

http://en.wikipedia.org/wiki/Trie

http://en.wikipedia.org/wiki/Inverted_index

http://en.wikipedia.org/wiki/Stemming

http://en.wikipedia.org/wiki/Knuth–Morris–Pratt_algorithm

http://en.wikipedia.org/wiki/Boyer–Moore_string_search_algor...

Re: Information Retrieval papers you need to read

#16
Also you guys surely you would like this book too: http://www-csli.stanford.edu/~hinrich/information-retrieval-... http://nlp.stanford.edu/IR-book/pdf/irbookprint.pdf

Is a very readable and comprehensive introduction of the field. Besides it is recent and covers in a depth several current hot topics.

here is a review the book http://glinden.blogspot.com/2009/02/book-review-introduction...

Post reply on HN