Views
No views yet


(masterpiece, ultra high res, best quality:1.1), (flat color:1.4), 1girl, solo, teen, cowboy shot, (depth of field:1.2), (night), downtown, (street light:1.1), (Fantastic lighting), looking at viewer, (school uniform), black hair, long hair, [smile], (Closed mouth)
(masterpiece, ultra high res, best quality:1.1), 1girl, solo, (fantasy), (dark:1.2), (horror:1.2), (depth of field:1.2), (night), (water effect:1.2), (Fantastic lighting), looking at viewer, white hair, long hair,1from diffusers import StableDiffusionPipeline
2import torch
3model_id = "Hemlok/QuinceMix"
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")