-
Hi there, can optuna dashboard load the study persisted in .pkl file? I only found user guides about RDBStorage and JournalFileStorage. |
Beta Was this translation helpful? Give feedback.
Answered by
c-bata
Feb 29, 2024
Replies: 1 comment 4 replies
-
Thank you for using Optuna. Unfortunately, Optuna Dashboard doesn't support such a use case. Following code might work though. import pickle
from optuna_dashboard import run_server
study = pickle.loads("...pkl")
storage = study.storage
run_server(storage) https://optuna-dashboard.readthedocs.io/en/latest/getting-started.html#python-interface |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ttzhu813 Could you try the following code?