Spaces:
Runtime error
Runtime error
Jeffrey Rathgeber Jr
commited on
sample model choice
Browse files
app.py
CHANGED
@@ -1,4 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
import numpy as np
|
3 |
|
4 |
-
st.text_input("Input Text Here:", "I really like the color of your car!")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
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)
|