CoolFace
Apppublic

Gauravkumar2/response-type

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
app.py9 linesDownload Raw Back to root
1import streamlit as st 2from transformers import pipeline3 4pipe = pipeline('sentiment-analysis')5text = st.text_area('enter some text!')6 7if text:8    out = pipe(text)9    st.json(out)