Views
No views yet


(masterpiece, ultra high res, best quality:1.1), kawaii, 1girl, (solo), (cowboy shot), (dynamic angle), Ruffled Dresses, (The great hall of the mansion), tiara, Luxurious interior, looking at viewer,
(masterpiece, ultra high res, best quality:1.1), 1girl, solo, (fantasy), (dark:1.2), (depth of field:1.3), (night), (Fantastic lighting), looking at viewer, white hair, long hair,1from diffusers import StableDiffusionPipeline
2import torch
3model_id = "Hemlok/ArcanaMix"
4
5pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
6pipe = pipe.to("cuda")
7prompt = "One girl standing by the window"
8image = pipe(prompt).images[0]
9
10image.save("test.png")