File size: 278 Bytes
35f56ba
 
d71bb22
e43f53b
 
c704d04
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st
import numpy as np

st.text_input("Input Text Here:", "I really like the color of your car!")

option = st.selectbox('What pre-trained model would you like for your sentiment analysis?',('TensorFlow', 'PyTorch', 'JAX'))

st.write('You selected:', option)