From c27fd5913312d2189ef9abc97d7e226660f73bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Tolga=20Cang=C3=B6z?= <46008593+standardAI@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:47:28 +0300 Subject: [PATCH] Fix typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f5a42538dd9..40fc47a0c10e 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