We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cpu and gpu all go wrong
The text was updated successfully, but these errors were encountered:
I just had the same problem. Temporary fix until the devs figure it out:
in "E:\escape\anaconda\envs\riffusion\lib\site-packages\diffusers\pipelines\stable_diffusion\pipeline_stable_diffusion.py" replace
else: do_denormalize = [not has_nsfw for has_nsfw in has_nsfw_concept]
with
else: try: do_denormalize = [not has_nsfw for has_nsfw in has_nsfw_concept] except TypeError: do_denormalize = [True] * image.shape[0]
edit: see #148 for more info
Sorry, something went wrong.
No branches or pull requests
cpu and gpu all go wrong
The text was updated successfully, but these errors were encountered: