meta icon indicating copy to clipboard operation
meta copied to clipboard

language model efficient top_k

Open smassung opened this issue 9 years ago • 2 comments

(as referenced in #107)

smassung avatar Sep 11 '15 01:09 smassung

See if we can store context -> (id, prob), (id, prob), ... in the forward index format.

smassung avatar Jan 30 '16 14:01 smassung

You'd need a map from context -> id though, which is probably too expensive. The postings format requires contiguous ids, too, so just saying id = hash(context) isn't sufficient.

skystrife avatar Jan 31 '16 13:01 skystrife