Skip to content

sidcode/information-retrieval

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Git help to be able to contribute

git clone https://github.com/sidcode/information-retrieval.git

making changes to the repo

git pull // This step is very important. Get the latest updates from remote repo before pushing your own
git add .
git commit -m "mention the changes you make here"
git push

#Important - Regarding NLTK with Python

Follow these steps -

pip install nltk
pip3 install nltk

In a Python interpretor-

import nltk
nltk.word_tokenize("this is a string") # this won't work directly

# download the package punkt to make this work 
# we'll use similar packages throughout the assignment

nltk.download()

# type punkt when prompted

information-retrieval

IR assignment

In this assignment you will design and implement your own Text based information retrieval system. The assignment has two phases.

In Phase I, you will build the indexing component, which will take a large collection of text and produce a searchable, persistent data structure.

In Phase II, you will add the searching component, according to Boolean Retrieval or Vector Space Model or Probabilistic Model.

The project is to be done in a team of 3 (or 5?) members. All the team members are expected to contribute to all aspects of the assignment: design, implementation, documentation, and testing.

Phase I

Phase I will have two major components

  • Tokenization
  • Normalization

Note that in order to fully implement the vector space model or Probabilistic Model you may need to retain several pieces of information about the documents in the dictionary / document location list / inverted index data structures such as the total number of documents, the maximum term frequency for each document, the length of the weight vector for each document, etc. Try to save values that you anticipate are needed to calculate.

Phase I resources

You may find the following resources useful in Phase I: Corpus: You may pick up corpus from any online resource. The following are few links to corpus

  1. http://trec.nist.gov/data/docs_eng.html
  2. https://catalog.ldc.upenn.edu/LDC2015MDP
  3. https://snap.stanford.edu/data/wiki-meta.html
  4. Stanford Large Network Dataset Collection (SNAP)
  5. Social Computing Data Repository
  6. Twitter posts
  7. E-Commerce
  8. online reviews
  9. “Twitter Census”

Tokenization : Tokenize the terms in the document.

For this you can use any standard tokenizer. Python’s NLTK package provides tools for tokenizing and normalizing the terms. http://nlp.stanford.edu/software/tokenizer.shtml (tm package of R also has this feature). Stemmer for normalization: Martin Porter’s web page http://tartarus.org/~martin/PorterStemmer/ contains implementations of the Porter Stemmer in a number of languages.

Phase II

For Phase II, you will write a program which will accept queries from the user and search for documents using the data structures produced in Phase I. Implement the search using Boolean or Vector Space or Probabilistic model to rank the documents, carefully choosing the weighting function. Your search interface must allow the user to:

  1. Input a search query.  
  2. View a list of search results. Each result should display an internal document ID (sequence number), a title or URL depending on your dataset used.

Deliverables

Design document

Describe your application’s architecture and major data structures used at various stages.

Code

Your code needs to be well documented with comments

Readme file

You also need to include a README.txt file that describes how to compile your program and run it on various datasets and source of your dataset along with the precision and recall for various test cases that were used to test the application.

Submit your solution as a zip file to [email protected]

You are also expected to demo your program including an explanation of your evaluation results to us as per the schedule which will be made available.

Implementation: You may code your project in any programming language of you choice (such as C#, Java or Python).

Scheme of evaluation: Sl No. Task Marks

  • Tokenizing and normalizing (3)
  • Building dictionary efficiently (5)
  • Building index (5)
  • Retrieving the data accurately (5)
  • Viva (2)

Releases

No releases published

Packages

No packages published

Languages