artdwn's picture
Upload folder using huggingface_hub
e574ffe
raw
history blame contribute delete
260 Bytes
import tempfile
from ifnude import detect
def convert_to_sd(img):
shapes = []
chunks = detect(img)
for chunk in chunks:
shapes.append(chunk["score"] > 0.7)
return [any(shapes), tempfile.NamedTemporaryFile(delete=False, suffix=".png")]