4-itb-sentiment / app.py
itbetyar's picture
Update app.py
cfdb8e1 verified
raw
history blame contribute delete
314 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
# Display a welcome message
st.write("# Isten hozott az IT Betyár Sentiment Analysis Applikációjában")
text = st.text_area('Írjál be alább egy szöveget!')
if text:
out = pipe(text)
st.json(out)