Almancy's picture
Create app.py
7634d81 verified
Raw
History Blame Contribute Delete
181 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
text = st.text_area('Ingrese su texto: ')
if text:
out = pipe(text)
st.json(out)