From d3ce229d502544fb9d33d7066801a6bb9f3f7833 Mon Sep 17 00:00:00 2001 From: icarried <54706854+icarried@users.noreply.github.com> Date: Sun, 27 Aug 2023 14:38:53 +0800 Subject: [PATCH] Fix docs typo in PipelineForImageToImage name --- docs/source/en/api/pipelines/auto_pipeline.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/api/pipelines/auto_pipeline.md b/docs/source/en/api/pipelines/auto_pipeline.md index 65ea855405e9..b82707a32834 100644 --- a/docs/source/en/api/pipelines/auto_pipeline.md +++ b/docs/source/en/api/pipelines/auto_pipeline.md @@ -21,7 +21,7 @@ For example, to perform Image-to-Image with the SD1.5 checkpoint, you can do ```python from diffusers import PipelineForImageToImage -pipe_i2i = PipelineForImageoImage.from_pretrained("runwayml/stable-diffusion-v1-5") +pipe_i2i = PipelineForImageToImage.from_pretrained("runwayml/stable-diffusion-v1-5") ``` It will also help you switch between tasks seamlessly using the same checkpoint without reallocating additional memory. For example, to re-use the Image-to-Image pipeline we just created for inpainting, you can do