Struct gapi_grpc::google::cloud::aiplatform::v1beta1::model_monitoring_objective_config::TrainingDataset[][src]

pub struct TrainingDataset {
    pub data_format: String,
    pub target_field: String,
    pub logging_sampling_strategy: Option<SamplingStrategy>,
    pub data_source: Option<DataSource>,
}

Training Dataset information.

Fields

data_format: 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.

target_field: 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.

logging_sampling_strategy: Option<SamplingStrategy>

Strategy to sample data from Training Dataset. If not set, we process the whole dataset.

data_source: Option<DataSource>

Trait Implementations

impl Clone for TrainingDataset[src]

impl Debug for TrainingDataset[src]

impl Default for TrainingDataset[src]

impl Message for TrainingDataset[src]

impl PartialEq<TrainingDataset> for TrainingDataset[src]

impl StructuralPartialEq for TrainingDataset[src]

Auto Trait Implementations

impl RefUnwindSafe for TrainingDataset

impl Send for TrainingDataset

impl Sync for TrainingDataset

impl Unpin for TrainingDataset

impl UnwindSafe for TrainingDataset

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]