chat / app.py
sujitb's picture
init app
589c9b1 verified
raw
history blame
202 Bytes
import streamlit as st
import transformers
from transformers import pipeline
pipe= pipeline('sentiment-analysis')
text = st.textarea('Enter some text')
if text:
out= pipe(text)
st.json(out)