optuna.storages.RedisStorage
- class optuna.storages.RedisStorage(url)[源代码]
Storage class for Redis backend.
Note that library users can instantiate this class, but the attributes provided by this class are not supposed to be directly accessed by them.
示例
We create an
RedisStorageinstance using the given redis database URL.import optuna def objective(trial): ... storage = optuna.storages.RedisStorage( url="redis://passwd@localhost:port/db", ) study = optuna.create_study(storage=storage) study.optimize(objective)
- 参数
url (str) – URL of the redis storage, password and db are optional. (ie: redis://localhost:6379)
- 返回类型
None
备注
If you use plan to use Redis as a storage mechanism for optuna, make sure Redis in installed and running. Please execute
$ pip install -U redisto install redis python library.备注
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.
Methods
check_trial_is_updatable(trial_id, trial_state)Check whether a trial state is updatable.
create_new_study([study_name])Create a new study from a name.
create_new_trial(study_id[, template_trial])Create and add a new trial to a study.
delete_study(study_id)Delete a study.
fail_stale_trials(study_id)Fail stale trials.
Read a list of
StudySummaryobjects.get_all_trials(study_id[, deepcopy, states])Read all trials in a study.
get_best_trial(study_id)Return the trial with the best value in a study.
Get the failed trial callback function.
Get the heartbeat interval if it is set.
get_n_trials(study_id[, state])Count the number of trials in a study.
get_study_directions(study_id)Read whether a study maximizes or minimizes an objective.
get_study_id_from_name(study_name)Read the ID of a study.
get_study_id_from_trial_id(trial_id)Read the ID of a study to which a trial belongs.
get_study_name_from_id(study_id)Read the study name of a study.
get_study_system_attrs(study_id)Read the optuna-internal attributes of a study.
get_study_user_attrs(study_id)Read the user-defined attributes of a study.
get_trial(trial_id)Read a trial.
Read the trial id of a trial.
get_trial_number_from_id(trial_id)Read the trial number of a trial.
get_trial_param(trial_id, param_name)Read the parameter of a trial.
get_trial_params(trial_id)Read the parameter dictionary of a trial.
get_trial_system_attrs(trial_id)Read the optuna-internal attributes of a trial.
get_trial_user_attrs(trial_id)Read the user-defined attributes of a trial.
Check whether the storage enables the heartbeat.
read_trials_from_remote_storage(study_id)Make an internal cache of trials up-to-date.
record_heartbeat(trial_id)Record the heartbeat of the trial.
Clean up all connections to a database.
set_study_directions(study_id, directions)Register optimization problem directions to a study.
set_study_system_attr(study_id, key, value)Register an optuna-internal attribute to a study.
set_study_user_attr(study_id, key, value)Register a user-defined attribute to a study.
set_trial_intermediate_value(trial_id, step, ...)Report an intermediate value of an objective function.
set_trial_param(trial_id, param_name, ...)Set a parameter to a trial.
set_trial_state(trial_id, state)Update the state of a trial.
set_trial_system_attr(trial_id, key, value)Set an optuna-internal attribute to a trial.
set_trial_user_attr(trial_id, key, value)Set a user-defined attribute to a trial.
set_trial_values(trial_id, values)Set return values of an objective function.
- check_trial_is_updatable(trial_id, trial_state)
Check whether a trial state is updatable.
- 参数
trial_id (int) – ID of the trial. Only used for an error message.
trial_state (optuna.trial._state.TrialState) – Trial state to check.
- 引发
RuntimeError – If the trial is already finished.
- 返回类型
None
- create_new_study(study_name=None)[源代码]
Create a new study from a name.
If no name is specified, the storage class generates a name. The returned study ID is unique among all current and deleted studies.
- 参数
study_name (Optional[str]) – Name of the new study to create.
- 返回
ID of the created study.
- 引发
optuna.exceptions.DuplicatedStudyError – If a study with the same
study_namealready exists.- 返回类型
- create_new_trial(study_id, template_trial=None)[源代码]
Create and add a new trial to a study.
The returned trial ID is unique among all current and deleted trials.
- 参数
study_id (int) – ID of the study.
template_trial (Optional[optuna.trial._frozen.FrozenTrial]) – Template
FronzenTrialwith default user-attributes, system-attributes, intermediate-values, and a state.
- 返回
ID of the created trial.
- 引发
KeyError – If no study with the matching
study_idexists.- 返回类型
- fail_stale_trials(study_id)
Fail stale trials.
The running trials whose heartbeat has not been updated for a long time will be failed, that is, those states will be changed to
FAIL. The grace period is2 * heartbeat_interval.
- get_all_study_summaries()[源代码]
Read a list of
StudySummaryobjects.- 返回
A list of
StudySummaryobjects.- 返回类型
- get_all_trials(study_id, deepcopy=True, states=None)[源代码]
Read all trials in a study.
- 参数
- 返回
List of trials in the study.
- 引发
KeyError – If no study with the matching
study_idexists.- 返回类型
- get_best_trial(study_id)[源代码]
Return the trial with the best value in a study.
This method is valid only during single-objective optimization.
- 参数
study_id (int) – ID of the study.
- 返回
The trial with the best objective value among all finished trials in the study.
- 引发
KeyError – If no study with the matching
study_idexists.RuntimeError – If the study has more than one direction.
ValueError – If no trials have been completed.
- 返回类型
- get_failed_trial_callback()
Get the failed trial callback function.
- 返回
The failed trial callback function if it is set, otherwise
None.- 返回类型
Optional[Callable[[optuna.study.Study, optuna.trial._frozen.FrozenTrial], None]]
- get_heartbeat_interval()
Get the heartbeat interval if it is set.
- get_n_trials(study_id, state=None)
Count the number of trials in a study.
- 参数
study_id (int) – ID of the study.
state (Optional[Union[Tuple[optuna.trial._state.TrialState, ...], optuna.trial._state.TrialState]]) – Trial states to filter on. If
None, include all states.
- 返回
Number of trials in the study.
- 引发
KeyError – If no study with the matching
study_idexists.- 返回类型
- get_study_directions(study_id)[源代码]
Read whether a study maximizes or minimizes an objective.
- get_trial(trial_id)[源代码]
Read a trial.
- get_trial_number_from_id(trial_id)[源代码]
Read the trial number of a trial.
备注
The trial number is only unique within a study, and is sequential.
- get_trial_params(trial_id)
Read the parameter dictionary of a trial.
- get_trial_system_attrs(trial_id)
Read the optuna-internal attributes of a trial.
- get_trial_user_attrs(trial_id)
Read the user-defined attributes of a trial.
- is_heartbeat_enabled()
Check whether the storage enables the heartbeat.
- record_heartbeat(trial_id)
Record the heartbeat of the trial.
- 参数
trial_id (int) – ID of the trial.
- 返回类型
None
- remove_session()
Clean up all connections to a database.
- 返回类型
None
- set_study_directions(study_id, directions)[源代码]
Register optimization problem directions to a study.
- 参数
study_id (int) – ID of the study.
directions (Sequence[optuna._study_direction.StudyDirection]) – A sequence of direction whose element is either
MAXIMIZEorMINIMIZE.
- 引发
KeyError – If no study with the matching
study_idexists.ValueError – If the directions are already set and the each coordinate of passed
directionsis the opposite direction orNOT_SET.
- 返回类型
None
- set_study_system_attr(study_id, key, value)[源代码]
Register an optuna-internal attribute to a study.
This method overwrites any existing attribute.
- set_study_user_attr(study_id, key, value)[源代码]
Register a user-defined attribute to a study.
This method overwrites any existing attribute.
- set_trial_intermediate_value(trial_id, step, intermediate_value)[源代码]
Report an intermediate value of an objective function.
This method overwrites any existing intermediate value associated with the given step.
- 参数
- 引发
KeyError – If no trial with the matching
trial_idexists.RuntimeError – If the trial is already finished.
- 返回类型
None
- set_trial_param(trial_id, param_name, param_value_internal, distribution)[源代码]
Set a parameter to a trial.
- 参数
- 引发
KeyError – If no trial with the matching
trial_idexists.RuntimeError – If the trial is already finished.
- 返回类型
None
- set_trial_state(trial_id, state)[源代码]
Update the state of a trial.
- 参数
trial_id (int) – ID of the trial.
state (optuna.trial._state.TrialState) – New state of the trial.
- 返回
Trueif the state is successfully updated.Falseif the state is kept the same. The latter happens when this method tries to update the state ofRUNNINGtrial toRUNNING.- 引发
KeyError – If no trial with the matching
trial_idexists.RuntimeError – If the trial is already finished.
- 返回类型
- set_trial_system_attr(trial_id, key, value)[源代码]
Set an optuna-internal attribute to a trial.
This method overwrites any existing attribute.
- 参数
- 引发
KeyError – If no trial with the matching
trial_idexists.RuntimeError – If the trial is already finished.
- 返回类型
None
- set_trial_user_attr(trial_id, key, value)[源代码]
Set a user-defined attribute to a trial.
This method overwrites any existing attribute.
- 参数
- 引发
KeyError – If no trial with the matching
trial_idexists.RuntimeError – If the trial is already finished.
- 返回类型
None
- set_trial_values(trial_id, values)[源代码]
Set return values of an objective function.
This method overwrites any existing trial values.
- 参数
- 引发
KeyError – If no trial with the matching
trial_idexists.RuntimeError – If the trial is already finished.
- 返回类型
None