Spaces:
Runtime error
Runtime error
| 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) |