James McCool commited on
Commit
f0e935b
·
1 Parent(s): 94f8ddd

Add prediction settings to app.py for match format selection. Introduced a new subheader and selectbox for users to choose between BO1, BO3, or BO5 formats, enhancing the user interface and improving the prediction process.

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -72,6 +72,13 @@ with st.sidebar:
72
  options=team_names,
73
  index=team_names.index("T1") if "T1" in team_names else 0
74
  )
 
 
 
 
 
 
 
75
 
76
  col1, col2 = st.columns(2)
77
  with col1:
 
72
  options=team_names,
73
  index=team_names.index("T1") if "T1" in team_names else 0
74
  )
75
+
76
+ st.subheader("Prediction Settings")
77
+ num_games = st.selectbox(
78
+ "Is the match BO1, BO3, or BO5?",
79
+ options=["BO1", "BO3", "BO5"],
80
+ index=0
81
+ )
82
 
83
  col1, col2 = st.columns(2)
84
  with col1: