optuna.study

study モジュールは Study オブジェクトと関連機能を実装しています。Study クラスの公開コンストラクタは用意されていますが、直接の使用は推奨されません。代わりに、ライブラリ利用者は create_study()load_study() を使用して Study を作成・読み込みする必要があります。

Study

A study corresponds to an optimization task, i.e., a set of trials.

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.

MaxTrialsCallback

Set a maximum number of trials before ending the study.

StudyDirection

Direction of a Study.

StudySummary

Basic attributes and aggregated results of a Study.