#[non_exhaustive]pub struct CandidateGenerationConfig {
pub algorithms_config: Option<Vec<AutoMlAlgorithmConfig>>,
}
Expand description
Stores the configuration information for how model candidates are generated using an AutoML job V2.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.algorithms_config: 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.
Implementations§
source§impl CandidateGenerationConfig
impl CandidateGenerationConfig
sourcepub fn algorithms_config(&self) -> Option<&[AutoMlAlgorithmConfig]>
pub fn algorithms_config(&self) -> Option<&[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.
source§impl CandidateGenerationConfig
impl CandidateGenerationConfig
sourcepub fn builder() -> CandidateGenerationConfigBuilder
pub fn builder() -> CandidateGenerationConfigBuilder
Creates a new builder-style object to manufacture CandidateGenerationConfig
.
Trait Implementations§
source§impl Clone for CandidateGenerationConfig
impl Clone for CandidateGenerationConfig
source§fn clone(&self) -> CandidateGenerationConfig
fn clone(&self) -> CandidateGenerationConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CandidateGenerationConfig
impl Debug for CandidateGenerationConfig
source§impl PartialEq<CandidateGenerationConfig> for CandidateGenerationConfig
impl PartialEq<CandidateGenerationConfig> for CandidateGenerationConfig
source§fn eq(&self, other: &CandidateGenerationConfig) -> bool
fn eq(&self, other: &CandidateGenerationConfig) -> bool
self
and other
values to be equal, and is used
by ==
.