Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Option ¶
Option to pass the custom option
func OptionSetMinEarlyStoppingRate ¶
OptionSetMinEarlyStoppingRate to set the minimum value of the early stopping rate.
func OptionSetMinResource ¶
OptionSetMinResource to set the minimum resource.
func OptionSetReductionFactor ¶
OptionSetReductionFactor to set the reduction factor.
type Pruner ¶
Pruner using Optuna flavored Asynchronous Successive Halving Algorithm.
Successive Halving (arXiv: https://arxiv.org/abs/1502.07943) is a bandit-based algorithm to identify the best one among multiple configurations. This is based on Asynchronous Successive Halving Algorithm (arXiv: http://arxiv.org/abs/1810.05934), but currently this only supports Optuna flavored Asynchronous Successive Halving Algorithm. See https://github.com/optuna/optuna/pull/404 for more details.