_toctree.yml 5.53 KB
Newer Older
Nathan Lambert's avatar
Nathan Lambert committed
1
2
- sections:
  - local: index
Patrick von Platen's avatar
Patrick von Platen committed
3
    title: "🧨 Diffusers"
Nathan Lambert's avatar
Nathan Lambert committed
4
  - local: quicktour
Patrick von Platen's avatar
Patrick von Platen committed
5
6
7
8
    title: "Quicktour"
  - local: installation
    title: "Installation"
  title: "Get started"
Nathan Lambert's avatar
Nathan Lambert committed
9
10
- sections:
  - sections:
Patrick von Platen's avatar
Patrick von Platen committed
11
12
    - local: using-diffusers/loading
      title: "Loading Pipelines, Models, and Schedulers"
13
14
    - local: using-diffusers/schedulers
      title: "Using different Schedulers"
Patrick von Platen's avatar
Patrick von Platen committed
15
16
    - local: using-diffusers/configuration
      title: "Configuring Pipelines, Models, and Schedulers"
17
18
19
    - local: using-diffusers/custom_pipeline_overview
      title: "Loading and Adding Custom Pipelines"
    title: "Loading & Hub"
Nathan Lambert's avatar
Nathan Lambert committed
20
  - sections:
Patrick von Platen's avatar
Patrick von Platen committed
21
22
23
24
25
26
27
28
    - local: using-diffusers/unconditional_image_generation
      title: "Unconditional Image Generation"
    - local: using-diffusers/conditional_image_generation
      title: "Text-to-Image Generation"
    - local: using-diffusers/img2img
      title: "Text-Guided Image-to-Image"
    - local: using-diffusers/inpaint
      title: "Text-Guided Image-Inpainting"
Patrick von Platen's avatar
Patrick von Platen committed
29
30
    - local: using-diffusers/depth2img
      title: "Text-Guided Depth-to-Image"
31
32
33
34
    - local: using-diffusers/custom_pipeline_examples
      title: "Community Pipelines"
    - local: using-diffusers/contribute_pipeline
      title: "How to contribute a Pipeline"
Patrick von Platen's avatar
Patrick von Platen committed
35
    title: "Pipelines for Inference"
36
37
38
39
40
41
42
43
  - sections:
    - local: using-diffusers/rl
      title: "Reinforcement Learning"
    - local: using-diffusers/audio
      title: "Audio"
    - local: using-diffusers/other-modalities
      title: "Other Modalities"
    title: "Taking Diffusers Beyond Images"
Patrick von Platen's avatar
Patrick von Platen committed
44
45
46
  title: "Using Diffusers"
- sections:
  - local: optimization/fp16
Pedro Cuenca's avatar
Pedro Cuenca committed
47
    title: "Memory and Speed"
Patrick von Platen's avatar
Patrick von Platen committed
48
49
50
  - local: optimization/onnx
    title: "ONNX"
  - local: optimization/open_vino
51
    title: "OpenVINO"
Patrick von Platen's avatar
Patrick von Platen committed
52
53
  - local: optimization/mps
    title: "MPS"
54
55
  - local: optimization/habana
    title: "Habana Gaudi"
Patrick von Platen's avatar
Patrick von Platen committed
56
57
  title: "Optimization/Special Hardware"
- sections:
58
59
  - local: training/overview
    title: "Overview"
Patrick von Platen's avatar
Patrick von Platen committed
60
61
62
  - local: training/unconditional_training
    title: "Unconditional Image Generation"
  - local: training/text_inversion
63
64
65
    title: "Textual Inversion"
  - local: training/dreambooth
    title: "Dreambooth"
Patrick von Platen's avatar
Patrick von Platen committed
66
  - local: training/text2image
67
    title: "Text-to-image fine-tuning"
Patrick von Platen's avatar
Patrick von Platen committed
68
69
70
71
72
73
74
75
76
77
  title: "Training"
- sections:
  - local: conceptual/stable_diffusion
    title: "Stable Diffusion"
  - local: conceptual/philosophy
    title: "Philosophy"
  - local: conceptual/contribution
    title: "How to contribute?"
  title: "Conceptual Guides"
- sections:
Nathan Lambert's avatar
Nathan Lambert committed
78
  - sections:
Patrick von Platen's avatar
Patrick von Platen committed
79
80
81
82
83
84
85
86
87
88
89
    - local: api/models
      title: "Models"
    - local: api/diffusion_pipeline
      title: "Diffusion Pipeline"
    - local: api/logging
      title: "Logging"
    - local: api/configuration
      title: "Configuration"
    - local: api/outputs
      title: "Outputs"
    title: "Main Classes"
Nathan Lambert's avatar
Nathan Lambert committed
90
  - sections:
91
92
    - local: api/pipelines/overview
      title: "Overview"
Patrick von Platen's avatar
Patrick von Platen committed
93
94
    - local: api/pipelines/alt_diffusion
      title: "AltDiffusion"
95
96
    - local: api/pipelines/cycle_diffusion
      title: "Cycle Diffusion"
Patrick von Platen's avatar
Patrick von Platen committed
97
98
99
    - local: api/pipelines/ddim
      title: "DDIM"
    - local: api/pipelines/ddpm
Nathan Lambert's avatar
Nathan Lambert committed
100
      title: "DDPM"
Patrick von Platen's avatar
Patrick von Platen committed
101
102
103
104
    - local: api/pipelines/latent_diffusion
      title: "Latent Diffusion"
    - local: api/pipelines/latent_diffusion_uncond
      title: "Unconditional Latent Diffusion"
105
106
    - local: api/pipelines/paint_by_example
      title: "PaintByExample"
Patrick von Platen's avatar
Patrick von Platen committed
107
108
109
110
111
112
    - local: api/pipelines/pndm
      title: "PNDM"
    - local: api/pipelines/score_sde_ve
      title: "Score SDE VE"
    - local: api/pipelines/stable_diffusion
      title: "Stable Diffusion"
Patrick von Platen's avatar
Patrick von Platen committed
113
114
    - local: api/pipelines/stable_diffusion_2
      title: "Stable Diffusion 2"
115
116
    - local: api/pipelines/stable_diffusion_safe
      title: "Safe Stable Diffusion"
Patrick von Platen's avatar
Patrick von Platen committed
117
118
    - local: api/pipelines/stochastic_karras_ve
      title: "Stochastic Karras VE"
119
120
    - local: api/pipelines/dance_diffusion
      title: "Dance Diffusion"
121
122
    - local: api/pipelines/versatile_diffusion
      title: "Versatile Diffusion"
Will Berman's avatar
Will Berman committed
123
124
    - local: api/pipelines/vq_diffusion
      title: "VQ Diffusion"
Revist's avatar
Revist committed
125
126
    - local: api/pipelines/repaint
      title: "RePaint"
127
128
    - local: api/pipelines/audio_diffusion
      title: "Audio Diffusion"
Patrick von Platen's avatar
Patrick von Platen committed
129
    title: "Pipelines"
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
  - sections:
    - local: api/schedulers/overview
      title: "Overview"
    - local: api/schedulers/ddim
      title: "DDIM"
    - local: api/schedulers/ddpm
      title: "DDPM"
    - local: api/schedulers/singlestep_dpm_solver
      title: "Singlestep DPM-Solver"
    - local: api/schedulers/multistep_dpm_solver
      title: "Multistep DPM-Solver"
    - local: api/schedulers/heun
      title: "Heun Scheduler"
    - local: api/schedulers/dpm_discrete
      title: "DPM Discrete Scheduler"
    - local: api/schedulers/dpm_discrete_ancestral
      title: "DPM Discrete Scheduler with ancestral sampling"
    - local: api/schedulers/stochastic_karras_ve
      title: "Stochastic Kerras VE"
    - local: api/schedulers/lms_discrete
      title: "Linear Multistep"
    - local: api/schedulers/pndm
      title: "PNDM"
    - local: api/schedulers/score_sde_ve
      title: "VE-SDE"
    - local: api/schedulers/ipndm
      title: "IPNDM"
    - local: api/schedulers/score_sde_vp
      title: "VP-SDE"
    - local: api/schedulers/euler
      title: "Euler scheduler"
    - local: api/schedulers/euler_ancestral
      title: "Euler Ancestral Scheduler"
    - local: api/schedulers/vq_diffusion
      title: "VQDiffusionScheduler"
    - local: api/schedulers/repaint
      title: "RePaint Scheduler"      
    title: "Schedulers"
168
169
170
171
  - sections:
    - local: api/experimental/rl
      title: "RL Planning"
    title: "Experimental Features"
172
  title: "API"