Skip to content

Releases: optuna/optuna-dashboard

v0.15.1

29 Mar 08:33
355f161
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.15.0...v0.15.1

v0.15.0

12 Mar 06:47
0664ea3
Compare
Choose a tag to compare

What's Changed

New Contributors

Read more

v0.14.0

11 Dec 05:01
5dcc4cf
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.13.0...v0.14.0

v0.13.0

17 Oct 07:05
96a0af3
Compare
Choose a tag to compare

What's Changed

New Contributors

Read more

v0.13.0b1

07 Sep 02:11
9c037a4
Compare
Choose a tag to compare
v0.13.0b1 Pre-release
Pre-release

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

v0.12.0

09 Aug 06:47
92083b0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.11.0...v0.12.0

v0.11.0

04 Aug 07:07
15f8a97
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.10.3...v0.11.0

v0.10.3

23 Jun 02:07
a42bd09
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.10.2...v0.10.3

v0.10.2

13 Jun 01:09
8beadfc
Compare
Choose a tag to compare

What's Changed

  • Fix a bug that boto3.upload_fileobj may close the file by @c-bata in #498
  • Bump the version up to v0.10.2 by @c-bata in #499

Full Changelog: v0.10.1...v0.10.2

v0.10.1

12 Jun 09:30
ad7613d
Compare
Choose a tag to compare

What's Changed

  • Simplify _app.py by separating some storage related logic. by @c-bata in #477
  • Add type ignore comment for JSONSerializable by @c-bata in #480
  • Reduce the number of memory allocation on artifact backend. by @c-bata in #481
  • Add ArtifactNotFound exception by @c-bata in #482
  • Bump the version up to v0.10.1b1 by @c-bata in #483
  • Revert SupportsRead and use BinaryIO again by @c-bata in #489
  • Bump the version up to v0.10.1b2 by @c-bata in #490
  • Fix caption in docs by @Alnusjaponica in #491
  • Use pytest as a test runner by @c-bata in #492
  • Add exponential backoff middleware for ArtifactBackend by @c-bata in #493
  • Add AppendPrefix middleware for ArtifactBackend by @c-bata in #494
  • Bump the version up to v0.10.1 by @c-bata in #495

Full Changelog: v0.10.0...v0.10.1