Skip to content

A pure-Python count-min sketch, fast and accurate.

License

Notifications You must be signed in to change notification settings

Chaimmoon/CountMinSketch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#CountMinSketch

This is a pure-Python count-min sketch. It's pretty fast and accurate. Try it out!

##Usage

>>> cms = CountMinSketch(200, 500)
>>> cms['foo']
0
>>> cms['foo'] += 5
>>> cms['foo']
5

About

A pure-Python count-min sketch, fast and accurate.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%