keenasr-web - v2.0.5
    Preparing search index...

    Interface ASRResult

    ASRResult represents results of the recognition.

    interface ASRResult {
        cleanText: string;
        confidence: number;
        text: string;
        words: ASRWord[];
    }
    Index

    Properties

    cleanText: string

    Recognition result clean text; all tokens of type are removed (e.g. <SPOKEN_NOISE>, etc.)

    confidence: number

    Overall confidence score in [0,1] range.

    NOTE: partial results do not have this value set.

    text: string

    Text of the recognition result.

    words: ASRWord[]

    An Array of ARSRWord objects that comprise this result.

    NOTE: partial results do not have this value set.