pub struct GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset {
pub data_format: Option<String>,
pub gcs_source: Option<GoogleCloudAiplatformV1GcsSource>,
pub logging_sampling_strategy: Option<GoogleCloudAiplatformV1SamplingStrategy>,
pub bigquery_source: Option<GoogleCloudAiplatformV1BigQuerySource>,
pub dataset: Option<String>,
pub target_field: Option<String>,
}Expand description
Training Dataset information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data_format: Option<String>Data format of the dataset, only applicable if the input is from Google Cloud Storage. The possible formats are: “tf-record” The source file is a TFRecord file. “csv” The source file is a CSV file. “jsonl” The source file is a JSONL file.
gcs_source: Option<GoogleCloudAiplatformV1GcsSource>The Google Cloud Storage uri of the unmanaged Dataset used to train this Model.
logging_sampling_strategy: Option<GoogleCloudAiplatformV1SamplingStrategy>Strategy to sample data from Training Dataset. If not set, we process the whole dataset.
bigquery_source: Option<GoogleCloudAiplatformV1BigQuerySource>The BigQuery table of the unmanaged Dataset used to train this Model.
dataset: Option<String>The resource name of the Dataset used to train this Model.
target_field: Option<String>The target field name the model is to predict. This field will be excluded when doing Predict and (or) Explain for the training data.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
impl Clone for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
Source§fn clone(
&self,
) -> GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
fn clone( &self, ) -> GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
impl Default for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
Source§fn default() -> GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
fn default() -> GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
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 GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
impl RefUnwindSafe for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
impl Send for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
impl Sync for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
impl Unpin for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
impl UnwindSafe for GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset
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