Fix label of streamlit example

This commit is contained in:
c-bata
2023-07-29 21:33:07 +09:00
parent b9d6feb9da
commit f80a8e3c02
+1 -1
View File
@@ -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