@bdelab/jscat - v5.3.2
    Preparing search index...

    Interface StopIfSEMeasurementBelowThresholdInput

    Interface for input parameters to EarlyStopping classes.

    interface StopIfSEMeasurementBelowThresholdInput {
        logicalOperation?: "and" | "or" | "only" | "AND" | "OR" | "ONLY";
        patience?: CatMap<number>;
        seMeasurementThreshold: CatMap<number>;
        tolerance?: CatMap<number>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    logicalOperation?: "and" | "or" | "only" | "AND" | "OR" | "ONLY"

    The logical operation to use to evaluate multiple stopping conditions

    patience?: CatMap<number>

    Number of items to wait for before triggering early stopping

    seMeasurementThreshold: CatMap<number>

    Stop if the standard error of measurement drops below this level

    tolerance?: CatMap<number>

    Tolerance for standard error of measurement drop