gcloud alpha ml language analyze-syntax Stay organized with collections Save and categorize content based on your preferences.
- NAME
- gcloud alpha ml language analyze-syntax - use Google Cloud Natural Language API to identify linguistic information
- SYNOPSIS
gcloud alpha ml language analyze-syntax(--content=CONTENT|--content-file=CONTENT_FILE)[--content-type=CONTENT_TYPE; default="plain-text"][--encoding-type=ENCODING_TYPE; default="utf8"][--language=LANGUAGE][GCLOUD_WIDE_FLAG …]
- DESCRIPTION
(ALPHA)Syntactic Analysis extracts linguistic information,breaking up the given text into a series of sentences and tokens (generally,word boundaries), providing further analysis on those tokens.Currently English, Spanish, Japanese, Chinese (Simplified and Traditional),French, German, Italian, Korean, and Portuguese are supported.
- EXAMPLES
- To analyze syntax in raw content 'They drink.':
gcloudalphamllanguageanalyze-syntax--content='They drink'To analyze syntax in file 'myfile.txt':
gcloudalphamllanguageanalyze-syntax--content-file='myfile.txt'To analyze syntax in a remote file 'gs://bucket_name/mycontent.html' forJapanese language using UTF-8 encoding:
gcloudalphamllanguageanalyze-syntax--content-file='gs://bucket_name/mycontent.html'--content-type=HTML--encoding-type=utf8--language=ja-JP - REQUIRED FLAGS
- Exactly one of these must be specified:
--content=CONTENT- Specify input text on the command line. Useful for experiments, or for extremelyshort text.
--content-file=CONTENT_FILE- Specify a local file or Google Cloud Storage (format
gs://bucket/object) file path containing the text to be analyzed.More useful for longer text or data output from another system.
- Exactly one of these must be specified:
- OPTIONAL FLAGS
--content-type=CONTENT_TYPE; default="plain-text"- Specify the format of the input text.
CONTENT_TYPEmustbe one of:html,plain-text. --encoding-type=ENCODING_TYPE; default="utf8"- The encoding type used by the API to calculate offsets. If set to
none, encoding-dependent offsets will be set at -1. This is anoptional flag only used for the entity mentions in results, and does not affecthow the input is read or analyzed.ENCODING_TYPEmust beone of:none,utf16,utf32,utf8. --language=LANGUAGE- Specify the language of the input text. If omitted, the server will attempt toauto-detect. Both ISO (such as
enores) and BCP-47(such asen-USorja-JP) language codes are accepted.
- GCLOUD WIDE FLAGS
- These flags are available to all commands:
--access-token-file,--account,--billing-project,--configuration,--flags-file,--flatten,--format,--help,--impersonate-service-account,--log-http,--project,--quiet,--trace-token,--user-output-enabled,--verbosity.Run
$gcloud helpfor details. - API REFERENCE
- This command uses the
language/v1beta2API. The full documentationfor this API can be found at:https://cloud.google.com/natural-language/ - NOTES
- This command is currently in alpha and might change without notice. If thiscommand fails with API permission errors despite specifying the correct project,you might be trying to access an API with an invitation-only early accessallowlist. These variants are also available:
gcloudmllanguageanalyze-syntaxgcloudbetamllanguageanalyze-syntax
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-05-07 UTC.