-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
has_nsfw_concept is a bool #3790
Comments
Can you please add a reproducible code snippet? |
I had the same issue after the version upgrade, but I was able to resolve it. I had used a trick to disable the safety_check in the pipeline as follows, but after the version upgrade, the code checks if it's None, so I made the following changes. Before: pipeline.safety_checker = lambda images, clip_input: (images, False) After: pipeline.safety_checker = lambda images, clip_input: (images, None) |
I can't disable NSFW, it's highly important for my use case |
This issue has been automatically marked as stale because it has not had recent activity. If you think this still needs to be addressed please comment on this thread. Please note that issues that do not follow the contributing guidelines are likely to be ignored. |
Unless something has been fixed in the background, this issue does not seem to be fixed. Here's the downstream impact: riffusion/riffusion-hobby#148 |
Hi, I noticed that most of the implementations of the smooth zoom in SD died because of an error that comes from
pipeline_stable_diffusion_inpaint.py, line 1064
"TypeError: 'bool' object is not iterable"
Wonder if anybody knows what caused it and if it's a bug
The text was updated successfully, but these errors were encountered: