mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-11 23:49:35 +00:00
gcloud: Fri Mar 24 11:31:22 UTC 2023
This commit is contained in:
parent
a4bd29dd06
commit
4ccfc7a5e3
142 changed files with 4081 additions and 397 deletions
|
|
@ -5,15 +5,17 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud alpha ml speech recognizers create
|
||||
(RECOGNIZER : --location=LOCATION) --language-codes=[LANGUAGE_CODE,...]
|
||||
--model=MODEL [--async] [--display-name=DISPLAY_NAME]
|
||||
--model=MODEL [--async] [--audio-channel-count=AUDIO_CHANNEL_COUNT]
|
||||
[--display-name=DISPLAY_NAME]
|
||||
[--enable-automatic-punctuation=ENABLE_AUTOMATIC_PUNCTUATION]
|
||||
[--enable-spoken-emojis=ENABLE_SPOKEN_EMOJIS]
|
||||
[--enable-spoken-punctuation=ENABLE_SPOKEN_PUNCTUATION]
|
||||
[--enable-word-confidence=ENABLE_WORD_CONFIDENCE]
|
||||
[--enable-word-time-offsets=ENABLE_WORD_TIME_OFFSETS]
|
||||
[--max-speaker-count=MAX_SPEAKER_COUNT]
|
||||
[--encoding=ENCODING] [--max-speaker-count=MAX_SPEAKER_COUNT]
|
||||
[--min-speaker-count=MIN_SPEAKER_COUNT]
|
||||
[--profanity-filter=PROFANITY_FILTER] [GCLOUD_WIDE_FLAG ...]
|
||||
[--profanity-filter=PROFANITY_FILTER] [--sample-rate=SAMPLE_RATE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Create a speech-to-text recognizer.
|
||||
|
|
@ -60,6 +62,10 @@ OPTIONAL FLAGS
|
|||
Return immediately, without waiting for the operation in progress to
|
||||
complete. The default is False.
|
||||
|
||||
--audio-channel-count=AUDIO_CHANNEL_COUNT
|
||||
Number of channels present in the audio data sent for recognition.
|
||||
Supported for LINEAR16, MULAW, ALAW.
|
||||
|
||||
--display-name=DISPLAY_NAME
|
||||
Name of this recognizer as it appears in UIs.
|
||||
|
||||
|
|
@ -80,6 +86,10 @@ OPTIONAL FLAGS
|
|||
--enable-word-time-offsets=ENABLE_WORD_TIME_OFFSETS
|
||||
If true, the top result includes a list of words and their timestamps.
|
||||
|
||||
--encoding=ENCODING
|
||||
Encoding format of the provided audio. For headerless formats, must be
|
||||
set to LINEAR16, MULAW, or ALAW. For other formats, set to AUTO.
|
||||
|
||||
--max-speaker-count=MAX_SPEAKER_COUNT
|
||||
Maximum number of speakers in the conversation.
|
||||
|
||||
|
|
@ -89,6 +99,10 @@ OPTIONAL FLAGS
|
|||
--profanity-filter=PROFANITY_FILTER
|
||||
If true, the server will censor profanities.
|
||||
|
||||
--sample-rate=SAMPLE_RATE
|
||||
Sample rate in Hertz of the audio data sent for recognition. Required
|
||||
if using explicit decoding.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
|
|
@ -5,16 +5,18 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud alpha ml speech recognizers update
|
||||
(RECOGNIZER : --location=LOCATION) [--async]
|
||||
[--audio-channel-count=AUDIO_CHANNEL_COUNT]
|
||||
[--display-name=DISPLAY_NAME]
|
||||
[--enable-automatic-punctuation=ENABLE_AUTOMATIC_PUNCTUATION]
|
||||
[--enable-spoken-emojis=ENABLE_SPOKEN_EMOJIS]
|
||||
[--enable-spoken-punctuation=ENABLE_SPOKEN_PUNCTUATION]
|
||||
[--enable-word-confidence=ENABLE_WORD_CONFIDENCE]
|
||||
[--enable-word-time-offsets=ENABLE_WORD_TIME_OFFSETS]
|
||||
[--language-codes=[LANGUAGE_CODE,...]]
|
||||
[--encoding=ENCODING] [--language-codes=[LANGUAGE_CODE,...]]
|
||||
[--max-speaker-count=MAX_SPEAKER_COUNT]
|
||||
[--min-speaker-count=MIN_SPEAKER_COUNT] [--model=MODEL]
|
||||
[--profanity-filter=PROFANITY_FILTER] [GCLOUD_WIDE_FLAG ...]
|
||||
[--profanity-filter=PROFANITY_FILTER] [--sample-rate=SAMPLE_RATE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Update a Speech-to-text recognizer.
|
||||
|
|
@ -52,6 +54,10 @@ FLAGS
|
|||
Return immediately, without waiting for the operation in progress to
|
||||
complete. The default is False.
|
||||
|
||||
--audio-channel-count=AUDIO_CHANNEL_COUNT
|
||||
Number of channels present in the audio data sent for recognition.
|
||||
Supported for LINEAR16, MULAW, ALAW.
|
||||
|
||||
--display-name=DISPLAY_NAME
|
||||
Name of this recognizer as it appears in UIs.
|
||||
|
||||
|
|
@ -72,6 +78,10 @@ FLAGS
|
|||
--enable-word-time-offsets=ENABLE_WORD_TIME_OFFSETS
|
||||
If true, the top result includes a list of words and their timestamps.
|
||||
|
||||
--encoding=ENCODING
|
||||
Encoding format of the provided audio. For headerless formats, must be
|
||||
set to LINEAR16, MULAW, or ALAW. For other formats, set to AUTO.
|
||||
|
||||
--language-codes=[LANGUAGE_CODE,...]
|
||||
Language code is one of en-US, en-GB, fr-FR. Check documentation
|
||||
(https://cloud.google.com/speech-to-text/docs/multiple-languages) for
|
||||
|
|
@ -89,6 +99,10 @@ FLAGS
|
|||
--profanity-filter=PROFANITY_FILTER
|
||||
If true, the server will censor profanities.
|
||||
|
||||
--sample-rate=SAMPLE_RATE
|
||||
Sample rate in Hertz of the audio data sent for recognition. Required
|
||||
if using explicit decoding.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue