milstone2 / app.py
Gregoryjr
Update app.py
1188df8 unverified
raw
history blame
253 Bytes
import streamlit as st
from transformers import pipeline
st.title("Milestone #2")
text = st.text_input("write a statement")
classifier = pipeline("zero-shot-classification")
res = classifier(text, cata = ["offensive"],)
print(res)
st.button("submit")