Jeffrey Rathgeber Jr commited on
Commit
e43f53b
·
unverified ·
1 Parent(s): 9086e01

sample model choice

Browse files
Files changed (1) hide show
  1. app.py +7 -1
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)