File size: 515 Bytes
c5515ea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
from transformers import pipeline
# Load the sentiment analysis pipeline
classifier = pipeline("sentiment-analysis")
# Create a title for your app
st.title("Sentiment Analysis App")
# Create a text input box for the user
text = st.text_area("Enter text for vibe check:")
# Analyze the sentiment of the text when the user clicks the button
if st.button("Analyze"):
result = classifier(text)
st.write("Sentiment:", result[0]["label"])
st.write("Confidence:", result[0]["score"]) |