test2 / app.py
erojuns's picture
Update app.py
63a51e3
raw
history blame
169 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
test = st.text_area('test')
if text:
out = pipe(text)
st.json(out)