FP-Devicer - v2.0.2
    Preparing search index...

    Interface LshOptions

    Tuning parameters for the LSH candidate index.

    interface LshOptions {
        numBands?: number;
        numHashes?: number;
    }
    Index

    Properties

    numBands?: number

    Number of bands used for band-partitioning. Must evenly divide numHashes. Fewer bands → higher similarity threshold before two fingerprints become candidates (lower recall, higher precision).

    16
    
    numHashes?: number

    Number of MinHash functions (signature length). Higher values → more accurate Jaccard estimates, more memory.

    128