optuna.integration.AllenNLPPruningCallback

class optuna.integration.AllenNLPPruningCallback(trial=None, monitor=None)[源代码]

AllenNLP callback to prune unpromising trials.

See the example if you want to add a pruning callback which observes a metric.

You can also see the tutorial of our AllenNLP integration on AllenNLP Guide.

备注

When AllenNLPPruningCallback is instantiated in Python script, trial and monitor are mandatory.

On the other hand, when AllenNLPPruningCallback is used with AllenNLPExecutor, trial and monitor would be None. AllenNLPExecutor sets environment variables for a study name, trial id, monitor, and storage. Then AllenNLPPruningCallback loads them to restore trial and monitor.

参数

备注

Added in v2.0.0 as an experimental feature. The interface may change in newer versions without prior notice. See https://github.com/optuna/optuna/releases/tag/v2.0.0.

Methods

on_epoch(trainer, metrics, epoch[, is_primary])

Check if a training reaches saturation.

register(*args, **kwargs)

Stub method for TrainerCallback.register.

on_epoch(trainer, metrics, epoch, is_primary=True, **kwargs)[源代码]

Check if a training reaches saturation.

参数
  • trainer (GradientDescentTrainer) – AllenNLP’s trainer

  • metrics (Dict[str, Any]) – Dictionary of metrics.

  • epoch (int) – Number of current epoch.

  • is_primary (bool) – A flag for AllenNLP internal.

  • kwargs (Any) –

返回类型

None

classmethod register(*args, **kwargs)

Stub method for TrainerCallback.register.

This method has the same signature as Registrable.register in AllenNLP.

参数
  • args (Any) –

  • kwargs (Any) –

返回类型

Callable