1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00

Bug: Fixed Image 2 Image example (#11619)

Bug: Fixed Image 2 Image example where a PIL.Image was improperly being asked for an item via index.
This commit is contained in:
VLT Media
2025-05-30 02:00:52 -04:00
committed by GitHub
parent a7aa8bf28a
commit d0ec6601df

View File

@@ -113,7 +113,7 @@ image = pipe(
height=832,
width=480
).images[0]
image[0].save("output.png")
image.save("output.png")
```
## SanaSprintPipeline