SentimentBuddy / app.py
sifujohn's picture
Update app.py
fca5d9b verified
raw
history blame
No virus
186 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
text = st.text_area('Enter given text')
if text:
out = pipe(text)
st.json(out)