blog_generation / app.py
YasirAbdali's picture
Update app.py
4ab991c verified
raw
history blame
182 Bytes
from transformers import pipeline
import streamlit as staticmethod
pipe=pipeline("sentiment-analysis")
text=st.text_area("Enter text")
if text:
out=pipe(text)
st.json(out)