File size: 658 Bytes
1cae9bb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from transformers import pipeline

# x = st.slider('Select a value')
# st.write(x, 'squared is', x * x)
def sentimentAnalysis(user_input):
    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"]
        return {"Sentiment": sentiment, "Confidence":confidence }
        #st.write(f"Sentiment: {sentiment}")
        #st.write(f"Confidence: {confidence:.2f}")