fxt icon indicating copy to clipboard operation
fxt copied to clipboard

Add L2p/Lkp to the feature set

Open lgrz opened this issue 5 years ago • 0 comments

From Efficient and Effective Higher Order Proximity Modeling. The intervals for L2p, Lkp and Lkfp methods are computed using lazy/eager plane sweep Lu et al, (CIKM 15).

Computing intervals. There are a number of options for computing intervals which can impact efficiency, details are in the CIKM paper. The options are:

  • Eager plane sweep
  • Lazy plane sweep
  • Traversal of inverted file (with positional information)
  • Traversal of direct file

Reported in the CIKM paper is that traversal over the inverted file works best for shorter documents, while using the direct file serves better with longer documents.

An ideal solution would be to support all combinations of methods. However currently there is no support for positional inverted index files, so that would need to be added for inverted file traversal.

With this in mind a first pass on implementing this will use the direct file approach and consider the inverted file approach afterwards.

lgrz avatar Apr 16 '20 05:04 lgrz