chat / app.py
sujitb's picture
Update app.py
35bafd6 verified
raw
history blame
203 Bytes
import streamlit as st
import transformers
from transformers import pipeline
pipe= pipeline('sentiment-analysis')
text = st.text_area('Enter some text')
if text:
out= pipe(text)
st.json(out)