#[non_exhaustive]pub struct CandidateGenerationConfigBuilder { /* private fields */ }
Expand description
A builder for CandidateGenerationConfig
.
Implementations§
source§impl CandidateGenerationConfigBuilder
impl CandidateGenerationConfigBuilder
sourcepub fn algorithms_config(self, input: AutoMlAlgorithmConfig) -> Self
pub fn algorithms_config(self, input: AutoMlAlgorithmConfig) -> Self
Appends an item to algorithms_config
.
To override the contents of this collection use set_algorithms_config
.
Stores the configuration information for the selection of algorithms used to train model candidates on tabular data.
The list of available algorithms to choose from depends on the training mode set in TabularJobConfig.Mode
.
-
AlgorithmsConfig
should not be set inAUTO
training mode. -
When
AlgorithmsConfig
is provided, oneAutoMLAlgorithms
attribute must be set and one only.If the list of algorithms provided as values for
AutoMLAlgorithms
is empty,CandidateGenerationConfig
uses the full set of algorithms for the given training mode. -
When
AlgorithmsConfig
is not provided,CandidateGenerationConfig
uses the full set of algorithms for the given training mode.
For the list of all algorithms per problem type and training mode, see AutoMLAlgorithmConfig.
For more information on each algorithm, see the Algorithm support section in Autopilot developer guide.
sourcepub fn set_algorithms_config(
self,
input: Option<Vec<AutoMlAlgorithmConfig>>
) -> Self
pub fn set_algorithms_config( self, input: Option<Vec<AutoMlAlgorithmConfig>> ) -> Self
Stores the configuration information for the selection of algorithms used to train model candidates on tabular data.
The list of available algorithms to choose from depends on the training mode set in TabularJobConfig.Mode
.
-
AlgorithmsConfig
should not be set inAUTO
training mode. -
When
AlgorithmsConfig
is provided, oneAutoMLAlgorithms
attribute must be set and one only.If the list of algorithms provided as values for
AutoMLAlgorithms
is empty,CandidateGenerationConfig
uses the full set of algorithms for the given training mode. -
When
AlgorithmsConfig
is not provided,CandidateGenerationConfig
uses the full set of algorithms for the given training mode.
For the list of all algorithms per problem type and training mode, see AutoMLAlgorithmConfig.
For more information on each algorithm, see the Algorithm support section in Autopilot developer guide.
sourcepub fn get_algorithms_config(&self) -> &Option<Vec<AutoMlAlgorithmConfig>>
pub fn get_algorithms_config(&self) -> &Option<Vec<AutoMlAlgorithmConfig>>
Stores the configuration information for the selection of algorithms used to train model candidates on tabular data.
The list of available algorithms to choose from depends on the training mode set in TabularJobConfig.Mode
.
-
AlgorithmsConfig
should not be set inAUTO
training mode. -
When
AlgorithmsConfig
is provided, oneAutoMLAlgorithms
attribute must be set and one only.If the list of algorithms provided as values for
AutoMLAlgorithms
is empty,CandidateGenerationConfig
uses the full set of algorithms for the given training mode. -
When
AlgorithmsConfig
is not provided,CandidateGenerationConfig
uses the full set of algorithms for the given training mode.
For the list of all algorithms per problem type and training mode, see AutoMLAlgorithmConfig.
For more information on each algorithm, see the Algorithm support section in Autopilot developer guide.
sourcepub fn build(self) -> CandidateGenerationConfig
pub fn build(self) -> CandidateGenerationConfig
Consumes the builder and constructs a CandidateGenerationConfig
.
Trait Implementations§
source§impl Clone for CandidateGenerationConfigBuilder
impl Clone for CandidateGenerationConfigBuilder
source§fn clone(&self) -> CandidateGenerationConfigBuilder
fn clone(&self) -> CandidateGenerationConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CandidateGenerationConfigBuilder
impl Default for CandidateGenerationConfigBuilder
source§fn default() -> CandidateGenerationConfigBuilder
fn default() -> CandidateGenerationConfigBuilder
source§impl PartialEq for CandidateGenerationConfigBuilder
impl PartialEq for CandidateGenerationConfigBuilder
source§fn eq(&self, other: &CandidateGenerationConfigBuilder) -> bool
fn eq(&self, other: &CandidateGenerationConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CandidateGenerationConfigBuilder
Auto Trait Implementations§
impl Freeze for CandidateGenerationConfigBuilder
impl RefUnwindSafe for CandidateGenerationConfigBuilder
impl Send for CandidateGenerationConfigBuilder
impl Sync for CandidateGenerationConfigBuilder
impl Unpin for CandidateGenerationConfigBuilder
impl UnwindSafe for CandidateGenerationConfigBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more