Update README.md
Browse files
README.md
CHANGED
|
@@ -41,7 +41,7 @@ from diffusers import DiffusionPipeline
|
|
| 41 |
pipeline = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", custom_pipeline="superdiff/superdiff-sdxl-v1-0")
|
| 42 |
output = pipeline("a flamingo", "a candy cane", seed=1, num_inference_steps=200, batch_size=1)
|
| 43 |
|
| 44 |
-
image = Image.fromarray(output[0]
|
| 45 |
image.save("superdiff_output.png")
|
| 46 |
```
|
| 47 |
|
|
|
|
| 41 |
pipeline = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", custom_pipeline="superdiff/superdiff-sdxl-v1-0")
|
| 42 |
output = pipeline("a flamingo", "a candy cane", seed=1, num_inference_steps=200, batch_size=1)
|
| 43 |
|
| 44 |
+
image = Image.fromarray(output[0])
|
| 45 |
image.save("superdiff_output.png")
|
| 46 |
```
|
| 47 |
|