Skip to content

Commit 6bf6eef

Browse files
committed
Merge branch 'main' into feat/loraloadermixin
2 parents cc375ad + bf837f5 commit 6bf6eef

Some content is hidden

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

44 files changed

+743
-1092
lines changed

docs/source/en/api/pipelines/semantic_stable_diffusion.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ The abstract of the paper is the following:
2424

2525
| Pipeline | Tasks | Colab | Demo
2626
|---|---|:---:|:---:|
27-
| [pipeline_semantic_stable_diffusion.py](https://github.com/huggingface/diffusers/blob/main/src/diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion) | *Text-to-Image Generation* | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/ml-research/semantic-image-editing/blob/main/examples/SemanticGuidance.ipynb) | [Coming Soon](https://huggingface.co/AIML-TUDA)
27+
| [pipeline_semantic_stable_diffusion.py](https://github.com/huggingface/diffusers/blob/main/src/diffusers/pipelines/semantic_stable_diffusion/pipeline_semantic_stable_diffusion.py) | *Text-to-Image Generation* | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/ml-research/semantic-image-editing/blob/main/examples/SemanticGuidance.ipynb) | [Coming Soon](https://huggingface.co/AIML-TUDA)
2828

2929
## Tips
3030

31-
- The Semantic Guidance pipeline can be used with any [Stable Diffusion](./api/pipelines/stable_diffusion/text2img) checkpoint.
31+
- The Semantic Guidance pipeline can be used with any [Stable Diffusion](./stable_diffusion/text2img) checkpoint.
3232

3333
### Run Semantic Guidance
3434

@@ -67,7 +67,7 @@ out = pipe(
6767
)
6868
```
6969

70-
For more examples check the colab notebook.
70+
For more examples check the Colab notebook.
7171

7272
## StableDiffusionSafePipelineOutput
7373
[[autodoc]] pipelines.semantic_stable_diffusion.SemanticStableDiffusionPipelineOutput

docs/source/en/api/pipelines/stable_diffusion/controlnet.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ This should take only around 3-4 seconds on GPU (depending on hardware). The out
131131
![img](https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/vermeer_disco_dancing.png)
132132

133133

134-
**Note**: To see how to run all other ControlNet checkpoints, please have a look at [ControlNet with Stable Diffusion 1.5](#controlnet-with-stable-diffusion-1.5)
134+
**Note**: To see how to run all other ControlNet checkpoints, please have a look at [ControlNet with Stable Diffusion 1.5](#controlnet-with-stable-diffusion-1.5).
135135

136136
<!-- TODO: add space -->
137137

docs/source/en/api/pipelines/stable_diffusion/image_variation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ specific language governing permissions and limitations under the License.
1414

1515
## StableDiffusionImageVariationPipeline
1616

17-
[`StableDiffusionImageVariationPipeline`] lets you generate variations from an input image using Stable Diffusion. It uses a fine-tuned version of Stable Diffusion model, trained by [Justin Pinkney](https://www.justinpinkney.com/) (@Buntworthy) at [Lambda](https://lambdalabs.com/)
17+
[`StableDiffusionImageVariationPipeline`] lets you generate variations from an input image using Stable Diffusion. It uses a fine-tuned version of Stable Diffusion model, trained by [Justin Pinkney](https://www.justinpinkney.com/) (@Buntworthy) at [Lambda](https://lambdalabs.com/).
1818

1919
The original codebase can be found here:
2020
[Stable Diffusion Image Variations](https://github.com/LambdaLabsML/lambda-diffusers#stable-diffusion-image-variations)
@@ -28,4 +28,4 @@ Available Checkpoints are:
2828
- enable_attention_slicing
2929
- disable_attention_slicing
3030
- enable_xformers_memory_efficient_attention
31-
- disable_xformers_memory_efficient_attention
31+
- disable_xformers_memory_efficient_attention

docs/source/en/api/schedulers/ddim.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express o
1010
specific language governing permissions and limitations under the License.
1111
-->
1212

13-
# Denoising diffusion implicit models (DDIM)
13+
# Denoising Diffusion Implicit Models (DDIM)
1414

1515
## Overview
1616

@@ -24,4 +24,4 @@ The original codebase of this paper can be found here: [ermongroup/ddim](https:/
2424
For questions, feel free to contact the author on [tsong.me](https://tsong.me/).
2525

2626
## DDIMScheduler
27-
[[autodoc]] DDIMScheduler
27+
[[autodoc]] DDIMScheduler

docs/source/en/api/schedulers/ddpm.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express o
1010
specific language governing permissions and limitations under the License.
1111
-->
1212

13-
# Denoising diffusion probabilistic models (DDPM)
13+
# Denoising Diffusion Probabilistic Models (DDPM)
1414

1515
## Overview
1616

@@ -24,4 +24,4 @@ We present high quality image synthesis results using diffusion probabilistic mo
2424
The original paper can be found [here](https://arxiv.org/abs/2010.02502).
2525

2626
## DDPMScheduler
27-
[[autodoc]] DDPMScheduler
27+
[[autodoc]] DDPMScheduler

docs/source/en/api/schedulers/euler_ancestral.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ specific language governing permissions and limitations under the License.
1414

1515
## Overview
1616

17-
Ancestral sampling with Euler method steps. Based on the original (k-diffusion)[https://github.com/crowsonkb/k-diffusion/blob/481677d114f6ea445aa009cf5bd7a9cdee909e47/k_diffusion/sampling.py#L72] implementation by Katherine Crowson.
17+
Ancestral sampling with Euler method steps. Based on the original [k-diffusion](https://github.com/crowsonkb/k-diffusion/blob/481677d114f6ea445aa009cf5bd7a9cdee909e47/k_diffusion/sampling.py#L72) implementation by Katherine Crowson.
1818
Fast scheduler which often times generates good outputs with 20-30 steps.
1919

2020
## EulerAncestralDiscreteScheduler
21-
[[autodoc]] EulerAncestralDiscreteScheduler
21+
[[autodoc]] EulerAncestralDiscreteScheduler

docs/source/en/api/schedulers/score_sde_ve.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express o
1010
specific language governing permissions and limitations under the License.
1111
-->
1212

13-
# variance exploding stochastic differential equation (VE-SDE) scheduler
13+
# Variance Exploding Stochastic Differential Equation (VE-SDE) scheduler
1414

1515
## Overview
1616

1717
Original paper can be found [here](https://arxiv.org/abs/2011.13456).
1818

1919
## ScoreSdeVeScheduler
20-
[[autodoc]] ScoreSdeVeScheduler
20+
[[autodoc]] ScoreSdeVeScheduler

docs/source/en/api/schedulers/score_sde_vp.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express o
1010
specific language governing permissions and limitations under the License.
1111
-->
1212

13-
# Variance preserving stochastic differential equation (VP-SDE) scheduler
13+
# Variance Preserving Stochastic Differential Equation (VP-SDE) scheduler
1414

1515
## Overview
1616

@@ -23,4 +23,4 @@ Score SDE-VP is under construction.
2323
</Tip>
2424

2525
## ScoreSdeVpScheduler
26-
[[autodoc]] schedulers.scheduling_sde_vp.ScoreSdeVpScheduler
26+
[[autodoc]] schedulers.scheduling_sde_vp.ScoreSdeVpScheduler

docs/source/en/api/schedulers/unipc.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ specific language governing permissions and limitations under the License.
1616

1717
UniPC is a training-free framework designed for the fast sampling of diffusion models, which consists of a corrector (UniC) and a predictor (UniP) that share a unified analytical form and support arbitrary orders.
1818

19-
For more details about the method, please refer to the [[paper]](https://arxiv.org/abs/2302.04867) and the [[code]](https://github.com/wl-zhao/UniPC).
19+
For more details about the method, please refer to the [paper](https://arxiv.org/abs/2302.04867) and the [code](https://github.com/wl-zhao/UniPC).
2020

2121
Fast Sampling of Diffusion Models with Exponential Integrator.
2222

0 commit comments

Comments
 (0)