Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var OptionSetMinEarlyStoppingRate = OptionMinEarlyStoppingRate
OptionSetMinEarlyStoppingRate to set the minimum value of the early stopping rate. Deprecated: please use OptionMinEarlyStoppingRate instead.
var OptionSetMinResource = OptionMinResource
OptionSetMinResource to set the minimum resource. Deprecated: please use OptionMinResource instead.
var OptionSetReductionFactor = OptionReductionFactor
OptionSetReductionFactor to set the reduction factor. Deprecated: please use OptionReductionFactor instead.
Functions ¶
This section is empty.
Types ¶
type Option ¶
Option to pass the custom option
func OptionMinEarlyStoppingRate ¶
OptionMinEarlyStoppingRate to set the minimum value of the early stopping rate.
func OptionMinResource ¶
OptionMinResource to set the minimum resource.
func OptionReductionFactor ¶
OptionReductionFactor 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.