Logo

0x5a.live

for different kinds of informations and explorations.

GitHub - seiflotfy/count-min-log: Go implementation of Count-Min-Log

Go implementation of Count-Min-Log. Contribute to seiflotfy/count-min-log development by creating an account on GitHub.

Visit SiteGitHub - seiflotfy/count-min-log: Go implementation of Count-Min-Log

GitHub - seiflotfy/count-min-log: Go implementation of Count-Min-Log

Go implementation of Count-Min-Log. Contribute to seiflotfy/count-min-log development by creating an account on GitHub.

Powered by 0x5a.live ๐Ÿ’—

Count-Min-Log

GoDoc

Count-Min-Log sketch: Approximately counting with approximate counters - Guillaume Pitel & Geoffroy Fouquier

TL;DR: Count-Min-Log Sketch for improved Average Relative Error on low frequency events

Count-Min Sketch is a widely adopted algorithm for approximate event counting in large scale processing. However, the original version of the Count-Min-Sketch (CMS) suffers of some deficiences, especially if one is interested in the low-frequency items, such as in text- mining related tasks. Several variants of CMS have been proposed to compensate for the high relative error for low-frequency events, but the proposed solutions tend to correct the errors instead of preventing them. In this paper, we propose the Count-Min-Log sketch, which uses logarithm-based, approximate counters instead of linear counters to improve the average relative error of CMS at constant memory footprint.

This version implements the 16 bit register version. Will add back the 8-bit version soon.

Example Usage

import cml

...
sk, err := cml.NewDefaultSketch()
sk.IncreaseCount([]byte("scott pilgrim"))
...

sk.Frequency([]byte("scott pilgrim")) // ==> 1

GoLang Resources

are all listed below.

Resources

listed to get explored on!!

Made with โค๏ธ

to provide different kinds of informations and resources.