Skip to content

v0.13.0b1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 07 Sep 02:11
· 1183 commits to main since this release
9c037a4

Highlights

Support user-defined Plotly objects

import optuna
from optuna_dashboard import save_plotly_graph_object

def objective(trial):
    x = trial.suggest_float("x", -100, 100)
    y = trial.suggest_categorical("y", [-1, 0, 1])
    return x**2 + y

study = optuna.create_study()
study.optimize(objective, n_trials=100)
figure = optuna.visualization.plot_optimization_history(study)
save_plotly_graph_object(study, figure)
Screenshot 2023-09-07 10 42 05

What's Changed

New Contributors

Full Changelog: v0.12.0...v0.13.0b1