test2 / app.py
erojuns's picture
Create app.py
fb6a573
raw
history blame
170 Bytes
import streamlist as st
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
test = st.text_area('test')
if text:
out = pipe(text)
st.json(out)