AlejandraVento2
app.py fixed
addf543
raw
history blame
284 Bytes
import streamlit as st
from transformers import pipeline
import model.py
st.title("Analisis de Sentimientos")
txt = st.text_area(label="Please write what you want to analyze...")
predictions = run_sentiment_analysis(txt)
for prediction in predictions:
st.write(prediction)