import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("kellempxt/checkpoints", dtype=torch.bfloat16, device_map="cuda")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]Checkpoints Collection
A collection of Stable Diffusion checkpoints organized by base model type.
Structure
pony/- Pony Diffusion modelssdxl/- SDXL modelsflux/- Flux modelssd15/- SD 1.5 models
Usage
from diffusers import StableDiffusionXLPipeline
pipe = StableDiffusionXLPipeline.from_single_file(
"https://huggingface.co/kellempxt/checkpoints/resolve/main/sdxl/model_name/model.safetensors"
)
- Downloads last month
- -
Hardware compatibility
Log In to add your hardware
2-bit