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.1.0.tar.gz (91.4 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.1.0-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: jsonify_optuna-0.1.0.tar.gz
  • Upload date:
  • Size: 91.4 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.1.0.tar.gz
Algorithm Hash digest
SHA256 0a0adf28a68c44c85c06793f96c5484c94f31324ce2c9feb63bce24ca23f8684
MD5 0f26ce589bde3020c0b23718417998c5
BLAKE2b-256 70bcd5bc3c7bb596eeb2672ca3941bb2449c51588a48ba7532a4a0ac58335880

See more details on using hashes here.

File details

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

File metadata

  • Download URL: jsonify_optuna-0.1.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.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e8e3dfd3f05656d612ce17b65afbccb47e58eca5bdc5c3329c66ab8e8a74a30f
MD5 7b1e5a7cddf9a8505e70d97e47a72037
BLAKE2b-256 26388abbd972f651ca2e6adf174cf39ca9c7cd070fff89590b844717625ea815

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