Interface PhraseSetOrBuilder (4.36.0)

public interface PhraseSetOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getBoost()

public abstract float getBoost()

Hint Boost. Positive value will increase the probability that a specific phrase will be recognized over other similar sounding phrases. The higher the boost, the higher the chance of false positive recognition as well. Negative boost values would correspond to anti-biasing. Anti-biasing is not enabled, so negative boost will simply be ignored. Though boost can accept a wide range of positive values, most use cases are best served with values between 0 (exclusive) and 20. We recommend using a binary search approach to finding the optimal value for your use case as well as adding phrases both with and without boost to your requests.

float boost = 4;

Returns
TypeDescription
float

The boost.

getName()

public abstract String getName()

The resource name of the phrase set.

string name = 1;

Returns
TypeDescription
String

The name.

getNameBytes()

public abstract ByteString getNameBytes()

The resource name of the phrase set.

string name = 1;

Returns
TypeDescription
ByteString

The bytes for name.

getPhrases(int index)

public abstract PhraseSet.Phrase getPhrases(int index)

A list of word and phrases.

repeated .google.cloud.speech.v1p1beta1.PhraseSet.Phrase phrases = 2;

Parameter
NameDescription
indexint
Returns
TypeDescription
PhraseSet.Phrase

getPhrasesCount()

public abstract int getPhrasesCount()

A list of word and phrases.

repeated .google.cloud.speech.v1p1beta1.PhraseSet.Phrase phrases = 2;

Returns
TypeDescription
int

getPhrasesList()

public abstract List<PhraseSet.Phrase> getPhrasesList()

A list of word and phrases.

repeated .google.cloud.speech.v1p1beta1.PhraseSet.Phrase phrases = 2;

Returns
TypeDescription
List<Phrase>

getPhrasesOrBuilder(int index)

public abstract PhraseSet.PhraseOrBuilder getPhrasesOrBuilder(int index)

A list of word and phrases.

repeated .google.cloud.speech.v1p1beta1.PhraseSet.Phrase phrases = 2;

Parameter
NameDescription
indexint
Returns
TypeDescription
PhraseSet.PhraseOrBuilder

getPhrasesOrBuilderList()

public abstract List<? extends PhraseSet.PhraseOrBuilder> getPhrasesOrBuilderList()

A list of word and phrases.

repeated .google.cloud.speech.v1p1beta1.PhraseSet.Phrase phrases = 2;

Returns
TypeDescription
List<? extends com.google.cloud.speech.v1p1beta1.PhraseSet.PhraseOrBuilder>