Struct gapi_grpc::google::cloud::aiplatform::v1::TimestampSplit[][src]

pub struct TimestampSplit {
    pub training_fraction: f64,
    pub validation_fraction: f64,
    pub test_fraction: f64,
    pub key: String,
}

Assigns input data to training, validation, and test sets based on a provided timestamps. The youngest data pieces are assigned to training set, next to validation set, and the oldest to the test set.

Supported only for tabular Datasets.

Fields

training_fraction: f64

The fraction of the input data that is to be used to train the Model.

validation_fraction: f64

The fraction of the input data that is to be used to validate the Model.

test_fraction: f64

The fraction of the input data that is to be used to evaluate the Model.

key: String

Required. The key is a name of one of the Dataset’s data columns. The values of the key (the values in the column) must be in RFC 3339 date-time format, where time-offset = "Z" (e.g. 1985-04-12T23:20:50.52Z). If for a piece of data the key is not present or has an invalid value, that piece is ignored by the pipeline.

Trait Implementations

impl Clone for TimestampSplit[src]

impl Debug for TimestampSplit[src]

impl Default for TimestampSplit[src]

impl Message for TimestampSplit[src]

impl PartialEq<TimestampSplit> for TimestampSplit[src]

impl StructuralPartialEq for TimestampSplit[src]

Auto Trait Implementations

impl RefUnwindSafe for TimestampSplit

impl Send for TimestampSplit

impl Sync for TimestampSplit

impl Unpin for TimestampSplit

impl UnwindSafe for TimestampSplit

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]