tbgm / app.py
Soooma's picture
Add a HF web reference
ad4661b
raw
history blame contribute delete
No virus
241 Bytes
#https://huggingface.co/docs/transformers/model_sharing
import streamlit as st
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
text = st.text_area('Enter some text!')
if text:
out = pipe(text)
st.json(out)