Unverified Commit 709cf554 authored by Ilia Larchenko's avatar Ilia Larchenko Committed by GitHub
Browse files

Typo in tutorial (#3295)

parent 536684eb
......@@ -96,7 +96,7 @@ To recreate the pipeline with the model and scheduler separately, let's write ou
>>> image = (input / 2 + 0.5).clamp(0, 1)
>>> image = image.cpu().permute(0, 2, 3, 1).numpy()[0]
>>> image = Image.fromarray((image * 255)).round().astype("uint8")
>>> image = Image.fromarray((image * 255).round().astype("uint8"))
>>> image
```
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment