Skip to main content

Convert an Optuna Study into a JSON-serializable dict.

Project description

jsonify-optuna

Convert an Optuna Study into a plain, JSON-serializable Python dict.

Installation

pip install jsonify-optuna

Usage

Convert an in-memory study to a JSON-friendly dict:

import optuna
from jsonify_optuna import jsonify
from optuna.trial import TrialState

def objective(trial):
    x = trial.suggest_float("x", -10.0, 10.0)
    return x ** 2

study = optuna.create_study(direction="minimize")
study.optimize(objective, n_trials=20)
result = jsonify(study, states=[TrialState.COMPLETE])
# This includes all the trials.
result = jsonify(study)

If you have a study stored in a backend, you can load it as follows:

from jsonify_optuna import load_study

# From an RDB (SQLite, PostgreSQL, etc.)
study = load_study(rdb_url="sqlite:///example.db", study_name="my_study")

# From a journal file
study = load_study(journal_path="journal.log", study_name="my_study")

# From a storage object directly
study = load_study(storage=my_storage, study_name="my_study")

[!NOTE] When the storage contains exactly one study, study_name can be omitted.

API Reference

jsonify(study, *, states=None, deepcopy=True)

Parameter Type Description
study optuna.Study The study to convert.
states list[TrialState] | None Filter trials by state. None includes all states.
deepcopy bool Whether to deep-copy trials from storage. Default True.

Returns a dict with:

Key Type Description
directions list[str] "minimize" or "maximize" per objective.
user_attrs dict Study-level user attributes.
metric_names list[str] | None Metric names if set, else None.
trials list[dict] Trial dicts (see below).
best_trial_indices list[int] Indices into trials for Pareto-front trials.

Each trial dict contains:

Key Type Description
state str "complete", "pruned", "fail", "running", or "waiting".
values list[float] | None Objective values. None if not complete.
params dict Parameter name-value pairs.
user_attrs dict Trial-level user attributes.
intermediate_values dict[int, float] Step-value pairs from trial.report().
distributions dict Parameter distributions (see below).

Distribution formats:

  • Int/Float: {"low": ..., "high": ..., "step": ..., "log": ...}
  • Categorical: {"choices": [...]}

load_study(*, study_name=None, storage=None, journal_path=None, rdb_url=None)

Parameter Type Description
study_name str | None Study name. Optional when storage has exactly one study.
storage BaseStorage | None An Optuna storage object.
journal_path str | None Path to a journal log file.
rdb_url str | None SQLAlchemy-style database URL.

Exactly one of storage, journal_path, or rdb_url must be provided.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jsonify_optuna-0.2.0.tar.gz (91.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jsonify_optuna-0.2.0-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

Details for the file jsonify_optuna-0.2.0.tar.gz.

File metadata

  • Download URL: jsonify_optuna-0.2.0.tar.gz
  • Upload date:
  • Size: 91.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for jsonify_optuna-0.2.0.tar.gz
Algorithm Hash digest
SHA256 99fa8807dc9f0fdb34b35e2a77872b40f325d1822264460e6d961d28b1b8f9ef
MD5 9402c10969a235df231a7328a2000243
BLAKE2b-256 e200725c67d26c57f019ef6d4d3a67ab5fd28d528c0966da0d82314186e1af83

See more details on using hashes here.

File details

Details for the file jsonify_optuna-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: jsonify_optuna-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 3.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for jsonify_optuna-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4b01fe55cf78931728b7e11b39605a210d9ca92bfacd507979df207aef9ee764
MD5 82aa6d29fbbee0f275635ccabedcf581
BLAKE2b-256 c3ccccf623a37771c57d2a1c519f784e3a468137a0eef3fbc51ecc1f6b740e0f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page