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 (FrozenTrial | None)
n_trials (int)
datetime_start (datetime | None)
study_id (int)
directions (Sequence[StudyDirection] | None)
- direction
StudyDirectionof theStudy.Note
This attribute is only available during single-objective optimization.
- directions
A sequence of
StudyDirectionobjects.
- best_trial
optuna.trial.FrozenTrialwith best objective value in theStudy.
- user_attrs
Dictionary that contains the attributes of the
Studyset withoptuna.study.Study.set_user_attr().
- system_attrs
Dictionary that contains the attributes of the
Studyinternally set by Optuna.Warning
Deprecated in v3.1.0.
system_attrsargument 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