[][src]Struct kurobako_solvers::optuna::OptunaSolverRecipe

pub struct OptunaSolverRecipe {
    pub loglevel: String,
    pub sampler: String,
    pub tpe_startup_trials: usize,
    pub tpe_ei_candidates: usize,
    pub tpe_prior_weight: f64,
    pub skopt_base_estimator: String,
    pub pruner: String,
    pub median_startup_trials: usize,
    pub median_warmup_steps: usize,
    pub asha_min_resource: usize,
    pub asha_reduction_factor: usize,
    pub maximize: bool,
}

Recipe of OptunaSolver.

Fields

loglevel: Stringsampler: Stringtpe_startup_trials: usizetpe_ei_candidates: usizetpe_prior_weight: f64skopt_base_estimator: Stringpruner: Stringmedian_startup_trials: usizemedian_warmup_steps: usizeasha_min_resource: usizeasha_reduction_factor: usizemaximize: bool

Trait Implementations

impl Clone for OptunaSolverRecipe[src]

impl Debug for OptunaSolverRecipe[src]

impl<'de> Deserialize<'de> for OptunaSolverRecipe[src]

impl Serialize for OptunaSolverRecipe[src]

impl StructOpt for OptunaSolverRecipe[src]

impl SolverRecipe for OptunaSolverRecipe[src]

type Factory = OptunaSolverFactory

The type of he factory creating solver instances from this recipe.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,