temp / app.py
chaman420's picture
Create app.py
30a4c4a verified
raw
history blame
187 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
text = st. text area('enter some text!')
if text:
out = pipe (text)
st. json (out)