You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue concerns fuzzy deduplication of text pairs.
Find what's the tradeoff between memory, speed, accuracy when varying r and b.
We need to find a way to use way less than 9k because it requires too much CPU resources.
The text was updated successfully, but these errors were encountered:
fine-tuning the parameters rows per band and number of bands in MinHash depends heavily on the data and the specific use case, such as fuzzy deduplication of text pairs in your scenario. These parameters control the trade-off between accuracy and performance (speed and memory usage):
Accuracy: Increasing r and b generally increases the accuracy of the MinHash similarity estimates, as more hash functions are utilized, capturing more aspects of the data.
Speed: However, higher values of r and b can slow down the computation, as more hash functions need to be evaluated.
Memory Usage: Likewise, more memory is required to store the additional hash values.
The ideal settings for r and b could vary depending on:
The size and nature of your dataset.
The level of similarity/dissimilarity among text pairs in your dataset.
The computational resources available to you.
Your tolerance for error versus your need for speed and lower memory usage.
An empirical approach, where you run experiments with different values of r and b on a representative subset of your data, can be very informative. By analyzing how the performance metrics (speed, memory usage, and accuracy) change with different settings, you can better understand the trade-offs and find an optimal configuration for your specific use case.
This issue concerns fuzzy deduplication of text pairs.
Find what's the tradeoff between memory, speed, accuracy when varying r and b.
We need to find a way to use way less than 9k because it requires too much CPU resources.
The text was updated successfully, but these errors were encountered: