mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-11 12:30:25 +08:00
Fix label of streamlit example
This commit is contained in:
@@ -33,7 +33,7 @@ def start_streamlit() -> None:
|
||||
study = optuna.load_study(
|
||||
storage="sqlite:///streamlit-db.sqlite3", study_name="Human-in-the-loop Optimization"
|
||||
)
|
||||
selected_trial = st.sidebar.selectbox("一覧", study.trials, format_func=lambda t: t.number)
|
||||
selected_trial = st.sidebar.selectbox("Trial", study.trials, format_func=lambda t: t.number)
|
||||
|
||||
if selected_trial is None:
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user