pub struct OptunaSolverRecipe {
    pub loglevel: String,
    pub sampler: Option<String>,
    pub sampler_kwargs: Option<String>,
    pub pruner: Option<String>,
    pub pruner_kwargs: Option<String>,
    pub maximize: bool,
    pub use_discrete_uniform: bool,
}
Expand description

Recipe of OptunaSolver.

Fields

loglevel: String

Log level.

sampler: Option<String>

Sampler class name (e.g., “TPESampler”).

sampler_kwargs: Option<String>

Sampler arguments (e.g., “{"seed": 10}”).

pruner: Option<String>

Pruner class name (e.g., “MedianPruner”).

pruner_kwargs: Option<String>

Pruner arguments (e.g., “{"n_warmup_steps": 10}”).

maximize: bool

Sets optimization direction to “maximize”.

The sign of all evaluated values ​​is reversed before being passed to Optuna.

use_discrete_uniform: bool

If this is true, Trial.suggest_discrete_uniform() is used for sampling discrete parameters instead of Trial.suggest_int().

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

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

Creates a solver factory.

Returns clap::App corresponding to the struct.

Builds the struct from clap::ArgMatches. It’s guaranteed to succeed if matches originates from an App generated by StructOpt::clap called on the same type, otherwise it must panic. Read more

Builds the struct from the command line arguments (std::env::args_os). Calls clap::Error::exit on failure, printing the error message and aborting the program. Read more

Builds the struct from the command line arguments (std::env::args_os). Unlike StructOpt::from_args, returns clap::Error on failure instead of aborting the program, so calling .exit is up to you. Read more

Gets the struct from any iterator such as a Vec of your making. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.