mirror of
https://github.com/huggingface/diffusers.git
synced 2026-01-27 17:22:53 +03:00
Fix typos (#2608)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user