Photorealistic Stable Diffusion XL checkpoint released by the community as “WAI REALCN”. The model keeps the standard SDXL architecture (two CLIP text encoders, latent UNet, and VAE) and was shared on
Civitai.
1import torch
2from diffusers import StableDiffusionXLPipeline
3
4pipe = StableDiffusionXLPipeline.from_pretrained(
5 "YOUR_USERNAME_HERE/deewaiREALCN",
6 torch_dtype=torch.float16,
7).to("cuda")
8
9prompt = "a candid street portrait of a young adult, soft daylight, shallow depth of field, high detail"
10negative_prompt = "blurry, low quality, extra fingers, distorted face"
11
12image = pipe(
13 prompt=prompt,
14 negative_prompt=negative_prompt,
15 num_inference_steps=30,
16 guidance_scale=7.5,
17).images[0]
18
19image.save("sample.png")
Net: prompts are encoded twice (often “pooled” + “per-token” info), giving richer conditioning.
If you tell me which model/repo this is (or the pipeline class you’re using), I can translate these facts into practical settings (recommended dtype, VRAM-saving flags, and expected output resolution and speed).