patpizio commited on
Commit
5ed778a
·
1 Parent(s): 2e52e56

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -6,9 +6,7 @@ st.title('How does the LLM choose its words?')
6
 
7
  model_checkpoint = st.selectbox(
8
  "Model:",
9
- ("google/flan-t5-base", "google/flan-t5-xl"),
10
- label_visibility=st.session_state.visibility,
11
- disabled=st.session_state.disabled,
12
  )
13
  temperature = st.number_input('Temperature: ', min_value=0, max_value=1, value=0.5, format='%f')
14
 
 
6
 
7
  model_checkpoint = st.selectbox(
8
  "Model:",
9
+ ("google/flan-t5-base", "google/flan-t5-xl")
 
 
10
  )
11
  temperature = st.number_input('Temperature: ', min_value=0, max_value=1, value=0.5, format='%f')
12