-
From [this excellent blog post](http://mybiasedcoin.blogspot.com/2014/10/cuckoo-filters.html):
> If you want to avoid a technical discussion, all you need to know is that for reasonably large sized s…
-
http://courses.cs.washington.edu/courses/cse521/15sp/slides/LSH-CACM.pdf
See bottom of page 119 for LSH pseudocode and see section 4 for a new implementation.
My implementation might not be the sa…
-
see comment here:
https://github.com/twitter/algebird/pull/739#discussion_r343814345
reversing the order of semigroup preserves it being a semigroup, as does putting a constant element between e…
-
`plus(Map("hey" -> 0), Map()) == Map()` which surprises people (that zeros are removed). In many cases, you want this, in many cases you don't.
We could change the default, but that might break peopl…
-
See section 3.3
http://www.vldb2005.org/program/paper/tue/p13-cormode.pdf
this paper contends that under some distributions it is better:
http://www.cise.ufl.edu/~adobra/Publications/sigmod-2007-sta…
-
It would be nice to have this awesome project be integrated with saddle.github.io .
We would have a full ipython pandas environment like in scala.
Not sure if it works off the shelf. But Il'll definit…
-
Been poking arond with the Algebird 0.12.0 release (which included fix: https://github.com/twitter/algebird/pull/472/files). Noticed that the behavior for QTree[Long] and QTree[Double] is fairly diffe…
-
Here's an example of the breakage:
```scala
import com.twitter.algebird._
val a = SparseVector(Map.empty, 0, 5)
val b = AdaptiveVector.fromVector(Vector(1), 0)
Monoid.zeroEquiv[AdaptiveVector[I…
-
This would help us diagnose how much it helps us, and when it might be disabled (saving work).
-
I suspect this is a sort of edge case in the HLL approximation algo, but it seems there should be a better way to surface this than this exception.
I've reconstructed the case as reported, coming up …