Views
No views yet
stabilityai/stable-diffusion-xl-base-1.0 on a broad, filtered aesthetic dataset
for improved prompt adherence and image quality over stock SDXL.to_q, to_k, to_v, to_out.0latest/ — most recent adapter weightsbest/ — lowest validation-loss adapter weights
Spawning/PD12M (target ~30,000)common-canvas/commoncatalog-cc-by (target ~20,000)laion/laion2B-en-aesthetic (target ~23,000)laion/laion-art (target ~7,500)poloclub/diffusiondb (target ~12,500)kakaobrain/coyo-700m (target ~5,500)License note: trained on research datasets of scraped image-text pairs. Released undercc-by-nc-4.0(non-commercial). Verify each source dataset's terms before any downstream commercial use.
1from diffusers import StableDiffusionXLPipeline
2import torch
3
4pipe = StableDiffusionXLPipeline.from_pretrained(
5 "stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.bfloat16
6).to("cuda")
7pipe.load_lora_weights("Dikshan1234/ImageGen", subfolder="best")
8image = pipe("a cozy cabin in a snowy forest, golden hour").images[0]