#[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 .
-  AlgorithmsConfigshould not be set inAUTOtraining mode.
-  When AlgorithmsConfigis provided, oneAutoMLAlgorithmsattribute must be set and one only.If the list of algorithms provided as values for AutoMLAlgorithmsis empty,CandidateGenerationConfiguses the full set of algorithms for the given training mode.
-  When AlgorithmsConfigis not provided,CandidateGenerationConfiguses 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) -> &[AutoMlAlgorithmConfig]
 
pub fn algorithms_config(&self) -> &[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 .
-  AlgorithmsConfigshould not be set inAUTOtraining mode.
-  When AlgorithmsConfigis provided, oneAutoMLAlgorithmsattribute must be set and one only.If the list of algorithms provided as values for AutoMLAlgorithmsis empty,CandidateGenerationConfiguses the full set of algorithms for the given training mode.
-  When AlgorithmsConfigis not provided,CandidateGenerationConfiguses 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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .algorithms_config.is_none().
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 for CandidateGenerationConfig
 
impl PartialEq 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 ==.