Jeffrey Rathgeber Jr
sample model choice
e43f53b unverified
raw
history blame
298 Bytes
import streamlit as st
import numpy as np
st.text_input("Input Text Here:", "I really like the color of your car!")
options = st.multiselect(
'What pre-trained model would you like to use for your sentiment analysis?',
['TensorFlow', 'PyTorch', 'JAX'])
st.write('You selected:', options)