📦 SDXL Collection
A curated suite of popular Stable Diffusion XL (.safetensors) checkpoints
本仓库收集了多款热门 SDXL 变体模型,以 .safetensors 格式存储,方便一键下载与加载。所有文件均通过 Git LFS 管理,支持大文件断点续传。
📑 文件列表
| 文件名 | 大小 | 说明 |
|---|---|---|
3dCartoon.safetensors |
6.94 GB | 针对 3D 卡通风格微调的 SDXL 检出点 |
AnythingXL_xl.safetensors |
6.94 GB | 高通用性版,适合多种风格 |
Helloworld.safetensors |
6.94 GB | 入门版示例权重,适合快速测试 |
animagine-xl-3.1.safetensors |
6.94 GB | Animagine XL v3.1 动画/插画风格 |
autismmixSDXL_autismmixPony.safetensors |
6.94 GB | Pony 风格混合模型 |
epicrealismXL.safetensors |
6.94 GB | 史诗写实风格优化版 |
gamelcon.safetensors |
6.94 GB | 游戏概念艺术专用微调 |
juggernautXL_ragnarok.safetensors |
7.11 GB | Ragnarok 主题大规模场景微调 |
sdxlNiji.safetensors |
7.14 GB | Niji(动漫)风格专用 |
🚀 快速开始
克隆仓库(需安装 Git LFS):
git lfs install git clone https://huggingface.co/yase88/sdxl_collection cd sdxl_collectionPython + Diffusers 加载示例:
from diffusers import StableDiffusionXLPipeline import torch model_path = "yase88/sdxl_collection/epicrealismXL.safetensors" pipe = StableDiffusionXLPipeline.from_pretrained( model_path, torch_dtype=torch.float16, safety_checker=None, ).to("cuda") prompt = "A hyper-realistic fantasy landscape at sunrise" image = pipe(prompt, num_inference_steps=30, guidance_scale=7.5).images[0] image.save("output.png")CLI 下载单个文件:
huggingface-cli repo download yase88/sdxl_collection --pattern "sdxlNiji.safetensors"
📝 许可证
本仓库及其中索引文件(如 README.md、config.json)采用 Apache-2.0 开源许可。各 .safetensors 子模型请参照其原始发布页面的授权说明。
欢迎 ⭐️ & PR,一起丰富 SDXL 模型生态!
- Downloads last month
- -
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support