ehagey commited on
Commit
5ba6e71
·
verified ·
1 Parent(s): be672c6

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -49,7 +49,7 @@ with left_col:
49
  uniform_runs = st.checkbox("Run all LLMs the same number of times", value=True)
50
 
51
  if uniform_runs:
52
- uniform_run_count = st.number_input("Number of runs for all LLMs", min_value=1, value=1, step=1)
53
  run_counts = {llm: uniform_run_count for llm in selected_llms}
54
  else:
55
  st.write("Set individual run counts for each LLM:")
 
49
  uniform_runs = st.checkbox("Run all LLMs the same number of times", value=True)
50
 
51
  if uniform_runs:
52
+ uniform_run_count = st.number_input("Number of runs for all LLMs", min_value=1, value=400000, step=1)
53
  run_counts = {llm: uniform_run_count for llm in selected_llms}
54
  else:
55
  st.write("Set individual run counts for each LLM:")