Interface SpeechWordInfoOrBuilder (0.52.0)

public interface SpeechWordInfoOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getConfidence()

public abstract float getConfidence()

The Speech confidence between 0.0 and 1.0 for this word. A higher number indicates an estimated greater likelihood that the recognized word is correct. The default of 0.0 is a sentinel value indicating that confidence was not set.

This field is not guaranteed to be fully stable over time for the same audio input. Users should also not rely on it to always be provided.

float confidence = 4;

Returns
TypeDescription
float

The confidence.

getEndOffset()

public abstract Duration getEndOffset()

Time offset relative to the beginning of the audio that corresponds to the end of the spoken word. This is an experimental feature and the accuracy of the time offset can vary.

.google.protobuf.Duration end_offset = 2;

Returns
TypeDescription
Duration

The endOffset.

getEndOffsetOrBuilder()

public abstract DurationOrBuilder getEndOffsetOrBuilder()

Time offset relative to the beginning of the audio that corresponds to the end of the spoken word. This is an experimental feature and the accuracy of the time offset can vary.

.google.protobuf.Duration end_offset = 2;

Returns
TypeDescription
DurationOrBuilder

getStartOffset()

public abstract Duration getStartOffset()

Time offset relative to the beginning of the audio that corresponds to the start of the spoken word. This is an experimental feature and the accuracy of the time offset can vary.

.google.protobuf.Duration start_offset = 1;

Returns
TypeDescription
Duration

The startOffset.

getStartOffsetOrBuilder()

public abstract DurationOrBuilder getStartOffsetOrBuilder()

Time offset relative to the beginning of the audio that corresponds to the start of the spoken word. This is an experimental feature and the accuracy of the time offset can vary.

.google.protobuf.Duration start_offset = 1;

Returns
TypeDescription
DurationOrBuilder

getWord()

public abstract String getWord()

The word this info is for.

string word = 3;

Returns
TypeDescription
String

The word.

getWordBytes()

public abstract ByteString getWordBytes()

The word this info is for.

string word = 3;

Returns
TypeDescription
ByteString

The bytes for word.

hasEndOffset()

public abstract boolean hasEndOffset()

Time offset relative to the beginning of the audio that corresponds to the end of the spoken word. This is an experimental feature and the accuracy of the time offset can vary.

.google.protobuf.Duration end_offset = 2;

Returns
TypeDescription
boolean

Whether the endOffset field is set.

hasStartOffset()

public abstract boolean hasStartOffset()

Time offset relative to the beginning of the audio that corresponds to the start of the spoken word. This is an experimental feature and the accuracy of the time offset can vary.

.google.protobuf.Duration start_offset = 1;

Returns
TypeDescription
boolean

Whether the startOffset field is set.