Space1 / app.py
adhvaithprasad
added requirements.tx and modified app.py
a8fe1ca
raw
history blame contribute delete
650 Bytes
import streamlit as st
from transformers import pipeline
# x = st.slider('Select a value')
# st.write(x, 'squared is', x * x)
def sentimentAnalysis():
sentiment_pipeline = pipeline("sentiment-analysis")
st.title("Sentiment Analysis with HuggingFace Spaces")
st.write("Enter a sentence to analyze its sentiment:")
user_input = st.text_input("")
if user_input:
result = sentiment_pipeline(user_input)
sentiment = result[0]["label"]
confidence = result[0]["score"]
st.write(f"Sentiment: {sentiment}")
st.write(f"Confidence: {confidence:.2f}")
if __name__=="__main__":
sentimentAnalysis()