Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

XPSSpeechEvaluationMetricsSubModelEvaluationMetric

import type { XPSSpeechEvaluationMetricsSubModelEvaluationMetric } from "https://googleapis.deno.dev/v1/language:v2.ts";
interface XPSSpeechEvaluationMetricsSubModelEvaluationMetric {
biasingModelType?:
| "BIASING_MODEL_TYPE_UNSPECIFIED"
| "COMMAND_AND_SEARCH"
| "PHONE_CALL"
| "VIDEO"
| "DEFAULT";
isEnhancedModel?: boolean;
numDeletions?: number;
numInsertions?: number;
numSubstitutions?: number;
numUtterances?: number;
numWords?: number;
sentenceAccuracy?: number;
wer?: number;
}

§Properties

§
biasingModelType?: "BIASING_MODEL_TYPE_UNSPECIFIED" | "COMMAND_AND_SEARCH" | "PHONE_CALL" | "VIDEO" | "DEFAULT"
[src]

Type of the biasing model.

§
isEnhancedModel?: boolean
[src]

If true then it means we have an enhanced version of the biasing models.

§
numDeletions?: number
[src]
§
numInsertions?: number
[src]
§
numSubstitutions?: number
[src]
§
numUtterances?: number
[src]

Number of utterances used in the wer computation.

§
numWords?: number
[src]

Number of words over which the word error rate was computed.

§
sentenceAccuracy?: number
[src]

Below fields are used for debugging purposes

§
wer?: number
[src]

Word error rate (standard error metric used for speech recognition).