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? Integrate AnimatediffSDXL and Controlnet pipeline by combining the StableDiffusionXLControlNetAdapterPipeline and AnimateDiffSDXLPipeline. The code is executable, even though the output isn't as good as expected....
Added LoRA support to HunyuanDiT pipeline. Currently can only support `lora_scale=1`. You may test the PR with `test_hunyuandit_lora.py`. A pre-trained LoRA model is uploaded here: https://huggingface.co/XCLiu/hunyuandit-lora-test Please change `YOUR_LORA_PATH` to...
**Is your feature request related to a problem? Please describe.** The current AnimateDiffSDXLPipeline doesn't support neither 1 controlnet nor multi controlnets. I've been working on this task for several days...
# What does this PR do? Add support for XFormers in SD3 (#8535) ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can...
### Describe the bug I'm trying to use a single IP adapter with multiple IP adapter images and masks. This section of the docs gives an example of how I...
# What does this PR do? It's getting popular and future fine-tunes might benefit from this feature.
### Describe the bug I try to finetune a SDXL model. But meet same questions. I can not resume from a checkpoint model and the error is shown as follows:...
StableDiffusionControlNetImg2ImgPipeline call report “argument of type 'NoneType' is not iterable”
### Describe the bug argument of type 'NoneType' is not iterable checkpoint = os.path.join(hub_dir, "checkpoints/StableDiffusionXL/model/ud_sdxl-动漫二次元.safetensors") pipe = StableDiffusionControlNetImg2ImgPipeline.from_single_file( checkpoint, controlnet=controlnet, torch_dtype=torch.float16, use_safetensors=True, variant="fp16" ) 加载不了本地下载的ud_sdxl-动漫二次元.safetensors模型 ### Reproduction params = request.json...
### Describe the bug I am currently comparing the inpainting generated results between the [diffusers/stable-diffusion-xl-1.0-inpainting-0.1](https://huggingface.co/diffusers/stable-diffusion-xl-1.0-inpainting-0.1) model and the [stabilityai/stable-diffusion-2-inpainting](https://huggingface.co/stabilityai/stable-diffusion-2-inpainting) model, and I noticed that the `strength` parameter in the `__call__()`...
# What does this PR do? In Diffusion models such as [`stabilityai/stable-diffusion-xl-base-1.0`](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0) generating images at resolutions far below the base training resolution gives bad results:  Excellent work in [`Extraltodeus/Stable-Diffusion-temperature-settings`](https://github.com/Extraltodeus/Stable-Diffusion-temperature-settings)...