File size: 509 Bytes
7f81307
 
7179214
7f81307
 
7179214
3e1c304
 
1ea0270
a222015
3e1c304
a222015
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import streamlit as st
from transformers import pipeline

pipe = pipeline(task="sentiment-analysis")
st.title("Toxic Tweets Analyzer")

#form
with st.form("my_form"):
    submitted = st.form_submit_button("Analyze")
    tweet = st.text_area("enter tweet here:", value="i'm nice at ping pong")
    if submitted:
        out = pipe(tweet)
        
        # print out nicely
        sentiment = out[0]['label']
        score = out[0]['score']
        print(f"{tweet} \nsentiment: {sentiment} \nscore: {score}")