demo-app / app.py
aman-ht's picture
modify the typo issue
2dee3ac
raw
history blame contribute delete
194 Bytes
import streamlit as st
from transformers import pipeline
classifier = pipeline("sentiment-analysis")
text = st.text_area("Enter some text")
if text:
out = classifier(text)
st.json(out)