#[non_exhaustive]
pub struct AutoMlJobConfigBuilder { /* private fields */ }
Expand description

A builder for AutoMlJobConfig.

Implementations§

source§

impl AutoMlJobConfigBuilder

source

pub fn completion_criteria(self, input: AutoMlJobCompletionCriteria) -> Self

How long an AutoML job is allowed to run, or how many candidates a job is allowed to generate.

source

pub fn set_completion_criteria( self, input: Option<AutoMlJobCompletionCriteria> ) -> Self

How long an AutoML job is allowed to run, or how many candidates a job is allowed to generate.

source

pub fn get_completion_criteria(&self) -> &Option<AutoMlJobCompletionCriteria>

How long an AutoML job is allowed to run, or how many candidates a job is allowed to generate.

source

pub fn security_config(self, input: AutoMlSecurityConfig) -> Self

The security configuration for traffic encryption or Amazon VPC settings.

source

pub fn set_security_config(self, input: Option<AutoMlSecurityConfig>) -> Self

The security configuration for traffic encryption or Amazon VPC settings.

source

pub fn get_security_config(&self) -> &Option<AutoMlSecurityConfig>

The security configuration for traffic encryption or Amazon VPC settings.

source

pub fn candidate_generation_config( self, input: AutoMlCandidateGenerationConfig ) -> Self

The configuration for generating a candidate for an AutoML job (optional).

source

pub fn set_candidate_generation_config( self, input: Option<AutoMlCandidateGenerationConfig> ) -> Self

The configuration for generating a candidate for an AutoML job (optional).

source

pub fn get_candidate_generation_config( &self ) -> &Option<AutoMlCandidateGenerationConfig>

The configuration for generating a candidate for an AutoML job (optional).

source

pub fn data_split_config(self, input: AutoMlDataSplitConfig) -> Self

The configuration for splitting the input training dataset.

Type: AutoMLDataSplitConfig

source

pub fn set_data_split_config(self, input: Option<AutoMlDataSplitConfig>) -> Self

The configuration for splitting the input training dataset.

Type: AutoMLDataSplitConfig

source

pub fn get_data_split_config(&self) -> &Option<AutoMlDataSplitConfig>

The configuration for splitting the input training dataset.

Type: AutoMLDataSplitConfig

source

pub fn mode(self, input: AutoMlMode) -> Self

The method that Autopilot uses to train the data. You can either specify the mode manually or let Autopilot choose for you based on the dataset size by selecting AUTO. In AUTO mode, Autopilot chooses ENSEMBLING for datasets smaller than 100 MB, and HYPERPARAMETER_TUNING for larger ones.

The ENSEMBLING mode uses a multi-stack ensemble model to predict classification and regression tasks directly from your dataset. This machine learning mode combines several base models to produce an optimal predictive model. It then uses a stacking ensemble method to combine predictions from contributing members. A multi-stack ensemble model can provide better performance over a single model by combining the predictive capabilities of multiple models. See Autopilot algorithm support for a list of algorithms supported by ENSEMBLING mode.

The HYPERPARAMETER_TUNING (HPO) mode uses the best hyperparameters to train the best version of a model. HPO automatically selects an algorithm for the type of problem you want to solve. Then HPO finds the best hyperparameters according to your objective metric. See Autopilot algorithm support for a list of algorithms supported by HYPERPARAMETER_TUNING mode.

source

pub fn set_mode(self, input: Option<AutoMlMode>) -> Self

The method that Autopilot uses to train the data. You can either specify the mode manually or let Autopilot choose for you based on the dataset size by selecting AUTO. In AUTO mode, Autopilot chooses ENSEMBLING for datasets smaller than 100 MB, and HYPERPARAMETER_TUNING for larger ones.

The ENSEMBLING mode uses a multi-stack ensemble model to predict classification and regression tasks directly from your dataset. This machine learning mode combines several base models to produce an optimal predictive model. It then uses a stacking ensemble method to combine predictions from contributing members. A multi-stack ensemble model can provide better performance over a single model by combining the predictive capabilities of multiple models. See Autopilot algorithm support for a list of algorithms supported by ENSEMBLING mode.

The HYPERPARAMETER_TUNING (HPO) mode uses the best hyperparameters to train the best version of a model. HPO automatically selects an algorithm for the type of problem you want to solve. Then HPO finds the best hyperparameters according to your objective metric. See Autopilot algorithm support for a list of algorithms supported by HYPERPARAMETER_TUNING mode.

source

pub fn get_mode(&self) -> &Option<AutoMlMode>

The method that Autopilot uses to train the data. You can either specify the mode manually or let Autopilot choose for you based on the dataset size by selecting AUTO. In AUTO mode, Autopilot chooses ENSEMBLING for datasets smaller than 100 MB, and HYPERPARAMETER_TUNING for larger ones.

The ENSEMBLING mode uses a multi-stack ensemble model to predict classification and regression tasks directly from your dataset. This machine learning mode combines several base models to produce an optimal predictive model. It then uses a stacking ensemble method to combine predictions from contributing members. A multi-stack ensemble model can provide better performance over a single model by combining the predictive capabilities of multiple models. See Autopilot algorithm support for a list of algorithms supported by ENSEMBLING mode.

The HYPERPARAMETER_TUNING (HPO) mode uses the best hyperparameters to train the best version of a model. HPO automatically selects an algorithm for the type of problem you want to solve. Then HPO finds the best hyperparameters according to your objective metric. See Autopilot algorithm support for a list of algorithms supported by HYPERPARAMETER_TUNING mode.

source

pub fn build(self) -> AutoMlJobConfig

Consumes the builder and constructs a AutoMlJobConfig.

Trait Implementations§

source§

impl Clone for AutoMlJobConfigBuilder

source§

fn clone(&self) -> AutoMlJobConfigBuilder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AutoMlJobConfigBuilder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AutoMlJobConfigBuilder

source§

fn default() -> AutoMlJobConfigBuilder

Returns the “default value” for a type. Read more
source§

impl PartialEq for AutoMlJobConfigBuilder

source§

fn eq(&self, other: &AutoMlJobConfigBuilder) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for AutoMlJobConfigBuilder

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more