From f80a8e3c024deab4dd96e1d8f668738ef08e5a0f Mon Sep 17 00:00:00 2001 From: c-bata Date: Sat, 29 Jul 2023 21:33:07 +0900 Subject: [PATCH] Fix label of streamlit example --- examples/streamlit_plugin/rgb_evaluator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/streamlit_plugin/rgb_evaluator.py b/examples/streamlit_plugin/rgb_evaluator.py index 002ab039..5836dbd6 100644 --- a/examples/streamlit_plugin/rgb_evaluator.py +++ b/examples/streamlit_plugin/rgb_evaluator.py @@ -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