#[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<CandidateGenerationConfigBuilder> for CandidateGenerationConfigBuilder
impl PartialEq<CandidateGenerationConfigBuilder> 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 ==
.