Live data from Hacker News

Viewing profile — reivalc

reivalc

HN member
Joined
Sun, Apr 11, 2021, 8:07 PM UTC
HN karma
4
Public activity
4 items

About reivalc

No profile information was provided.

Recent public activity

  1. comment
    Comment #26795034

    Relevancy - I'd guess it's difficult to measure, due to the large dataset, the large number of possible search terms, and large number of possible results.

  2. comment
    Comment #26792554

    Neat! I wonder if you quantified the performance of your search somehow? I guess labelling data for that would be laborious.

  3. comment
    Comment #26777342

    Nice! > found the Python hash() function returns different outputs for the same input when you restart the interpreter I wasn't aware of this >>

  4. comment
    Comment #26772995

    thanks for the post, it inspired this naive code: class BloomFilter: def __init__(self, size): self.f = [0] * size def contains(self, s): h1, h2, h3 = self.hashes(s) if self.f[h1] …