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

modelchoice

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -3,6 +3,6 @@ import numpy as np
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'])
 
3
 
4
  st.text_input("Input Text Here:", "I really like the color of your car!")
5
 
6
+ option = st.selectbox('What pre-trained model would you like for your sentiment analysis?',('TensorFlow', 'PyTorch', 'JAX'))
7
+
8
+ st.write('You selected:', option)