SQLiteOptunaTracker
Ancestors
systematica.tuners.base.BaseTrackerabc.ABC
Class variables
-
engine: Any: SQLAlchemy engine instance. Defaults to None. -
session_cls: Any: SQLAlchemy session factory.
Instance variables
url: str: Engine storage URL.
Methods
run_context
| Name | Type | Default | Description |
|---|---|---|---|
kwargs | tp.Kwargs | -- | Additional arguments. |
| Type | Description |
|---|---|
dict | Dictionary with ‘storage’ (Optuna RDBStorage) and ‘session’ (SQLAlchemy Session). |
run_study
| Name | Type | Default | Description |
|---|---|---|---|
objective | callable | -- | Objective function to optimize. |
create_study_kwargs | tp.Kwargs | -- | Arguments for optuna.create_study(). Must include study_name. |
optimize_kwargs | tp.Kwargs | -- | Arguments for study.optimize(). |
| Type | Description |
|---|---|
optuna.Study | Completed Optuna study. |

