moderation / app.py
David Mabula
Create app.py
872dd95
raw
history blame contribute delete
175 Bytes
from detoxify import Detoxify
import streamlit as st
input = st.text_area('Enter a sentence')
if input:
results = Detoxify('original').predict(input)
st.json(results)