optuna

optuna モジュールは、他のモジュールで実装された基本的な Optuna 機能のエイリアスとして主に使用されます。現在、以下の2つのモジュールがエイリアス化されています: (1) optuna.study からの Study ライフサイクルに関する関数、(2) optuna.exceptions からの TrialPruned 例外(トライアルがプルーニングされた際に発生)です。

create_study

Create a new Study.

load_study

Load the existing Study that has the specified name.

delete_study

Delete a Study object.

copy_study

Copy study from one storage to another.

get_all_study_names

Get all study names stored in a specified storage.

get_all_study_summaries

Get all history of studies stored in a specified storage.

TrialPruned

Exception for pruned trials.