nateraw / stable-diffusion-videos

Create 🔥 videos with Stable Diffusion by exploring the latent space and morphing between text prompts
Apache License 2.0
4.36k stars 417 forks source link

NSFW #102

Closed sha5b closed 1 year ago

sha5b commented 1 year ago

"Potential NSFW content was detected in one or more images. A black image will be returned instead. Try again with a different prompt and/or seed."

I get it all the time in between steps. is there a possibility to tune it down? The black frames between the animation get annoying

ZeroCool940711 commented 1 year ago

You can disable the safety checker filter, just pass the safety_checker=None, argument when loading the model and it should remove the filter, you will get a message about it saying that it is not recommended to disable or something similar but you can ignore it, would be nice if we didn't get any warning at all as we should have the right to completely opt out of it tho but even if the warning is removed from this repo and library diffusers still shows something about it anyway.

sha5b commented 1 year ago

Cool, thx for the quick answer!

nateraw commented 1 year ago

Thank you @ZeroCool940711 ! Theres an example here that shows how to remove safety checker.