Blog-Gen / app.py
abdulllah01's picture
Update app.py
50160f2 verified
raw
history blame
172 Bytes
import streamlit as st
from transformers import pipeline
pipe=pipeline('sentiment-analysis')
text=st.text_area("Enter Text: ")
if text:
out= pipe(text)
print(out)