lyhue1991's picture
Update app.py
56e1407
raw
history blame contribute delete
No virus
217 Bytes
import streamlit as st
from transformers import pipeline
st.title('Text Classification')
pipe = pipeline("text-classification")
text = st.text_area("Enter some text:")
if text:
out = pipe(text)
st.json(out)