From a9776f00eadf5520c0570d1877db71edb5de4558 Mon Sep 17 00:00:00 2001 From: Manith Ratnayake <144333591+Manith-Ratnayake@users.noreply.github.com> Date: Tue, 26 Aug 2025 13:50:16 +0000 Subject: [PATCH] docs: correct typos in using-diffusers/other-formats --- docs/source/en/using-diffusers/other-formats.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/en/using-diffusers/other-formats.md b/docs/source/en/using-diffusers/other-formats.md index 11afbf29d3f2..59835bbf2622 100644 --- a/docs/source/en/using-diffusers/other-formats.md +++ b/docs/source/en/using-diffusers/other-formats.md @@ -176,7 +176,7 @@ Benefits of using the Diffusers-multifolder layout include: ).to("cuda") turbo_pipeline.scheduler = EulerDiscreteScheduler.from_config( turbo_pipeline.scheduler.config, - timestep+spacing="trailing" + timestep_spacing="trailing" ) image = turbo_pipeline( "an astronaut riding a unicorn on mars", @@ -267,6 +267,7 @@ pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_d save_folder = "flux-dev" pipe.save_pretrained("flux-dev") export_folder_as_dduf("flux-dev.dduf", folder_path=save_folder) +``` > [!TIP] > Packaging and loading quantized checkpoints in the DDUF format is supported as long as they respect the multi-folder structure.