demo-app / src /app.py
SpringDai's picture
Rename src/streamlit_app.py to src/app.py
cfdbc6d verified
raw
history blame contribute delete
186 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)