apps / app.py
karthickg12's picture
Update app.py
b828216 verified
raw
history blame
137 Bytes
import streamlit as st
from transformers import pipeline
pipe=pipeline("sentiment-analysis")
t=st.text_area("text")
st.write(pipe(t))