supportedOutputStorageFormats property
The formats this Model supports in BatchPredictionJob.output_config.
If both PredictSchemata.instance_schema_uri and
PredictSchemata.prediction_schema_uri exist, the predictions are returned
together with their instances. In other words, the prediction has the
original instance data first, followed by the actual prediction content
(as per the schema). The possible formats are: * jsonl
The JSON Lines
format, where each prediction is a single line. Uses GcsDestination. *
csv
The CSV format, where each prediction is a single comma-separated
line. The first line in the file is the header, containing comma-separated
field names. Uses GcsDestination. * bigquery
Each prediction is a single
row in a BigQuery table, uses BigQueryDestination . If this Model doesn't
support any of these formats it means it cannot be used with a
BatchPredictionJob. However, if it has
supported_deployment_resources_types, it could serve online predictions by
using PredictionService.Predict or PredictionService.Explain.
Output only.
Implementation
core.List<core.String>? supportedOutputStorageFormats;