Configuration Parsing Warning: Config file model_index.json cannot be fetched (too big)
Simple Diffusion XS
At AiArtLab, we strive to create a free, compact and fast model that can be trained on consumer graphics cards.
- Unet: 1.5b parameters
- Clip: LongCLIP with 248 tokens
- Qwen3.5: Qwen3.5-2B
- VAE: 32ch8x(Flux2)
Random samples
Example
import torch
from diffusers import DiffusionPipeline
device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.float16 if torch.cuda.is_available() else torch.float32
pipe_id = "AiArtLab/sdxs-1b"
pipe = DiffusionPipeline.from_pretrained(
pipe_id,
torch_dtype=dtype,
trust_remote_code=True
).to(device)
prompt = "girl, smiling, red eyes, blue hair, white shirt"
negative_prompt="low quality"
image = pipe(
prompt=prompt,
negative_prompt = negative_prompt,
).images[0]
image.show(image)
Train:
apt update
apt install git-lfs
git config --global credential.helper store
git clone https://huggingface.co/AiArtLab/sdxs-1b
cd sdxs-1b
pip install -r requirements.txt -U
mkdir datasets
cd datasets
hf download babkasotona/ds1234_1280 --repo-type dataset --local-dir ds1234_1280
cd ..
nohup accelerate launch train.py &
Model Limitations:
- Limited concept coverage due to the small dataset (1kk).
Acknowledgments
- Stan β Key investor. Thank you for believing in us when others called it madness.
- Captainsaturnus
- Love. Death. Transformers.
- TOPAPEC
Datasets
Donations
- Rubles: For users from Russia
- DOGE: DEw2DR8C7BnF8GgcrfTzUjSnGkuMeJhg83
- BTC: 3JHv9Hb8kEW8zMAccdgCdZGfrHeMhH1rpN
- Crypto: https://nowpayments.io/donation/sdxs
Contacts
Please contact with us if you may provide some GPU's or money on training
- telegram recoilme *prefered way
- mail at aiartlab.org (slow response)
mail at aiartlab.org (slow response)
Citation
@misc{sdxs,
title={Simple Diffusion XS},
author={recoilme, muinez and AiArtLab Team},
url={https://huggingface.co/AiArtLab/sdxs-1b},
year={2026}
}
- Downloads last month
- 119

