Skip to content

Bump diffusers from 0.25.0 to 0.27.2#65

Open
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/pip/dev/diffusers-0.27.2
Open

Bump diffusers from 0.25.0 to 0.27.2#65
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/pip/dev/diffusers-0.27.2

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 20, 2024

Bumps diffusers from 0.25.0 to 0.27.2.

Release notes

Sourced from diffusers's releases.

v0.27.2: Fix scheduler add_noise 🐞, embeddings in StableCascade, scale when using LoRA

All commits

v0.27.1: Clear scale argument confusion for LoRA

All commits

  • Release: v0.27.0 by @​DN6 (direct commit on v0.27.1-patch)
  • [LoRA] pop the LoRA scale so that it doesn't get propagated to the weeds by @​sayakpaul in #7338
  • Release: 0.27.1-patch by @​sayakpaul (direct commit on v0.27.1-patch)

v0.26.3: Patch release to fix DPMSolverSinglestepScheduler and configuring VAE from single file mixin

All commits

  • Fix configuring VAE from single file mixin by @​DN6 in #6950
  • [DPMSolverSinglestepScheduler] correct get_order_list for solver_order=2and lower_order_final=True by @​yiyixuxu in #6953

v0.26.1: Patch release to fix torchvision dependency

In the v0.26.0 release, we slipped in the torchvision library as a required library, which shouldn't have been the case. This is now fixed.

All commits

v0.26.0: New video pipelines, single-file checkpoint revamp, multi IP-Adapter inference with multiple images

This new release comes with two new video pipelines, a more unified and consistent experience for single-file checkpoint loading, support for multiple IP-Adapters’ inference with multiple reference images, and more.

I2VGenXL

I2VGenXL is an image-to-video pipeline, proposed in I2VGen-XL: High-Quality Image-to-Video Synthesis via Cascaded Diffusion Models.

import torch
from diffusers import I2VGenXLPipeline
from diffusers.utils import export_to_gif, load_image
repo_id = "ali-vilab/i2vgen-xl"
pipeline = I2VGenXLPipeline.from_pretrained(repo_id, torch_dtype=torch.float16).to("cuda")
pipeline.enable_model_cpu_offload()
image_url = "https://huggingface.co/datasets/diffusers/docs-images/resolve/main/i2vgen_xl_images/img_0001.jpg"
image = load_image(image_url).convert("RGB")
prompt = "A green frog floats on the surface of the water on green lotus leaves, with several pink lotus flowers, in a Chinese painting style."
negative_prompt = "Distorted, discontinuous, Ugly, blurry, low resolution, motionless, static, disfigured, disconnected limbs, Ugly faces, incomplete arms"
generator = torch.manual_seed(8888)
frames = pipeline(
prompt=prompt,
</tr></table>

... (truncated)

Commits
  • b69fd99 Release: v0.27.2
  • 26b694b [scheduler] fix a bug in add_noise (#7386)
  • 84bc0e4 [LoRA] fix cross_attention_kwargs problems and tighten tests (#7388)
  • 5584e1c Fix issue with prompt embeds and latents in SD Cascade Decoder with multiple ...
  • d7634cc Release: 0.27.1-patch
  • 1ab57b6 [LoRA] pop the LoRA scale so that it doesn't get propagated to the weeds (#7338)
  • cfa7c0a Release: v0.27.0
  • 4974b84 Update Cascade Tests (#7324)
  • 83062fb [Advanced DreamBooth LoRA SDXL] Support EDM-style training (follow up of #71...
  • b6d7e31 add edm schedulers in doc (#7319)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [diffusers](https://github.com/huggingface/diffusers) from 0.25.0 to 0.27.2.
- [Release notes](https://github.com/huggingface/diffusers/releases)
- [Commits](huggingface/diffusers@v0.25.0...v0.27.2)

---
updated-dependencies:
- dependency-name: diffusers
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants