Views
No views yet

1from diffusers import StableDiffusionPipeline
2import torch
3model_id = "riccardogiorato/beeple-diffusion"
4pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
5pipe = pipe.to("cuda")
6prompt = "a magical witch with golden hair with beeple style"
7image = pipe(prompt).images[0]
8image.save("./magical_witch.png")