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

pub struct FractionSplit {
    pub training_fraction: f64,
    pub validation_fraction: f64,
    pub test_fraction: f64,
}

Assigns the input data to training, validation, and test sets as per the given fractions. Any of training_fraction, validation_fraction and test_fraction may optionally be provided, they must sum to up to 1. If the provided ones sum to less than 1, the remainder is assigned to sets as decided by Vertex AI. If none of the fractions are set, by default roughly 80% of data is used for training, 10% for validation, and 10% for test.

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.

Trait Implementations

impl Clone for FractionSplit[src]

impl Debug for FractionSplit[src]

impl Default for FractionSplit[src]

impl Message for FractionSplit[src]

impl PartialEq<FractionSplit> for FractionSplit[src]

impl StructuralPartialEq for FractionSplit[src]

Auto Trait Implementations

impl RefUnwindSafe for FractionSplit

impl Send for FractionSplit

impl Sync for FractionSplit

impl Unpin for FractionSplit

impl UnwindSafe for FractionSplit

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]