FreakingGenius - v0.1.0
    Preparing search index...

    Interface RecognitionResult

    The result of classifying a single stroke group.

    interface RecognitionResult {
        alternatives: { confidence: number; label: SymbolLabel }[];
        confidence: number;
        groupId: string;
        label: SymbolLabel;
    }
    Index

    Properties

    alternatives: { confidence: number; label: SymbolLabel }[]

    Up to 3 alternative labels with their confidence scores.

    confidence: number

    Confidence score for label in [0, 1].

    groupId: string

    ID of the stroke group that was classified.

    Most likely symbol label.