Spaces:
Runtime error
Runtime error
File size: 325 Bytes
67db81c 7671d2b a543549 67db81c 4430ce1 7671d2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import torch
from diffusers import StableDiffusionPipeline
from PIL import Image
pipe = StableDiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = input("Enter a prompt: ")
image = pipe(prompt).images[0]
image = Image.fromarray(image)
image.show()
|