From ded3174238c6ace76be76779e1dd1df18f52a863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Tolga=20Cang=C3=B6z?= <46008593+standardAI@users.noreply.github.com> Date: Thu, 9 Mar 2023 15:19:18 +0300 Subject: [PATCH] Fix typos (#2608) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f5a42538d..40fc47a0c1 100644 --- a/README.md +++ b/README.md @@ -235,7 +235,7 @@ images = pipeline(prompt_ids, params, prng_seed, num_inference_steps, jit=True). images = pipeline.numpy_to_pil(np.asarray(images.reshape((num_samples,) + images.shape[-3:]))) ``` -Diffusers also has a Image-to-Image generation pipeline with Flax/Jax +Diffusers also has a Image-to-Image generation pipeline with Flax/Jax: ```python import jax import numpy as np @@ -284,7 +284,7 @@ output = pipeline( output_images = pipeline.numpy_to_pil(np.asarray(output.reshape((num_samples,) + output.shape[-3:]))) ``` -Diffusers also has a Text-guided inpainting pipeline with Flax/Jax +Diffusers also has a Text-guided inpainting pipeline with Flax/Jax: ```python import jax