Class: Google::Cloud::Speech::V1p1beta1::PhraseSet

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/speech/v1p1beta1/resource.rb

Overview

Provides "hints" to the speech recognizer to favor specific words and phrases in the results.

Defined Under Namespace

Modules: State Classes: AnnotationsEntry, Phrase

Instance Attribute Summary collapse

Instance Attribute Details

#annotations::Google::Protobuf::Map{::String => ::String} (readonly)

Returns Output only. Allows users to store small amounts of arbitrary data. Both the key and the value must be 63 characters or less each. At most 100 annotations. This field is not used.

Returns:

  • (::Google::Protobuf::Map{::String => ::String})

    Output only. Allows users to store small amounts of arbitrary data. Both the key and the value must be 63 characters or less each. At most 100 annotations. This field is not used.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#boost::Float

Returns 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.

Returns:

  • (::Float)

    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.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#delete_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The time at which this resource was requested for deletion. This field is not used.

Returns:



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#display_name::String (readonly)

Returns Output only. User-settable, human-readable name for the PhraseSet. Must be 63 characters or less. This field is not used.

Returns:

  • (::String)

    Output only. User-settable, human-readable name for the PhraseSet. Must be 63 characters or less. This field is not used.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#etag::String (readonly)

Returns Output only. This checksum is computed by the server based on the value of other fields. This may be sent on update, undelete, and delete requests to ensure the client has an up-to-date value before proceeding. This field is not used.

Returns:

  • (::String)

    Output only. This checksum is computed by the server based on the value of other fields. This may be sent on update, undelete, and delete requests to ensure the client has an up-to-date value before proceeding. This field is not used.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#expire_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The time at which this resource will be purged. This field is not used.

Returns:



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#kms_key_name::String (readonly)

Returns Output only. The KMS key name with which the content of the PhraseSet is encrypted. The expected format is projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.

Returns:

  • (::String)

    Output only. The KMS key name with which the content of the PhraseSet is encrypted. The expected format is projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#kms_key_version_name::String (readonly)

Returns Output only. The KMS key version name with which content of the PhraseSet is encrypted. The expected format is projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}.

Returns:

  • (::String)

    Output only. The KMS key version name with which content of the PhraseSet is encrypted. The expected format is projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#name::String

Returns The resource name of the phrase set.

Returns:

  • (::String)

    The resource name of the phrase set.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#phrases::Array<::Google::Cloud::Speech::V1p1beta1::PhraseSet::Phrase>

Returns A list of word and phrases.

Returns:



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#reconciling::Boolean (readonly)

Returns Output only. Whether or not this PhraseSet is in the process of being updated. This field is not used.

Returns:

  • (::Boolean)

    Output only. Whether or not this PhraseSet is in the process of being updated. This field is not used.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#state::Google::Cloud::Speech::V1p1beta1::PhraseSet::State (readonly)

Returns Output only. The CustomClass lifecycle state. This field is not used.

Returns:



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end

#uid::String (readonly)

Returns Output only. System-assigned unique identifier for the PhraseSet. This field is not used.

Returns:

  • (::String)

    Output only. System-assigned unique identifier for the PhraseSet. This field is not used.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/speech/v1p1beta1/resource.rb', line 188

class PhraseSet
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A phrases containing words and phrase "hints" so that
  # the speech recognition is more likely to recognize them. This can be used
  # to improve the accuracy for specific words and phrases, for example, if
  # specific commands are typically spoken by the user. This can also be used
  # to add additional words to the vocabulary of the recognizer. See
  # [usage limits](https://cloud.google.com/speech-to-text/quotas#content).
  #
  # List items can also include pre-built or custom classes containing groups
  # of words that represent common concepts that occur in natural language. For
  # example, rather than providing a phrase hint for every month of the
  # year (e.g. "i was born in january", "i was born in febuary", ...), use the
  # pre-built `$MONTH` class improves the likelihood of correctly transcribing
  # audio that includes months (e.g. "i was born in $month").
  # To refer to pre-built classes, use the class' symbol prepended with `$`
  # e.g. `$MONTH`. To refer to custom classes that were defined inline in the
  # request, set the class's `custom_class_id` to a string unique to all class
  # resources and inline classes. Then use the class' id wrapped in $`{...}`
  # e.g. "$\\{my-months}". To refer to custom classes resources, use the class'
  # id wrapped in `${}` (e.g. `${my-months}`).
  #
  # Speech-to-Text supports three locations: `global`, `us` (US North America),
  # and `eu` (Europe). If you are calling the `speech.googleapis.com`
  # endpoint, use the `global` location. To specify a region, use a
  # [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
  # with matching `us` or `eu` location value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The phrase itself.
  # @!attribute [rw] boost
  #   @return [::Float]
  #     Hint Boost. Overrides the boost set at the phrase set level.
  #     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 will simply be ignored. Though `boost` can accept a wide range of
  #     positive values, most use cases are best served
  #     with values between 0 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.
  class Phrase
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # @!attribute [rw] key
  #   @return [::String]
  # @!attribute [rw] value
  #   @return [::String]
  class AnnotationsEntry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Set of states that define the lifecycle of a CustomClass.
  module State
    # Unspecified state.  This is only used/useful for distinguishing
    # unset values.
    STATE_UNSPECIFIED = 0

    # The normal and active state.
    ACTIVE = 2

    # This CustomClass has been deleted.
    DELETED = 4
  end
end