Jeffrey Rathgeber Jr commited on
Commit
020e7de
1 Parent(s): e43f53b

updatedmodelchoice

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -3,8 +3,6 @@ import numpy as np
3
 
4
  st.text_input("Input Text Here:", "I really like the color of your car!")
5
 
6
- options = st.multiselect(
7
- 'What pre-trained model would you like to use for your sentiment analysis?',
8
- ['TensorFlow', 'PyTorch', 'JAX'])
9
-
10
- st.write('You selected:', options)
 
3
 
4
  st.text_input("Input Text Here:", "I really like the color of your car!")
5
 
6
+ model = st.select_slider(
7
+ 'What pre-trained model would you like for your sentiment analysis?',
8
+ options=['TensorFlow', 'PyTorch', 'JAX'])