demo-app / app.py
Aman30577's picture
Create app.py
16e898b
raw
history blame
179 Bytes
import streamlit as st
from transformers import pipiline
pipe = pipiline('sentiment-analysis')
text = st.text_are('Enter Some Text!')
if text :
out = pipe(text)
st.json(out)