Skip to content

Commit 613057b

Browse files
committed
feedback
1 parent 5d6b341 commit 613057b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ The table below lists all the pipelines currently available in 🤗 Diffusers an
6060
| [Semantic Guidance](semantic_stable_diffusion) | text2image |
6161
| [Shap-E](shap_e) | text-to-3D, image-to-3D |
6262
| [Spectrogram Diffusion](spectrogram_diffusion) | |
63-
| [StableDiffusion](stable_diffusion/overview) | text2image, image2image, depth2image, inpainting, image variation, latent upscaler, super-resolution |
64-
| [StableDiffusionModelEditing](model_editing) | model editing |
63+
| [Stable Diffusion](stable_diffusion/overview) | text2image, image2image, depth2image, inpainting, image variation, latent upscaler, super-resolution |
64+
| [Stable Diffusion Model Editing](model_editing) | model editing |
6565
| [Stable Diffusion XL](stable_diffusion_xl) | text2image, image2image, inpainting |
6666
| [Stable unCLIP](stable_unclip) | text2image, image variation |
6767
| [KarrasVe](karras_ve) | unconditional image generation |

docs/source/en/index.md

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

2323
The library has three main components:
2424

25-
- State-of-the-art [diffusion pipelines](api/pipelines/overview) for inference with just a few lines of code.
25+
- State-of-the-art diffusion pipelines for inference with just a few lines of code. There are many pipelines in 🤗 Diffusers, check out the table in the pipeline [overview](api/pipelines/overview) for a complete list of available pipelines and the task they solve.
2626
- Interchangeable [noise schedulers](api/schedulers/overview) for balancing trade-offs between generation speed and quality.
2727
- Pretrained [models](api/models) that can be used as building blocks, and combined with schedulers, for creating your own end-to-end diffusion systems.
2828

docs/source/en/using-diffusers/custom_pipeline_examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For more context about the design choices behind community pipelines, please hav
2020

2121
</Tip>
2222

23-
Community pipelines allow you to get creative and build your own unique pipelines to share with the community. All community pipelines are stored in the [diffusers/examples/community](https://github.com/huggingface/diffusers/tree/main/examples/community) folder along with inference and training examples for how to use them. This guide will showcase some of the community pipelines and hopefully it'll inspire you to create your own (feel free to open a PR with your own pipeline and we will merge it!).
23+
Community pipelines allow you to get creative and build your own unique pipelines to share with the community. You can find all community pipelines in the [diffusers/examples/community](https://github.com/huggingface/diffusers/tree/main/examples/community) folder along with inference and training examples for how to use them. This guide showcases some of the community pipelines and hopefully it'll inspire you to create your own (feel free to open a PR with your own pipeline and we will merge it!).
2424

2525
To load a community pipeline, use the `custom_pipeline` argument in [`DiffusionPipeline`] to specify one of the files in [diffusers/examples/community](https://github.com/huggingface/diffusers/tree/main/examples/community):
2626

docs/source/en/using-diffusers/textual_inversion_inference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The [`StableDiffusionPipeline`] supports textual inversion, a technique that enables a model like Stable Diffusion to learn a new concept from just a few sample images. This gives you more control over the generated images and allows you to tailor the model towards specific concepts. You can get started quickly with a collection of community created concepts in the [Stable Diffusion Conceptualizer](https://huggingface.co/spaces/sd-concepts-library/stable-diffusion-conceptualizer).
66

7-
This guide will show you how to run inference with textual inversion using a pre-learned concept from the Stable Diffusion Conceptualizer. If you're interested in teaching a model new concepts with textual inversion, take a look at the [Textual Inversion](./training/text_inversion) training guide.
7+
This guide will show you how to run inference with textual inversion using a pre-learned concept from the Stable Diffusion Conceptualizer. If you're interested in teaching a model new concepts with textual inversion, take a look at the [Textual Inversion](../training/text_inversion) training guide.
88

99
Login to your Hugging Face account:
1010

0 commit comments

Comments
 (0)