From 51bdb756572f3bb3e7fc45f09315af4a8321e547 Mon Sep 17 00:00:00 2001 From: Richard Gong Date: Thu, 26 Oct 2023 17:13:19 -0400 Subject: [PATCH] optimize search for string sdxl (#481) --- 06_gpu_and_ml/stable_diffusion/stable_diffusion_xl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06_gpu_and_ml/stable_diffusion/stable_diffusion_xl.py b/06_gpu_and_ml/stable_diffusion/stable_diffusion_xl.py index c782a64ba..fa1f41ac0 100644 --- a/06_gpu_and_ml/stable_diffusion/stable_diffusion_xl.py +++ b/06_gpu_and_ml/stable_diffusion/stable_diffusion_xl.py @@ -6,7 +6,7 @@ # # Stable Diffusion XL 1.0 # # This example is similar to the [Stable Diffusion CLI](/docs/examples/stable_diffusion_cli) -# example, but it generates images from the larger XL 1.0 model. Specifically, it runs the +# example, but it generates images from the larger SDXL 1.0 model. Specifically, it runs the # first set of steps with the base model, followed by the refiner model. # # [Try out the live demo here!](https://modal-labs--stable-diffusion-xl-app.modal.run/) The first