diffusers
diffusers copied to clipboard
🤗 Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.
# What does this PR do? This PR makes sure that the naming for `UNet2DConditionModel` is updated. By adding a couple of lines of code to `register_to_config` it is made...
# What does this PR do? Adds support for ControlNet LoRA. continuing on @sayakpaul design #4899 Fixes #5800 ## Before submitting - [ ] This PR fixes a typo or...
### Describe the bug ```bash File "/usr/local/lib/python3.10/dist-packages/diffusers/pipelines/ledits_pp/pipeline_leditspp_stable_diffusion_xl.py", line 1422, in encode_image x0 = self.vae.encode(image).latent_dist.mode() File "/usr/local/lib/python3.10/dist-packages/diffusers/utils/accelerate_utils.py", line 46, in wrapper return method(self, *args, **kwargs) File "/usr/local/lib/python3.10/dist-packages/diffusers/models/autoencoders/autoencoder_kl.py", line 260, in encode...
# What does this PR do? Fixes #7842 Adds logic to check_inputs for the IF SuperResolution pipeline so that the user receives a clear error when attempting to run the...
### Describe the bug I am trying to run dreambooth stable diffusion on m3 max. However I am running into an issue because of which whenever I am trying to...
### Describe the bug I am using a custom model. On A1111 it is far more colorful than on diffusers. I am aware that it's impossible to replicate images between...
### Describe the bug A LoRA + TI token pair trained with the advanced dreambooth script doesn't work with negative prompts. In my testing, the validations all work perfectly if...
### Describe the bug version: 0.27.0, 0.27.1 when use StableDiffusionXLPipeline.from_single_file,error occur: ``` File "aaa/anaconda/envs/sd-webui/lib/python3.10/site-packages/diffusers/pipelines/stable_diffusion_xl/pipeline_stable_diffusion_xl.py", line 383, in encode_prompt prompt_embeds = text_encoder(text_input_ids.to(device), output_hidden_states=True) File "aaa/anaconda/envs/sd-webui/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1501, in _call_impl return forward_call(*args,...
Working from the following code, but would like to use the tokenized prompt so that I can interpolate between 2 prompts and produce a video output. The creation of the...