optuna.multi_objective.study.load_study¶
- optuna.multi_objective.study.load_study(study_name: str, storage: Union[str, optuna.storages._base.BaseStorage], sampler: Optional[optuna.multi_objective.samplers._base.BaseMultiObjectiveSampler] = None) optuna.multi_objective.study.MultiObjectiveStudy[source]¶
Load the existing
MultiObjectiveStudythat has the specified name.- Parameters
study_name – Study’s name. Each study has a unique name as an identifier.
storage – Database URL such as
sqlite:///example.db. Please see also the documentation ofcreate_study()for further details.sampler – A sampler object that implements background algorithm for value suggestion. If
Noneis specified,RandomMultiObjectiveSampleris used as the default. See alsosamplers.
- Returns
A
MultiObjectiveStudyobject.
Note
Added in v1.4.0 as an experimental feature. The interface may change in newer versions without prior notice. See https://github.com/optuna/optuna/releases/tag/v1.4.0.