napoles3d/tutorial
0
1import streamlit as st2from transformers import pipeline3st.title('Ejemplo en Hugging Face')4pipe = pipeline('sentiment-analysis')5text = st.text_area('enter some text')6if text:7 out = pipe(text)8 st.json(out)1import streamlit as st2from transformers import pipeline3st.title('Ejemplo en Hugging Face')4pipe = pipeline('sentiment-analysis')5text = st.text_area('enter some text')6if text:7 out = pipe(text)8 st.json(out)