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