179 questions
No questions match those filters.
A false positive in your Bloom filter causes a unique p...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansFalse positives in a Bloom filter result in the loss of unique paragraphs, which is difficult to detect from the output alone. At a false positive rate of 10^-6, you lose approximately n * 10^-6 paragraphs. To audit for calibration drift, perform an exact hash-set lookup on a random sample of discarded items. If the observed false positive rate is higher than intended, it indicates that the corpus size ‘n’ has exceeded the filter’s design capacity or the bit array ‘m’ was sized too small. Because Bloom filters cannot be resized in-place, the only solution is to rebuild the filter.