Skip to content

In computer science, an inverted index is a database index storing a mapping from content, such as words or numbers, to its locations in a table, or in a document or a set of documents.

License

Notifications You must be signed in to change notification settings

mranuraggarg/Inverted-Index

Repository files navigation

Inverted-Index

Introduction

Main purpose of Inverted Index is to facilitate fast Full text search. For detailed explaination visit Wikipedia Article - Inverted Index

Implementation

We will implement the functioanlity with the help of five functions, namely:

  1. load_document
  2. build_inverted_index
  3. query
  4. dump
  5. load

and using it further inside the Python Class:

  1. InvertedIndex

At the end we will add the command line functionality using argparse

About

In computer science, an inverted index is a database index storing a mapping from content, such as words or numbers, to its locations in a table, or in a document or a set of documents.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages