Spaces:
Runtime error
Runtime error
Jeffrey Rathgeber Jr
commited on
updatedmodelchoice
Browse files
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 |
-
|
7 |
-
'What pre-trained model would you like
|
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'])
|
|
|
|