demo / app.py
ahmedalrashedi's picture
Create app.py
dac9003
raw
history blame
No virus
218 Bytes
import streamlit as st
from transformers import pipeline
sentiment_analysis = pipeline("sentiment-analysis")
text = st.text_input("Enter some text")
if text:
result = sentiment_analysis(text)
st.json(result)