optuna.study.StudySummary
- class optuna.study.StudySummary(study_name, direction, best_trial, user_attrs, system_attrs, n_trials, datetime_start, study_id, *, directions=None)[source]
Basic attributes and aggregated results of a
Study
.See also
optuna.study.get_all_study_summaries()
.- Parameters:
study_name (str)
direction (StudyDirection | None)
best_trial (trial.FrozenTrial | None)
n_trials (int)
datetime_start (datetime.datetime | None)
study_id (int)
directions (Sequence[StudyDirection] | None)
- direction
StudyDirection
of theStudy
.Note
This attribute is only available during single-objective optimization.
- directions
A sequence of
StudyDirection
objects.
- best_trial
optuna.trial.FrozenTrial
with best objective value in theStudy
.
- user_attrs
Dictionary that contains the attributes of the
Study
set withoptuna.study.Study.set_user_attr()
.
- system_attrs
Dictionary that contains the attributes of the
Study
internally set by Optuna.Warning
Deprecated in v3.1.0.
system_attrs
argument will be removed in the future. The removal of this feature is currently scheduled for v5.0.0, but this schedule is subject to change. See https://github.com/optuna/optuna/releases/tag/v3.1.0.
Attributes