pub enum MultiFidelityStrategy {
SuccessiveHalving {
eta: Float,
min_fidelity: FidelityLevel,
max_fidelity: FidelityLevel,
},
BayesianOptimization {
acquisition_function: AcquisitionFunction,
fidelity_selection: FidelitySelectionMethod,
correlation_model: CorrelationModel,
},
Hyperband {
max_budget: Float,
eta: Float,
fidelities: Vec<FidelityLevel>,
},
BOHB {
min_budget: Float,
max_budget: Float,
eta: Float,
bandwidth_factor: Float,
},
Fabolas {
min_dataset_fraction: Float,
max_dataset_fraction: Float,
cost_model: CostModel,
},
MultiTaskGP {
task_similarity: Float,
shared_hyperparameters: Vec<String>,
},
}Expand description
Multi-fidelity optimization strategies
Variants§
SuccessiveHalving
Successive Halving with multiple fidelities
BayesianOptimization
Multi-fidelity Bayesian Optimization (MFBO)
Fields
§
acquisition_function: AcquisitionFunction§
fidelity_selection: FidelitySelectionMethod§
correlation_model: CorrelationModelHyperband
Hyperband with multi-fidelity
BOHB
BOHB (Bayesian Optimization and Hyperband)
Fabolas
Fabolas (Fast Bayesian Optimization on Large Datasets)
MultiTaskGP
Multi-Task Gaussian Process
Trait Implementations§
Source§impl Clone for MultiFidelityStrategy
impl Clone for MultiFidelityStrategy
Source§fn clone(&self) -> MultiFidelityStrategy
fn clone(&self) -> MultiFidelityStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MultiFidelityStrategy
impl RefUnwindSafe for MultiFidelityStrategy
impl Send for MultiFidelityStrategy
impl Sync for MultiFidelityStrategy
impl Unpin for MultiFidelityStrategy
impl UnwindSafe for MultiFidelityStrategy
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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