Spaces:
Sleeping
Sleeping
| 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) |