Struct gapi_grpc::google::cloud::aiplatform::v1beta1::ActiveLearningConfig[][src]

pub struct ActiveLearningConfig {
    pub sample_config: Option<SampleConfig>,
    pub training_config: Option<TrainingConfig>,
    pub human_labeling_budget: Option<HumanLabelingBudget>,
}

Parameters that configure the active learning pipeline. Active learning will label the data incrementally by several iterations. For every iteration, it will select a batch of data based on the sampling strategy.

Fields

sample_config: Option<SampleConfig>

Active learning data sampling config. For every active learning labeling iteration, it will select a batch of data based on the sampling strategy.

training_config: Option<TrainingConfig>

CMLE training config. For every active learning labeling iteration, system will train a machine learning model on CMLE. The trained model will be used by data sampling algorithm to select DataItems.

human_labeling_budget: Option<HumanLabelingBudget>

Required. Max human labeling DataItems. The rest part will be labeled by machine.

Trait Implementations

impl Clone for ActiveLearningConfig[src]

impl Debug for ActiveLearningConfig[src]

impl Default for ActiveLearningConfig[src]

impl Message for ActiveLearningConfig[src]

impl PartialEq<ActiveLearningConfig> for ActiveLearningConfig[src]

impl StructuralPartialEq for ActiveLearningConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for ActiveLearningConfig

impl Send for ActiveLearningConfig

impl Sync for ActiveLearningConfig

impl Unpin for ActiveLearningConfig

impl UnwindSafe for ActiveLearningConfig

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]