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

    Class StopOnSEMeasurementPlateau

    Class implementing early stopping based on a plateau in standard error of measurement.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    _earlyStop: boolean
    _logicalOperation: "and" | "or" | "only"
    _nItems: CatMap<number>
    _patience: CatMap<number>
    _seMeasurements: CatMap<number[]>
    _tolerance: CatMap<number>

    Accessors

    • get earlyStop(): boolean

      Returns boolean

    • get evaluationCats(): string[]

      Returns string[]

    • get logicalOperation(): "and" | "or" | "only"

      Returns "and" | "or" | "only"

    • get seMeasurements(): CatMap<number[]>

      Returns CatMap<number[]>

    Methods

    • Abstract method to be implemented by subclasses to evaluate a single stopping condition.

      Parameters

      • catToEvaluate: string

        The name of the cat to evaluate for early stopping.

      Returns boolean

    • Abstract method to be implemented by subclasses to update the early stopping strategy.

      Parameters

      • cats: CatMap<Cat>

        A map of cats to update.

      • OptionalcatToEvaluate: string

      Returns void