Giter Club home page Giter Club logo

text-indexing's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

text-indexing's Issues

Merge-based algorithm

Todo list for implementing the merge based algorithm:

  • Computing the IDF: IDF must be computed at the end (after all batches).tf_per_doc (mapping each word to a dictionary mapping docid to count) might be too large for a large set of files as a parameter to compute the IDF. We need a data structure like a map mapping each word to the number of documents it appears in (equivalent to a map mapping each word to len(tf_per_doc[word]))

  • Storing of non-finalized PL: for the reason above, we should store each batched PL with their term frequency as score (non multiplied by the IDF, as we won't have its value yet).

  • This means two things: To make each batch usable, we need to keep two separate files: a fully computed PL (with the current IDF) and a un-finalized PL (only with the frequency as a score). The un-finalized PL will be used with the next batch. To keep track of the current IDF, we also need to store the mapping to each word to the number of docs in which they appear.

  • Merging process: for the merging, we will use the un-finalized PL (on disk) and the computed PL for this batch (in memory). We read line by line (word by word) the on-disk PL, if the same word appears in the current PL we merge both lines. We save two versions of the line: one with IDF multiplication, one without. We do that for each line

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.