_toctree.yml 24.4 KB
Newer Older
Steven Liu's avatar
Steven Liu committed
1
2
- title: Get started
  sections:
Nathan Lambert's avatar
Nathan Lambert committed
3
  - local: index
Steven Liu's avatar
Steven Liu committed
4
5
6
    title: Diffusers
  - local: installation
    title: Installation
Nathan Lambert's avatar
Nathan Lambert committed
7
  - local: quicktour
Steven Liu's avatar
Steven Liu committed
8
    title: Quickstart
Patrick von Platen's avatar
Patrick von Platen committed
9
  - local: stable_diffusion
10
    title: Basic performance
Steven Liu's avatar
Steven Liu committed
11

12
- title: Pipelines
Steven Liu's avatar
Steven Liu committed
13
14
  isExpanded: false
  sections:
Steven Liu's avatar
Steven Liu committed
15
  - local: using-diffusers/loading
16
    title: DiffusionPipeline
Steven Liu's avatar
Steven Liu committed
17
18
  - local: tutorials/autopipeline
    title: AutoPipeline
Steven Liu's avatar
Steven Liu committed
19
  - local: using-diffusers/custom_pipeline_overview
20
    title: Community pipelines and components
Steven Liu's avatar
Steven Liu committed
21
22
23
  - local: using-diffusers/callback
    title: Pipeline callbacks
  - local: using-diffusers/reusing_seeds
Steven Liu's avatar
Steven Liu committed
24
    title: Reproducibility
Steven Liu's avatar
Steven Liu committed
25
  - local: using-diffusers/schedulers
Steven Liu's avatar
Steven Liu committed
26
    title: Schedulers
Steven Liu's avatar
Steven Liu committed
27
  - local: using-diffusers/other-formats
Steven Liu's avatar
Steven Liu committed
28
    title: Model formats
Steven Liu's avatar
Steven Liu committed
29
  - local: using-diffusers/push_to_hub
30
    title: Sharing pipelines and models
Steven Liu's avatar
Steven Liu committed
31
32
33
34

- title: Adapters
  isExpanded: false
  sections:
Steven Liu's avatar
Steven Liu committed
35
36
37
38
39
40
41
42
43
44
45
46
  - local: tutorials/using_peft_for_inference
    title: LoRA
  - local: using-diffusers/ip_adapter
    title: IP-Adapter
  - local: using-diffusers/controlnet
    title: ControlNet
  - local: using-diffusers/t2i_adapter
    title: T2I-Adapter
  - local: using-diffusers/dreambooth
    title: DreamBooth
  - local: using-diffusers/textual_inversion_inference
    title: Textual inversion
Steven Liu's avatar
Steven Liu committed
47
48

- title: Inference
Steven Liu's avatar
Steven Liu committed
49
  isExpanded: false
Steven Liu's avatar
Steven Liu committed
50
51
  sections:
  - local: using-diffusers/weighted_prompts
Steven Liu's avatar
Steven Liu committed
52
    title: Prompting
Grant Sherrick's avatar
Grant Sherrick committed
53
54
  - local: using-diffusers/create_a_server
    title: Create a server
Steven Liu's avatar
Steven Liu committed
55
56
  - local: using-diffusers/batched_inference
    title: Batch inference
Steven Liu's avatar
Steven Liu committed
57
  - local: training/distributed_inference
Steven Liu's avatar
Steven Liu committed
58
    title: Distributed inference
Steven Liu's avatar
Steven Liu committed
59
60
61
62
63
64
65
66

- title: Inference optimization
  isExpanded: false
  sections:
  - local: optimization/fp16
    title: Accelerate inference
  - local: optimization/cache
    title: Caching
67
68
  - local: optimization/attention_backends
    title: Attention backends
Steven Liu's avatar
Steven Liu committed
69
70
71
  - local: optimization/memory
    title: Reduce memory usage
  - local: optimization/speed-memory-optims
72
    title: Compiling and offloading quantized models
Steven Liu's avatar
Steven Liu committed
73
74
75
76
77
78
79
80
81
82
  - title: Community optimizations
    sections:
    - local: optimization/pruna
      title: Pruna
    - local: optimization/xformers
      title: xFormers
    - local: optimization/tome
      title: Token merging
    - local: optimization/deepcache
      title: DeepCache
83
84
    - local: optimization/cache_dit
      title: CacheDiT
Steven Liu's avatar
Steven Liu committed
85
86
87
88
89
90
    - local: optimization/tgate
      title: TGATE
    - local: optimization/xdit
      title: xDiT
    - local: optimization/para_attn
      title: ParaAttention
91
92
    - local: using-diffusers/image_quality
      title: FreeU
Steven Liu's avatar
Steven Liu committed
93
94
95
96

- title: Hybrid Inference
  isExpanded: false
  sections:
97
98
99
100
  - local: hybrid_inference/overview
    title: Overview
  - local: hybrid_inference/vae_decode
    title: VAE Decode
101
102
  - local: hybrid_inference/vae_encode
    title: VAE Encode
103
104
  - local: hybrid_inference/api_reference
    title: API Reference
Steven Liu's avatar
Steven Liu committed
105
106
107
108

- title: Modular Diffusers
  isExpanded: false
  sections:
YiYi Xu's avatar
YiYi Xu committed
109
110
  - local: modular_diffusers/overview
    title: Overview
Steven Liu's avatar
Steven Liu committed
111
112
  - local: modular_diffusers/quickstart
    title: Quickstart
YiYi Xu's avatar
YiYi Xu committed
113
  - local: modular_diffusers/modular_diffusers_states
Steven Liu's avatar
Steven Liu committed
114
    title: States
YiYi Xu's avatar
YiYi Xu committed
115
  - local: modular_diffusers/pipeline_block
Steven Liu's avatar
Steven Liu committed
116
    title: ModularPipelineBlocks
YiYi Xu's avatar
YiYi Xu committed
117
  - local: modular_diffusers/sequential_pipeline_blocks
Steven Liu's avatar
Steven Liu committed
118
    title: SequentialPipelineBlocks
YiYi Xu's avatar
YiYi Xu committed
119
  - local: modular_diffusers/loop_sequential_pipeline_blocks
Steven Liu's avatar
Steven Liu committed
120
    title: LoopSequentialPipelineBlocks
YiYi Xu's avatar
YiYi Xu committed
121
  - local: modular_diffusers/auto_pipeline_blocks
Steven Liu's avatar
Steven Liu committed
122
123
124
125
126
127
128
    title: AutoPipelineBlocks
  - local: modular_diffusers/modular_pipeline
    title: ModularPipeline
  - local: modular_diffusers/components_manager
    title: ComponentsManager
  - local: modular_diffusers/guiders
    title: Guiders
Steven Liu's avatar
Steven Liu committed
129
130
131
132

- title: Training
  isExpanded: false
  sections:
Steven Liu's avatar
Steven Liu committed
133
134
135
136
137
138
  - local: training/overview
    title: Overview
  - local: training/create_dataset
    title: Create a dataset for training
  - local: training/adapt_a_model
    title: Adapt a model to a new task
Steven Liu's avatar
Steven Liu committed
139
140
141
  - local: tutorials/basic_training
    title: Train a diffusion model
  - title: Models
Dhruv Nair's avatar
Dhruv Nair committed
142
    sections:
Steven Liu's avatar
Steven Liu committed
143
    - local: training/unconditional_training
144
      title: Unconditional image generation
Steven Liu's avatar
Steven Liu committed
145
    - local: training/text2image
Steven Liu's avatar
Steven Liu committed
146
      title: Text-to-image
Steven Liu's avatar
Steven Liu committed
147
    - local: training/sdxl
Steven Liu's avatar
Steven Liu committed
148
      title: Stable Diffusion XL
Steven Liu's avatar
Steven Liu committed
149
150
151
152
153
    - local: training/kandinsky
      title: Kandinsky 2.2
    - local: training/wuerstchen
      title: Wuerstchen
    - local: training/controlnet
Steven Liu's avatar
Steven Liu committed
154
      title: ControlNet
Steven Liu's avatar
Steven Liu committed
155
156
157
158
    - local: training/t2i_adapters
      title: T2I-Adapters
    - local: training/instructpix2pix
      title: InstructPix2Pix
glide-the's avatar
glide-the committed
159
160
    - local: training/cogvideox
      title: CogVideoX
Steven Liu's avatar
Steven Liu committed
161
  - title: Methods
Dhruv Nair's avatar
Dhruv Nair committed
162
    sections:
Steven Liu's avatar
Steven Liu committed
163
164
165
166
167
168
169
170
171
172
173
174
    - local: training/text_inversion
      title: Textual Inversion
    - local: training/dreambooth
      title: DreamBooth
    - local: training/lora
      title: LoRA
    - local: training/custom_diffusion
      title: Custom Diffusion
    - local: training/lcm_distill
      title: Latent Consistency Distillation
    - local: training/ddpo
      title: Reinforcement learning training with DDPO
Steven Liu's avatar
Steven Liu committed
175
176
177
178

- title: Quantization
  isExpanded: false
  sections:
179
  - local: quantization/overview
Steven Liu's avatar
Steven Liu committed
180
    title: Getting started
181
182
  - local: quantization/bitsandbytes
    title: bitsandbytes
183
184
  - local: quantization/gguf
    title: gguf
Aryan's avatar
Aryan committed
185
186
  - local: quantization/torchao
    title: torchao
hlky's avatar
hlky committed
187
  - local: quantization/quanto
188
    title: quanto
189
190
  - local: quantization/modelopt
    title: NVIDIA ModelOpt
Steven Liu's avatar
Steven Liu committed
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258

- title: Model accelerators and hardware
  isExpanded: false
  sections:
  - local: optimization/onnx
    title: ONNX
  - local: optimization/open_vino
    title: OpenVINO
  - local: optimization/coreml
    title: Core ML
  - local: optimization/mps
    title: Metal Performance Shaders (MPS)
  - local: optimization/habana
    title: Intel Gaudi
  - local: optimization/neuron
    title: AWS Neuron

- title: Specific pipeline examples
  isExpanded: false
  sections:
  - local: using-diffusers/consisid
    title: ConsisID
  - local: using-diffusers/sdxl
    title: Stable Diffusion XL
  - local: using-diffusers/sdxl_turbo
    title: SDXL Turbo
  - local: using-diffusers/kandinsky
    title: Kandinsky
  - local: using-diffusers/omnigen
    title: OmniGen
  - local: using-diffusers/pag
    title: PAG
  - local: using-diffusers/inference_with_lcm
    title: Latent Consistency Model
  - local: using-diffusers/shap-e
    title: Shap-E
  - local: using-diffusers/diffedit
    title: DiffEdit
  - local: using-diffusers/inference_with_tcd_lora
    title: Trajectory Consistency Distillation-LoRA
  - local: using-diffusers/svd
    title: Stable Video Diffusion
  - local: using-diffusers/marigold_usage
    title: Marigold Computer Vision

- title: Resources
  isExpanded: false
  sections:
  - title: Task recipes
    sections:
    - local: using-diffusers/unconditional_image_generation
      title: Unconditional image generation
    - local: using-diffusers/conditional_image_generation
      title: Text-to-image
    - local: using-diffusers/img2img
      title: Image-to-image
    - local: using-diffusers/inpaint
      title: Inpainting
    - local: advanced_inference/outpaint
      title: Outpainting
    - local: using-diffusers/text-img2vid
      title: Video generation
    - local: using-diffusers/depth2img
      title: Depth-to-image
  - local: using-diffusers/write_own_pipeline
    title: Understanding pipelines, models and schedulers
  - local: community_projects
    title: Projects built with Diffusers
Patrick von Platen's avatar
Patrick von Platen committed
259
  - local: conceptual/philosophy
260
    title: Philosophy
261
262
  - local: using-diffusers/controlling_generation
    title: Controlled generation
Patrick von Platen's avatar
Patrick von Platen committed
263
  - local: conceptual/contribution
264
    title: How to contribute?
265
266
  - local: conceptual/ethical_guidelines
    title: Diffusers' Ethical Guidelines
267
268
  - local: conceptual/evaluation
    title: Evaluating Diffusion Models
Steven Liu's avatar
Steven Liu committed
269
270
271
272
273

- title: API
  isExpanded: false
  sections:
  - title: Main Classes
Dhruv Nair's avatar
Dhruv Nair committed
274
    sections:
Patrick von Platen's avatar
Patrick von Platen committed
275
    - local: api/configuration
276
      title: Configuration
277
278
279
280
    - local: api/logging
      title: Logging
    - local: api/outputs
      title: Outputs
281
282
    - local: api/quantization
      title: Quantization
Steven Liu's avatar
Steven Liu committed
283
284
    - local: api/parallel
      title: Parallel inference
Steven Liu's avatar
Steven Liu committed
285
286
287
288
289
290
291
292
293
294
295
296
  - title: Modular
    sections:
    - local: api/modular_diffusers/pipeline
      title: Pipeline
    - local: api/modular_diffusers/pipeline_blocks
      title: Blocks
    - local: api/modular_diffusers/pipeline_states
      title: States
    - local: api/modular_diffusers/pipeline_components
      title: Components and configs
    - local: api/modular_diffusers/guiders
      title: Guiders
Steven Liu's avatar
Steven Liu committed
297
  - title: Loaders
Dhruv Nair's avatar
Dhruv Nair committed
298
    sections:
Steven Liu's avatar
Steven Liu committed
299
300
    - local: api/loaders/ip_adapter
      title: IP-Adapter
Steven Liu's avatar
Steven Liu committed
301
302
303
304
305
306
307
308
    - local: api/loaders/lora
      title: LoRA
    - local: api/loaders/single_file
      title: Single files
    - local: api/loaders/textual_inversion
      title: Textual Inversion
    - local: api/loaders/unet
      title: UNet
309
310
    - local: api/loaders/transformer_sd3
      title: SD3Transformer2D
311
312
    - local: api/loaders/peft
      title: PEFT
Steven Liu's avatar
Steven Liu committed
313
  - title: Models
Dhruv Nair's avatar
Dhruv Nair committed
314
    sections:
Steven Liu's avatar
Steven Liu committed
315
316
    - local: api/models/overview
      title: Overview
hlky's avatar
hlky committed
317
318
    - local: api/models/auto_model
      title: AutoModel
Steven Liu's avatar
Steven Liu committed
319
320
    - title: ControlNets
      sections:
321
322
      - local: api/models/controlnet
        title: ControlNetModel
323
324
      - local: api/models/controlnet_union
        title: ControlNetUnionModel
325
326
      - local: api/models/controlnet_flux
        title: FluxControlNetModel
327
328
      - local: api/models/controlnet_hunyuandit
        title: HunyuanDiT2DControlNetModel
329
330
      - local: api/models/controlnet_sana
        title: SanaControlNetModel
331
332
333
334
      - local: api/models/controlnet_sd3
        title: SD3ControlNetModel
      - local: api/models/controlnet_sparsectrl
        title: SparseControlNetModel
Steven Liu's avatar
Steven Liu committed
335
336
    - title: Transformers
      sections:
Aryan's avatar
Aryan committed
337
338
      - local: api/models/allegro_transformer3d
        title: AllegroTransformer3DModel
339
340
      - local: api/models/aura_flow_transformer2d
        title: AuraFlowTransformer2DModel
galbria's avatar
galbria committed
341
342
      - local: api/models/bria_transformer
        title: BriaTransformer2DModel
Edna's avatar
Edna committed
343
344
      - local: api/models/chroma_transformer
        title: ChromaTransformer2DModel
345
346
      - local: api/models/cogvideox_transformer3d
        title: CogVideoXTransformer3DModel
Yuxuan.Zhang's avatar
Yuxuan.Zhang committed
347
348
      - local: api/models/cogview3plus_transformer2d
        title: CogView3PlusTransformer2DModel
349
350
      - local: api/models/cogview4_transformer2d
        title: CogView4Transformer2DModel
351
352
      - local: api/models/consisid_transformer3d
        title: ConsisIDTransformer3DModel
Aryan's avatar
Aryan committed
353
354
      - local: api/models/cosmos_transformer3d
        title: CosmosTransformer3DModel
355
356
      - local: api/models/dit_transformer2d
        title: DiTTransformer2DModel
357
358
      - local: api/models/easyanimate_transformer3d
        title: EasyAnimateTransformer3DModel
359
360
      - local: api/models/flux_transformer
        title: FluxTransformer2DModel
hlky's avatar
hlky committed
361
362
      - local: api/models/hidream_image_transformer
        title: HiDreamImageTransformer2DModel
363
364
      - local: api/models/hunyuan_transformer2d
        title: HunyuanDiT2DModel
Aryan's avatar
Aryan committed
365
366
      - local: api/models/hunyuan_video_transformer_3d
        title: HunyuanVideoTransformer3DModel
367
368
      - local: api/models/latte_transformer3d
        title: LatteTransformer3DModel
Aryan's avatar
Aryan committed
369
370
      - local: api/models/ltx_video_transformer3d
        title: LTXVideoTransformer3DModel
371
372
373
374
      - local: api/models/lumina2_transformer2d
        title: Lumina2Transformer2DModel
      - local: api/models/lumina_nextdit2d
        title: LuminaNextDiT2DModel
Aryan's avatar
Aryan committed
375
376
      - local: api/models/mochi_transformer3d
        title: MochiTransformer3DModel
Shitao Xiao's avatar
Shitao Xiao committed
377
378
      - local: api/models/omnigen_transformer
        title: OmniGenTransformer2DModel
379
380
381
382
      - local: api/models/pixart_transformer2d
        title: PixArtTransformer2DModel
      - local: api/models/prior_transformer
        title: PriorTransformer
383
384
      - local: api/models/qwenimage_transformer2d
        title: QwenImageTransformer2DModel
385
386
      - local: api/models/sana_transformer2d
        title: SanaTransformer2DModel
387
388
      - local: api/models/sd3_transformer2d
        title: SD3Transformer2DModel
389
390
      - local: api/models/skyreels_v2_transformer_3d
        title: SkyReelsV2Transformer3DModel
391
392
393
394
395
396
      - local: api/models/stable_audio_transformer
        title: StableAudioDiTModel
      - local: api/models/transformer2d
        title: Transformer2DModel
      - local: api/models/transformer_temporal
        title: TransformerTemporalModel
397
398
      - local: api/models/wan_transformer_3d
        title: WanTransformer3DModel
Steven Liu's avatar
Steven Liu committed
399
400
    - title: UNets
      sections:
401
402
403
404
405
406
      - local: api/models/stable_cascade_unet
        title: StableCascadeUNet
      - local: api/models/unet
        title: UNet1DModel
      - local: api/models/unet2d-cond
        title: UNet2DConditionModel
407
408
      - local: api/models/unet2d
        title: UNet2DModel
409
410
411
412
413
414
      - local: api/models/unet3d-cond
        title: UNet3DConditionModel
      - local: api/models/unet-motion
        title: UNetMotionModel
      - local: api/models/uvit2d
        title: UViT2DModel
Steven Liu's avatar
Steven Liu committed
415
416
    - title: VAEs
      sections:
417
418
419
420
      - local: api/models/asymmetricautoencoderkl
        title: AsymmetricAutoencoderKL
      - local: api/models/autoencoder_dc
        title: AutoencoderDC
421
422
      - local: api/models/autoencoderkl
        title: AutoencoderKL
Aryan's avatar
Aryan committed
423
424
      - local: api/models/autoencoderkl_allegro
        title: AutoencoderKLAllegro
425
426
      - local: api/models/autoencoderkl_cogvideox
        title: AutoencoderKLCogVideoX
Aryan's avatar
Aryan committed
427
428
      - local: api/models/autoencoderkl_cosmos
        title: AutoencoderKLCosmos
Aryan's avatar
Aryan committed
429
430
      - local: api/models/autoencoder_kl_hunyuan_video
        title: AutoencoderKLHunyuanVideo
Aryan's avatar
Aryan committed
431
432
      - local: api/models/autoencoderkl_ltx_video
        title: AutoencoderKLLTXVideo
433
434
      - local: api/models/autoencoderkl_magvit
        title: AutoencoderKLMagvit
Aryan's avatar
Aryan committed
435
436
      - local: api/models/autoencoderkl_mochi
        title: AutoencoderKLMochi
437
438
      - local: api/models/autoencoderkl_qwenimage
        title: AutoencoderKLQwenImage
439
440
      - local: api/models/autoencoder_kl_wan
        title: AutoencoderKLWan
441
442
443
444
445
446
447
448
      - local: api/models/consistency_decoder_vae
        title: ConsistencyDecoderVAE
      - local: api/models/autoencoder_oobleck
        title: Oobleck AutoEncoder
      - local: api/models/autoencoder_tiny
        title: Tiny AutoEncoder
      - local: api/models/vq
        title: VQModel
Steven Liu's avatar
Steven Liu committed
449
  - title: Pipelines
Dhruv Nair's avatar
Dhruv Nair committed
450
    sections:
451
    - local: api/pipelines/overview
452
      title: Overview
YiYi Xu's avatar
YiYi Xu committed
453
454
    - local: api/pipelines/auto_pipeline
      title: AutoPipeline
455
    - title: Image
Steven Liu's avatar
Steven Liu committed
456
      sections:
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
      - local: api/pipelines/amused
        title: aMUSEd
      - local: api/pipelines/animatediff
        title: AnimateDiff
      - local: api/pipelines/attend_and_excite
        title: Attend-and-Excite
      - local: api/pipelines/aura_flow
        title: AuraFlow
      - local: api/pipelines/blip_diffusion
        title: BLIP-Diffusion
      - local: api/pipelines/bria_3_2
        title: Bria 3.2
      - local: api/pipelines/chroma
        title: Chroma
      - local: api/pipelines/cogview3
        title: CogView3
      - local: api/pipelines/cogview4
        title: CogView4
      - local: api/pipelines/consistency_models
        title: Consistency Models
      - local: api/pipelines/controlnet
        title: ControlNet
      - local: api/pipelines/controlnet_flux
        title: ControlNet with Flux.1
      - local: api/pipelines/controlnet_hunyuandit
        title: ControlNet with Hunyuan-DiT
      - local: api/pipelines/controlnet_sd3
        title: ControlNet with Stable Diffusion 3
      - local: api/pipelines/controlnet_sdxl
        title: ControlNet with Stable Diffusion XL
      - local: api/pipelines/controlnet_sana
        title: ControlNet-Sana
      - local: api/pipelines/controlnetxs
        title: ControlNet-XS
      - local: api/pipelines/controlnetxs_sdxl
        title: ControlNet-XS with Stable Diffusion XL
      - local: api/pipelines/controlnet_union
        title: ControlNetUnion
      - local: api/pipelines/cosmos
        title: Cosmos
      - local: api/pipelines/ddim
        title: DDIM
      - local: api/pipelines/ddpm
        title: DDPM
      - local: api/pipelines/deepfloyd_if
        title: DeepFloyd IF
      - local: api/pipelines/diffedit
        title: DiffEdit
      - local: api/pipelines/dit
        title: DiT
      - local: api/pipelines/easyanimate
        title: EasyAnimate
      - local: api/pipelines/flux
        title: Flux
      - local: api/pipelines/control_flux_inpaint
        title: FluxControlInpaint
      - local: api/pipelines/hidream
        title: HiDream-I1
      - local: api/pipelines/hunyuandit
        title: Hunyuan-DiT
      - local: api/pipelines/pix2pix
        title: InstructPix2Pix
      - local: api/pipelines/kandinsky
        title: Kandinsky 2.1
      - local: api/pipelines/kandinsky_v22
        title: Kandinsky 2.2
      - local: api/pipelines/kandinsky3
        title: Kandinsky 3
      - local: api/pipelines/kolors
        title: Kolors
      - local: api/pipelines/latent_consistency_models
        title: Latent Consistency Models
      - local: api/pipelines/latent_diffusion
        title: Latent Diffusion
      - local: api/pipelines/ledits_pp
        title: LEDITS++
      - local: api/pipelines/lumina2
        title: Lumina 2.0
      - local: api/pipelines/lumina
        title: Lumina-T2X
      - local: api/pipelines/marigold
        title: Marigold
      - local: api/pipelines/panorama
        title: MultiDiffusion
      - local: api/pipelines/omnigen
        title: OmniGen
      - local: api/pipelines/pag
        title: PAG
      - local: api/pipelines/paint_by_example
        title: Paint by Example
      - local: api/pipelines/pixart
        title: PixArt-α
      - local: api/pipelines/pixart_sigma
        title: PixArt-Σ
      - local: api/pipelines/qwenimage
        title: QwenImage
      - local: api/pipelines/sana
        title: Sana
      - local: api/pipelines/sana_sprint
        title: Sana Sprint
      - local: api/pipelines/self_attention_guidance
        title: Self-Attention Guidance
      - local: api/pipelines/semantic_stable_diffusion
        title: Semantic Guidance
      - local: api/pipelines/shap_e
        title: Shap-E
      - local: api/pipelines/stable_cascade
        title: Stable Cascade
      - title: Stable Diffusion
        sections:
        - local: api/pipelines/stable_diffusion/overview
          title: Overview
        - local: api/pipelines/stable_diffusion/depth2img
          title: Depth-to-image
        - local: api/pipelines/stable_diffusion/gligen
          title: GLIGEN (Grounded Language-to-Image Generation)
        - local: api/pipelines/stable_diffusion/image_variation
          title: Image variation
        - local: api/pipelines/stable_diffusion/img2img
          title: Image-to-image
        - local: api/pipelines/stable_diffusion/inpaint
          title: Inpainting
        - local: api/pipelines/stable_diffusion/k_diffusion
          title: K-Diffusion
        - local: api/pipelines/stable_diffusion/latent_upscale
          title: Latent upscaler
        - local: api/pipelines/stable_diffusion/ldm3d_diffusion
          title: LDM3D Text-to-(RGB, Depth), Text-to-(RGB-pano, Depth-pano), LDM3D Upscaler
        - local: api/pipelines/stable_diffusion/stable_diffusion_safe
          title: Safe Stable Diffusion
        - local: api/pipelines/stable_diffusion/sdxl_turbo
          title: SDXL Turbo
        - local: api/pipelines/stable_diffusion/stable_diffusion_2
          title: Stable Diffusion 2
        - local: api/pipelines/stable_diffusion/stable_diffusion_3
          title: Stable Diffusion 3
        - local: api/pipelines/stable_diffusion/stable_diffusion_xl
          title: Stable Diffusion XL
        - local: api/pipelines/stable_diffusion/upscale
          title: Super-resolution
        - local: api/pipelines/stable_diffusion/adapter
          title: T2I-Adapter
        - local: api/pipelines/stable_diffusion/text2img
          title: Text-to-image
      - local: api/pipelines/stable_unclip
        title: Stable unCLIP
      - local: api/pipelines/unclip
        title: unCLIP
      - local: api/pipelines/unidiffuser
        title: UniDiffuser
      - local: api/pipelines/value_guided_sampling
        title: Value-guided sampling
      - local: api/pipelines/visualcloze
        title: VisualCloze
      - local: api/pipelines/wuerstchen
        title: Wuerstchen
    - title: Video
      sections:
      - local: api/pipelines/allegro
        title: Allegro
      - local: api/pipelines/cogvideox
        title: CogVideoX
      - local: api/pipelines/consisid
        title: ConsisID
      - local: api/pipelines/framepack
        title: Framepack
      - local: api/pipelines/hunyuan_video
        title: HunyuanVideo
      - local: api/pipelines/i2vgenxl
        title: I2VGen-XL
      - local: api/pipelines/latte
        title: Latte
      - local: api/pipelines/ltx_video
        title: LTXVideo
      - local: api/pipelines/mochi
        title: Mochi
      - local: api/pipelines/pia
        title: Personalized Image Animator (PIA)
      - local: api/pipelines/skyreels_v2
        title: SkyReels-V2
Steven Liu's avatar
Steven Liu committed
637
      - local: api/pipelines/stable_diffusion/svd
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
        title: Stable Video Diffusion
      - local: api/pipelines/text_to_video
        title: Text-to-video
      - local: api/pipelines/text_to_video_zero
        title: Text2Video-Zero
      - local: api/pipelines/wan
        title: Wan
    - title: Audio
      sections:
      - local: api/pipelines/audioldm
        title: AudioLDM
      - local: api/pipelines/audioldm2
        title: AudioLDM 2
      - local: api/pipelines/dance_diffusion
        title: Dance Diffusion
      - local: api/pipelines/musicldm
        title: MusicLDM
      - local: api/pipelines/stable_audio
        title: Stable Audio
Steven Liu's avatar
Steven Liu committed
657
  - title: Schedulers
Dhruv Nair's avatar
Dhruv Nair committed
658
    sections:
659
    - local: api/schedulers/overview
660
      title: Overview
661
    - local: api/schedulers/cm_stochastic_iterative
662
      title: CMStochasticIterativeScheduler
663
664
665
666
    - local: api/schedulers/ddim_cogvideox
      title: CogVideoXDDIMScheduler
    - local: api/schedulers/multistep_dpm_solver_cogvideox
      title: CogVideoXDPMScheduler
Will Berman's avatar
Will Berman committed
667
668
    - local: api/schedulers/consistency_decoder
      title: ConsistencyDecoderScheduler
669
670
    - local: api/schedulers/cosine_dpm
      title: CosineDPMSolverMultistepScheduler
671
    - local: api/schedulers/ddim_inverse
672
673
674
      title: DDIMInverseScheduler
    - local: api/schedulers/ddim
      title: DDIMScheduler
675
    - local: api/schedulers/ddpm
676
      title: DDPMScheduler
677
    - local: api/schedulers/deis
678
679
680
681
682
      title: DEISMultistepScheduler
    - local: api/schedulers/multistep_dpm_solver_inverse
      title: DPMSolverMultistepInverse
    - local: api/schedulers/multistep_dpm_solver
      title: DPMSolverMultistepScheduler
683
684
    - local: api/schedulers/dpm_sde
      title: DPMSolverSDEScheduler
685
686
    - local: api/schedulers/singlestep_dpm_solver
      title: DPMSolverSinglestepScheduler
Sayak Paul's avatar
Sayak Paul committed
687
688
689
690
    - local: api/schedulers/edm_multistep_dpm_solver
      title: EDMDPMSolverMultistepScheduler
    - local: api/schedulers/edm_euler
      title: EDMEulerScheduler
691
    - local: api/schedulers/euler_ancestral
692
      title: EulerAncestralDiscreteScheduler
693
    - local: api/schedulers/euler
694
      title: EulerDiscreteScheduler
Dhruv Nair's avatar
Dhruv Nair committed
695
696
    - local: api/schedulers/flow_match_euler_discrete
      title: FlowMatchEulerDiscreteScheduler
697
698
    - local: api/schedulers/flow_match_heun_discrete
      title: FlowMatchHeunDiscreteScheduler
699
    - local: api/schedulers/heun
700
      title: HeunDiscreteScheduler
701
    - local: api/schedulers/ipndm
702
703
704
705
706
707
708
      title: IPNDMScheduler
    - local: api/schedulers/stochastic_karras_ve
      title: KarrasVeScheduler
    - local: api/schedulers/dpm_discrete_ancestral
      title: KDPM2AncestralDiscreteScheduler
    - local: api/schedulers/dpm_discrete
      title: KDPM2DiscreteScheduler
709
710
    - local: api/schedulers/lcm
      title: LCMScheduler
711
    - local: api/schedulers/lms_discrete
712
      title: LMSDiscreteScheduler
713
    - local: api/schedulers/pndm
714
      title: PNDMScheduler
715
    - local: api/schedulers/repaint
716
      title: RePaintScheduler
717
    - local: api/schedulers/score_sde_ve
718
      title: ScoreSdeVeScheduler
719
    - local: api/schedulers/score_sde_vp
720
      title: ScoreSdeVpScheduler
Michael's avatar
Michael committed
721
722
    - local: api/schedulers/tcd
      title: TCDScheduler
723
724
    - local: api/schedulers/unipc
      title: UniPCMultistepScheduler
725
    - local: api/schedulers/vq_diffusion
726
      title: VQDiffusionScheduler
Steven Liu's avatar
Steven Liu committed
727
  - title: Internal classes
Dhruv Nair's avatar
Dhruv Nair committed
728
    sections:
729
730
731
732
733
734
    - local: api/internal_classes_overview
      title: Overview
    - local: api/attnprocessor
      title: Attention Processor
    - local: api/activations
      title: Custom activation functions
735
736
    - local: api/cache
      title: Caching methods
737
738
739
740
741
742
    - local: api/normalization
      title: Custom normalization layers
    - local: api/utilities
      title: Utilities
    - local: api/image_processor
      title: VAE Image Processor
743
    - local: api/video_processor
744
      title: Video Processor