File size: 217 Bytes
4e193f4
 
 
56e1407
4e193f4
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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)