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

XPSSpeechPreprocessStats

import type { XPSSpeechPreprocessStats } from "https://googleapis.deno.dev/v1/language:v2.ts";
interface XPSSpeechPreprocessStats {
dataErrors?: XPSDataErrors[];
numHumanLabeledExamples?: number;
numLogsExamples?: number;
numMachineTranscribedExamples?: number;
testExamplesCount?: number;
testSentencesCount?: number;
testWordsCount?: number;
trainExamplesCount?: number;
trainSentencesCount?: number;
trainWordsCount?: number;
}

§Properties

§
dataErrors?: XPSDataErrors[]
[src]

Different types of data errors and the counts associated with them.

§
numHumanLabeledExamples?: number
[src]

The number of rows marked HUMAN_LABELLED

§
numLogsExamples?: number
[src]

The number of samples found in the previously recorded logs data.

§
numMachineTranscribedExamples?: number
[src]

The number of rows marked as MACHINE_TRANSCRIBED

§
testExamplesCount?: number
[src]

The number of examples labelled as TEST by Speech xps server.

§
testSentencesCount?: number
[src]

The number of sentences in the test data set.

§
testWordsCount?: number
[src]

The number of words in the test data set.

§
trainExamplesCount?: number
[src]

The number of examples labeled as TRAIN by Speech xps server.

§
trainSentencesCount?: number
[src]

The number of sentences in the training data set.

§
trainWordsCount?: number
[src]

The number of words in the training data set.