pub struct GoogleCloudAiplatformV1BatchPredictionJobOutputConfig {
pub predictions_format: Option<String>,
pub gcs_destination: Option<GoogleCloudAiplatformV1GcsDestination>,
pub bigquery_destination: Option<GoogleCloudAiplatformV1BigQueryDestination>,
}Expand description
Configures the output of BatchPredictionJob. See Model.supported_output_storage_formats for supported output formats, and how predictions are expressed via any of them.
This type is not used in any activity, and only used as part of another schema.
Fields§
§predictions_format: Option<String>Required. The format in which Vertex AI gives the predictions, must be one of the Model’s supported_output_storage_formats.
gcs_destination: Option<GoogleCloudAiplatformV1GcsDestination>The Cloud Storage location of the directory where the output is to be written to. In the given directory a new directory is created. Its name is prediction--, where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. Inside of it files predictions_0001., predictions_0002., …, predictions_N. are created where `` depends on chosen predictions_format, and N may equal 0001 and depends on the total number of successfully predicted instances. If the Model has both instance and prediction schemata defined then each such file contains predictions as per the predictions_format. If prediction for any instance failed (partially or completely), then an additional errors_0001., errors_0002.,…, errors_N. files are created (N depends on total number of failed predictions). These files contain the failed instances, as per their schema, followed by an additional error field which as value has google.rpc.Status containing only code and message fields.
bigquery_destination: Option<GoogleCloudAiplatformV1BigQueryDestination>The BigQuery project or dataset location where the output is to be written to. If project is provided, a new dataset is created with name prediction__ where is made BigQuery-dataset-name compatible (for example, most special characters become underscores), and timestamp is in YYYY_MM_DDThh_mm_ss_sssZ “based on ISO-8601” format. In the dataset two tables will be created, predictions, and errors. If the Model has both instance and prediction schemata defined then the tables have columns as follows: The predictions table contains instances for which the prediction succeeded, it has columns as per a concatenation of the Model’s instance and prediction schemata. The errors table contains rows for which the prediction has failed, it has instance columns, as per the instance schema, followed by a single “errors” column, which as values has google.rpc.Status represented as a STRUCT, and containing only code and message.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
impl Clone for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
Source§fn clone(&self) -> GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
fn clone(&self) -> GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
impl Default for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
Source§fn default() -> GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
fn default() -> GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
impl RefUnwindSafe for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
impl Send for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
impl Sync for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
impl Unpin for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
impl UnwindSafe for GoogleCloudAiplatformV1BatchPredictionJobOutputConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more