I am new to IR techniques.

I looking for a Java based API or tool that does the following.

  1. Download the given set of URLs
  2. Extract the tokens
  3. Remove the stop words
  4. Perform Stemming
  5. Create Inverted Index
  6. Calculate the TF-IDF

Kindly let me know how can Lucene be helpful to me.

Regards Yuvi

link|improve this question
feedback

2 Answers

Actually, TF-IDF is a score given to a term in a document, rather than the whole document. If you just want the TF-IDFs per term in document, maybe use this method, without ever touching Lucene. If you want to create a search engine, you need to do a bit more (such as extracting text from the given URLs, whose corresponding documents would probably not contain raw text). If this is the case, consider using Solr.

link|improve this answer
feedback

You could try the Word Vector Tool - it's been a while since the latest release, but it works fine here. It should be able to perform all of the steps you mention. I've never used the crawler part myself, however.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.