Skip to content

[scheduler] Support custom sigmas/timesteps in UniPCMultistepScheduler #12109

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

a-r-r-o-w
Copy link
Member

Fixes #12108

import torch
from diffusers import QwenImagePipeline, UniPCMultistepScheduler

pipe = QwenImagePipeline.from_pretrained("Qwen/Qwen-Image", torch_dtype=torch.bfloat16)
pipe.scheduler = UniPCMultistepScheduler.from_config(pipe.scheduler.config, prediction_type="flow_prediction", use_flow_sigmas=True)
pipe.to("cuda")
image = pipe("a cat holding a sign that says 'hello world'", num_inference_steps=30).images[0]
image.save("output.png")
output

The quality is not great, not sure why yet. Still needs debugging.

cc @Vargol

@a-r-r-o-w a-r-r-o-w requested a review from yiyixuxu August 9, 2025 23:43
@HuggingFaceDocBuilderDev

The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update.

@a-r-r-o-w
Copy link
Member Author

I think it's working:

import torch
from diffusers import QwenImagePipeline, UniPCMultistepScheduler

pipe = QwenImagePipeline.from_pretrained("Qwen/Qwen-Image", torch_dtype=torch.bfloat16)
pipe.scheduler = UniPCMultistepScheduler.from_config(pipe.scheduler.config, prediction_type="flow_prediction", use_flow_sigmas=True)
pipe.to("cuda")

prompt = """A coffee shop entrance features a chalkboard sign reading "Qwen Coffee 😊 $2 per cup," with a neon light beside it displaying "通义千问". Next to it hangs a poster showing a beautiful Chinese woman, and beneath the poster is written "π≈3.1415926-53589793-23846264-33832795-02384197". Ultra HD, 4K, cinematic composition."""
image = pipe(prompt, negative_prompt=" ", width=1664, height=928, num_inference_steps=30, generator=torch.Generator().manual_seed(42)).images[0]
image.save("output.png")
FM Euler (50 steps) UniPC (30 steps)

cc @asomoza in case you want to do some tests

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Qwen Image and Chroma pipeline breaks using schedulers that enable flow matching by parameter.
2 participants