Skip to content

Commit 0e53ad0

Browse files
authored
Merge branch 'main' into fixes-issue-11388
2 parents 76ea98d + e23705e commit 0e53ad0

File tree

147 files changed

+3629
-2573
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+3629
-2573
lines changed

docs/source/en/_toctree.yml

+16-17
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,8 @@
1717
title: AutoPipeline
1818
- local: tutorials/basic_training
1919
title: Train a diffusion model
20-
- local: tutorials/using_peft_for_inference
21-
title: Load LoRAs for inference
2220
- local: tutorials/fast_diffusion
2321
title: Accelerate inference of text-to-image diffusion models
24-
- local: tutorials/inference_with_big_models
25-
title: Working with big models
2622
title: Tutorials
2723
- sections:
2824
- local: using-diffusers/loading
@@ -33,11 +29,24 @@
3329
title: Load schedulers and models
3430
- local: using-diffusers/other-formats
3531
title: Model files and layouts
36-
- local: using-diffusers/loading_adapters
37-
title: Load adapters
3832
- local: using-diffusers/push_to_hub
3933
title: Push files to the Hub
4034
title: Load pipelines and adapters
35+
- sections:
36+
- local: tutorials/using_peft_for_inference
37+
title: LoRA
38+
- local: using-diffusers/ip_adapter
39+
title: IP-Adapter
40+
- local: using-diffusers/controlnet
41+
title: ControlNet
42+
- local: using-diffusers/t2i_adapter
43+
title: T2I-Adapter
44+
- local: using-diffusers/dreambooth
45+
title: DreamBooth
46+
- local: using-diffusers/textual_inversion_inference
47+
title: Textual inversion
48+
title: Adapters
49+
isExpanded: false
4150
- sections:
4251
- local: using-diffusers/unconditional_image_generation
4352
title: Unconditional image generation
@@ -59,8 +68,6 @@
5968
title: Create a server
6069
- local: training/distributed_inference
6170
title: Distributed inference
62-
- local: using-diffusers/merge_loras
63-
title: Merge LoRAs
6471
- local: using-diffusers/scheduler_features
6572
title: Scheduler features
6673
- local: using-diffusers/callback
@@ -97,20 +104,12 @@
97104
title: SDXL Turbo
98105
- local: using-diffusers/kandinsky
99106
title: Kandinsky
100-
- local: using-diffusers/ip_adapter
101-
title: IP-Adapter
102107
- local: using-diffusers/omnigen
103108
title: OmniGen
104109
- local: using-diffusers/pag
105110
title: PAG
106-
- local: using-diffusers/controlnet
107-
title: ControlNet
108-
- local: using-diffusers/t2i_adapter
109-
title: T2I-Adapter
110111
- local: using-diffusers/inference_with_lcm
111112
title: Latent Consistency Model
112-
- local: using-diffusers/textual_inversion_inference
113-
title: Textual inversion
114113
- local: using-diffusers/shap-e
115114
title: Shap-E
116115
- local: using-diffusers/diffedit
@@ -180,7 +179,7 @@
180179
title: Quantization Methods
181180
- sections:
182181
- local: optimization/fp16
183-
title: Speed up inference
182+
title: Accelerate inference
184183
- local: optimization/memory
185184
title: Reduce memory usage
186185
- local: optimization/torch2.0

docs/source/en/api/pipelines/animatediff.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ pipe.to("cuda")
966966
prompt = {
967967
0: "A caterpillar on a leaf, high quality, photorealistic",
968968
40: "A caterpillar transforming into a cocoon, on a leaf, near flowers, photorealistic",
969-
80: "A cocoon on a leaf, flowers in the backgrond, photorealistic",
969+
80: "A cocoon on a leaf, flowers in the background, photorealistic",
970970
120: "A cocoon maturing and a butterfly being born, flowers and leaves visible in the background, photorealistic",
971971
160: "A beautiful butterfly, vibrant colors, sitting on a leaf, flowers in the background, photorealistic",
972972
200: "A beautiful butterfly, flying away in a forest, photorealistic",

docs/source/en/api/pipelines/ledits_pp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can find additional information about LEDITS++ on the [project page](https:/
2929
</Tip>
3030

3131
<Tip warning={true}>
32-
Due to some backward compatability issues with the current diffusers implementation of [`~schedulers.DPMSolverMultistepScheduler`] this implementation of LEdits++ can no longer guarantee perfect inversion.
32+
Due to some backward compatibility issues with the current diffusers implementation of [`~schedulers.DPMSolverMultistepScheduler`] this implementation of LEdits++ can no longer guarantee perfect inversion.
3333
This issue is unlikely to have any noticeable effects on applied use-cases. However, we provide an alternative implementation that guarantees perfect inversion in a dedicated [GitHub repo](https://github.com/ml-research/ledits_pp).
3434
</Tip>
3535

docs/source/en/api/pipelines/wan.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ pipe = WanImageToVideoPipeline.from_pretrained(
285285
image_encoder=image_encoder,
286286
torch_dtype=torch.bfloat16
287287
)
288-
# Since we've offloaded the larger models alrady, we can move the rest of the model components to GPU
288+
# Since we've offloaded the larger models already, we can move the rest of the model components to GPU
289289
pipe.to("cuda")
290290

291291
image = load_image(
@@ -368,7 +368,7 @@ pipe = WanImageToVideoPipeline.from_pretrained(
368368
image_encoder=image_encoder,
369369
torch_dtype=torch.bfloat16
370370
)
371-
# Since we've offloaded the larger models alrady, we can move the rest of the model components to GPU
371+
# Since we've offloaded the larger models already, we can move the rest of the model components to GPU
372372
pipe.to("cuda")
373373

374374
image = load_image(

0 commit comments

Comments
 (0)