From 34fab8b511846ca4d3432f17317026fed2d883ad Mon Sep 17 00:00:00 2001 From: Vasco Ramos Date: Tue, 18 Jun 2024 22:33:43 +0100 Subject: [PATCH] [SD3 Docs] Corrected title about loading model with T5 "without" -> "with" (#8602) [SD3 Docs] Corrected title about loading model with T5 Corrected the documentation title to "Loading the single file checkpoint with T5" Previously, it incorrectly stated "Loading the single file checkpoint without T5" which contradicted the code snippet showing how to load the SD3 checkpoint with the T5 model --- .../en/api/pipelines/stable_diffusion/stable_diffusion_3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/api/pipelines/stable_diffusion/stable_diffusion_3.md b/docs/source/en/api/pipelines/stable_diffusion/stable_diffusion_3.md index fd36089726..309a253326 100644 --- a/docs/source/en/api/pipelines/stable_diffusion/stable_diffusion_3.md +++ b/docs/source/en/api/pipelines/stable_diffusion/stable_diffusion_3.md @@ -249,7 +249,7 @@ image = pipe("a picture of a cat holding a sign that says hello world").images[0 image.save('sd3-single-file.png') ``` -### Loading the single file checkpoint without T5 +### Loading the single file checkpoint with T5 ```python import torch