CoolFace
Apppublic

feteezuk/beginner_friendly_tutorials

sourceHugging Faceccupdated 4y agoView on Hugging Face
0likes
app.py9 linesDownload Raw Back to root
1from transformers import pipeline2import streamlit as st3 4pipe = pipeline("sentiment-analysis")5text = st.text_area("Enter Name: ")6 7if text:8  out = pipe(text)9  st.json(out)