Repository files navigation

SD-From-Scratch v1Sample outputs at epoch 42 — 232K steps on 2× RTX 5090

Stable Diffusion from Scratch

GitHubHugging Face ModelLicense: MITPython 3.11+W&B Report

A full-stack Stable Diffusion 1.x-class latent diffusion model — built entirely from scratch in PyTorch, trained on 2× RTX 5090 (Blackwell) GPUs. Every component (UNet, DDPM/DDIM, VAE pipeline, CLIP conditioning, data pipeline, DDP training loop) is hand-implemented; no diffusers, no compel, no black boxes.

Checkpointatandra2000/sd-from-scratch-v1 (12.5 GB, sd_epoch_042.pt)


Quick Start

# 1. Download the checkpoint
pip install huggingface_hub
python scripts/download_checkpoint.py
# 2. Run inference
pip install torch torchvision transformers Pillow
python src/inference.py --prompt "a cinematic shot of a mountain lake at sunset" --checkpoint checkpoints/sd_epoch_042.pt

See docs/inference.md for advanced usage (negative prompts, batch mode, DDIM parameters).


Repository Layout

├── src/ # Core implementation
│ ├── model.py # UNet (~860M params), DDPM/DDIM schedulers
│ ├── train.py # DDP + BF16 training loop
│ ├── inference.py # Apple Silicon + CUDA inference
│ ├── encode_latents.py # VAE pre-encoding for training
│ ├── encode_pipeline.py # Data-parallel latent encoder (2-GPU)
│ ├── generate.py # Programmatic generation API
│ ├── SD_ImageGen.py # Alternative inference script (CLI)
│ ├── SD_Model.py # Legacy model (kept for reproducibility)
│ └── SD_Train.py / SD_Train_v2.py # Legacy training scripts
├── data_pipeline/ # LAION-2B data processing
│ ├── 01_download_metadata.py → 06_filter_dataset.py
├── configs/
│ └── config.py # Dataclass-based configuration
├── tests/ # CPU smoke tests
│ ├── test_unet_forward.py
│ └── test_ddim_step.py
├── docs/ # Documentation
│ ├── architecture.md # Model architecture deep-dive
│ ├── training-loop.md # Training procedure
│ ├── data-pipeline.md # Data pipeline walkthrough
│ ├── inference.md # Inference guide
│ ├── blog_post.md # Medium-style write-up
│ └── images/ # Diagrams and samples
├── scripts/
│ └── download_checkpoint.py
├── results/samples/ # Curated output samples
├── assets/ # Architecture diagram, plots
├── requirements.txt
├── LICENSE # MIT
├── CITATION.cff # Citation metadata
└── .env.example # Environment variable template

Architecture

TEXT PROMPT
│
▼
┌──────────────────────────────────┐
│ CLIP Text Encoder (frozen) │ openai/clip-vit-large-patch14
│ 77 tokens → (B, 77, 768) │ 123M params — no gradient
└──────────────────┬───────────────┘
│ context (B, 77, 768)
│
IMAGE │
│ │
▼ │
┌──────────────────────────────────┐
│ VAE Encoder (frozen) │ stabilityai/sd-vae-ft-mse
│ (B,3,512,512) → (B,4,64,64) │ 83M params — no gradient
└──────────────────┬───────────────┘
│ latent z
▼
┌───────────────┐
│ add_noise(z,t)│ DDPM forward: z_t = √ᾱ_t·z + √(1-ᾱ_t)·ε
└───────┬───────┘
│ (B, 4, 64, 64) noisy latent
▼
┌──────────────────────────────────┐
│ UNet Denoising Model │ ~860M params — TRAINABLE
│ │
│ Encoder: │
│ Stage 0 (64×64): 320 ch │ — no attention
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Bottleneck (8×8): 1280 ch │ ← attn + resblock
│ Decoder: │
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 0 (64×64): 320 ch │ — no attention
│ │
│ ε_θ(z_t, t, ctx) → (B, 4, 64, 64)
└──────────────────┬───────────────┘
│ predicted noise ε̂
│
MSE Loss: ||ε̂ − ε||²
│
▽ (backprop)

For a detailed architectural walkthrough, see docs/architecture.md.


Training Summary

StageEpochsStepsBest LossLRNotes
Pre-training1–10136K0.12471e-4 → 1e-5Cosine decay, Min-SNR γ=5→2.5
Fine-tuning11–4296K0.0947 (ep 16)1e-5EMA decay=0.9999, CFG dropout=0.05
Final42232K0.1212Released checkpoint
  • Hardware: 2× RTX 5090 (Blackwell, cc 10.x, 32 GB VRAM each) on RunPod
  • Dataset: LAION-2B-en-aesthetic (~12M images, filtered to aesthetic ≥ 6.5)
  • Multi-GPU: DDP (NCCL) with BF16 autocast, gradient accumulation (effective batch 96)
  • Loss: Min-SNR-weighted MSE (γ=5.0 → 2.5 for fine-tuning)
  • EMA: Polyak decay 0.9999, shadow weights stored in checkpoint

Full loss curves and per-epoch breakdown: summary.md


Checkpoints

Download sourceSizeFormatNotes
Hugging Face Hub12.5 GBPyTorch .ptContains ema_state_dict + unet_state_dict, optimizer, LR scheduler
GitHub ReleasesComing in v1.1

Loading from Python

importsys, torchsys.path.insert(0, "src") # make src/ importablefromhuggingface_hubimporthf_hub_downloadfromSD_ModelimportUNetModel# legacy single-file module# — or, equivalently, the refactored module: from model import UNetModelcheckpoint=hf_hub_download(
repo_id="atandra2000/sd-from-scratch-v1",
filename="sd_epoch_042.pt",
local_dir="checkpoints",
)
ckpt=torch.load(checkpoint, map_location="cpu", weights_only=False)
# Load EMA shadow (produces better images than live weights)unet=UNetModel(in_ch=4, out_ch=4, ch=320, res_blks=2,
attn_lvls=(1, 2, 3), ch_mults=(1, 2, 4, 4),
heads=8, ctx_dim=768)
shadow=ckpt["ema_state_dict"]["shadow"]
cleaned= {}
fork, vinshadow.items():
forprefixin ("module.", "unet.", "_orig_mod."):
ifk.startswith(prefix):
k=k[len(prefix):]
breakcleaned[k] =vunet.load_state_dict(cleaned, strict=False) # strict=False: a few shadow keys may be absentunet.eval()

See src/inference.py:load_ema_unet() for the canonical loader used in production.


Training Reproduction

Data Pipeline

# The full pipeline from raw LAION metadata → encoded latents:
python data_pipeline/01_download_metadata.py
python data_pipeline/02_filter_metadata.py # aesthetic ≥ 6.5
python data_pipeline/03_download_images.py # WebDataset shards
python data_pipeline/04_preprocess_to_cache.py # tokenize + augment
python data_pipeline/05_build_hf_dataset.py # HuggingFace Dataset
python src/encode_latents.py # VAE encode to .npy
python src/encode_pipeline.py # 2-GPU parallel encode

See docs/data-pipeline.md for the complete walkthrough.

Training

# Single node, 2× GPU (torchrun)
torchrun --nproc_per_node=2 src/train.py \
--cache_path laion_hf_dataset/train \
--latent_dir laion_latents \
--epochs 42 \
--batch_size 24 \
--lr 1e-5 \
--min_snr --min_snr_gamma 5.0 \
--cfg_dropout 0.05 \
--grad_ckpt \
--memory_format channels_last
# Resume from checkpoint
torchrun --nproc_per_node=2 src/train.py \
--resume checkpoints/sd_epoch_021.pt

Inference

CLI

# Single prompt (Apple Silicon or CUDA)
python src/inference.py \
--prompt "a cosmic nebula with vibrant purples and blues" \
--checkpoint checkpoints/sd_epoch_042.pt \
--steps 50 --guidance 7.5 --seed 42
# With negative prompt
python src/inference.py \
--prompt "a portrait of a woman" \
--negative "blurry, low quality, deformed hands" \
--checkpoint checkpoints/sd_epoch_042.pt
# Batch mode
python src/inference.py \
--batch prompts.txt \
--output_dir ./outputs \
--checkpoint checkpoints/sd_epoch_042.pt

Python API

importsyssys.path.insert(0, "src")
importtorchfromtransformersimportCLIPTokenizerfromgenerateimportload_model, generatedevice=torch.device("cuda"iftorch.cuda.is_available() else"cpu")
model=load_model("checkpoints/sd_epoch_042.pt", device)
tokenizer=CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
images=generate(
model=model,
tokenizer=tokenizer,
prompts= ["a beautiful sunset over mountains"],
num_steps=50,
guidance_scale=7.5,
seed=42,
output_path="output.png",
)

Note: generate() is the function in src/generate.py. It takes a loaded StableDiffusionModel, not a checkpoint path — that's what load_model() is for above.

See docs/inference.md for all options.


Known Differences from Official Stable Diffusion

ComponentImplementationDiffuser Reference
UNetFull ~860M param SD 1.x UNet, custom SpatialTransformer, Flash SDPUNet2DConditionModel
Scheduler (training)DDPM with scaled_linear beta scheduleDDPMScheduler
Scheduler (inference)DDIM with optional stochastic (eta)DDIMScheduler
Text encoderCLIPTextModel from transformers (frozen)CLIPTextModel
VAEAutoencoderKL from diffusers (frozen)AutoencoderKL
ConditioningClassifier-Free Guidance with --negative promptCFG
Multi-GPUDDP (NCCL) with BF16 autocastaccelerate
LossMin-SNR-weighted MSE

Citation

@software{bharati2026sdfromscratch,
author = {Atandra Bharati},
title = {{SD-From-Scratch v1}: A Stable-Diffusion-class Latent Diffusion Model Trained from Scratch on Dual {RTX} 5090s},
year = {2026},
url = {https://huggingface.co/atandra2000/sd-from-scratch-v1},
}

License

MIT — see LICENSE for details.

About

A Stable Diffusion 1.x-class latent diffusion model trained from scratch on 2× RTX 5090 (Blackwell) GPUs. Full UNet (~860M params), DDPM/DDIM, LAION pipeline, DDP+BF16.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

Repository files navigation

SD-From-Scratch v1Sample outputs at epoch 42 — 232K steps on 2× RTX 5090

Stable Diffusion from Scratch

GitHubHugging Face ModelLicense: MITPython 3.11+W&B Report

A full-stack Stable Diffusion 1.x-class latent diffusion model — built entirely from scratch in PyTorch, trained on 2× RTX 5090 (Blackwell) GPUs. Every component (UNet, DDPM/DDIM, VAE pipeline, CLIP conditioning, data pipeline, DDP training loop) is hand-implemented; no diffusers, no compel, no black boxes.

Checkpointatandra2000/sd-from-scratch-v1 (12.5 GB, sd_epoch_042.pt)


Quick Start

# 1. Download the checkpoint
pip install huggingface_hub
python scripts/download_checkpoint.py
# 2. Run inference
pip install torch torchvision transformers Pillow
python src/inference.py --prompt "a cinematic shot of a mountain lake at sunset" --checkpoint checkpoints/sd_epoch_042.pt

See docs/inference.md for advanced usage (negative prompts, batch mode, DDIM parameters).


Repository Layout

├── src/ # Core implementation
│ ├── model.py # UNet (~860M params), DDPM/DDIM schedulers
│ ├── train.py # DDP + BF16 training loop
│ ├── inference.py # Apple Silicon + CUDA inference
│ ├── encode_latents.py # VAE pre-encoding for training
│ ├── encode_pipeline.py # Data-parallel latent encoder (2-GPU)
│ ├── generate.py # Programmatic generation API
│ ├── SD_ImageGen.py # Alternative inference script (CLI)
│ ├── SD_Model.py # Legacy model (kept for reproducibility)
│ └── SD_Train.py / SD_Train_v2.py # Legacy training scripts
├── data_pipeline/ # LAION-2B data processing
│ ├── 01_download_metadata.py → 06_filter_dataset.py
├── configs/
│ └── config.py # Dataclass-based configuration
├── tests/ # CPU smoke tests
│ ├── test_unet_forward.py
│ └── test_ddim_step.py
├── docs/ # Documentation
│ ├── architecture.md # Model architecture deep-dive
│ ├── training-loop.md # Training procedure
│ ├── data-pipeline.md # Data pipeline walkthrough
│ ├── inference.md # Inference guide
│ ├── blog_post.md # Medium-style write-up
│ └── images/ # Diagrams and samples
├── scripts/
│ └── download_checkpoint.py
├── results/samples/ # Curated output samples
├── assets/ # Architecture diagram, plots
├── requirements.txt
├── LICENSE # MIT
├── CITATION.cff # Citation metadata
└── .env.example # Environment variable template

Architecture

TEXT PROMPT
│
▼
┌──────────────────────────────────┐
│ CLIP Text Encoder (frozen) │ openai/clip-vit-large-patch14
│ 77 tokens → (B, 77, 768) │ 123M params — no gradient
└──────────────────┬───────────────┘
│ context (B, 77, 768)
│
IMAGE │
│ │
▼ │
┌──────────────────────────────────┐
│ VAE Encoder (frozen) │ stabilityai/sd-vae-ft-mse
│ (B,3,512,512) → (B,4,64,64) │ 83M params — no gradient
└──────────────────┬───────────────┘
│ latent z
▼
┌───────────────┐
│ add_noise(z,t)│ DDPM forward: z_t = √ᾱ_t·z + √(1-ᾱ_t)·ε
└───────┬───────┘
│ (B, 4, 64, 64) noisy latent
▼
┌──────────────────────────────────┐
│ UNet Denoising Model │ ~860M params — TRAINABLE
│ │
│ Encoder: │
│ Stage 0 (64×64): 320 ch │ — no attention
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Bottleneck (8×8): 1280 ch │ ← attn + resblock
│ Decoder: │
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 0 (64×64): 320 ch │ — no attention
│ │
│ ε_θ(z_t, t, ctx) → (B, 4, 64, 64)
└──────────────────┬───────────────┘
│ predicted noise ε̂
│
MSE Loss: ||ε̂ − ε||²
│
▽ (backprop)

For a detailed architectural walkthrough, see docs/architecture.md.


Training Summary

StageEpochsStepsBest LossLRNotes
Pre-training1–10136K0.12471e-4 → 1e-5Cosine decay, Min-SNR γ=5→2.5
Fine-tuning11–4296K0.0947 (ep 16)1e-5EMA decay=0.9999, CFG dropout=0.05
Final42232K0.1212Released checkpoint
  • Hardware: 2× RTX 5090 (Blackwell, cc 10.x, 32 GB VRAM each) on RunPod
  • Dataset: LAION-2B-en-aesthetic (~12M images, filtered to aesthetic ≥ 6.5)
  • Multi-GPU: DDP (NCCL) with BF16 autocast, gradient accumulation (effective batch 96)
  • Loss: Min-SNR-weighted MSE (γ=5.0 → 2.5 for fine-tuning)
  • EMA: Polyak decay 0.9999, shadow weights stored in checkpoint

Full loss curves and per-epoch breakdown: summary.md


Checkpoints

Download sourceSizeFormatNotes
Hugging Face Hub12.5 GBPyTorch .ptContains ema_state_dict + unet_state_dict, optimizer, LR scheduler
GitHub ReleasesComing in v1.1

Loading from Python

importsys, torchsys.path.insert(0, "src") # make src/ importablefromhuggingface_hubimporthf_hub_downloadfromSD_ModelimportUNetModel# legacy single-file module# — or, equivalently, the refactored module: from model import UNetModelcheckpoint=hf_hub_download(
repo_id="atandra2000/sd-from-scratch-v1",
filename="sd_epoch_042.pt",
local_dir="checkpoints",
)
ckpt=torch.load(checkpoint, map_location="cpu", weights_only=False)
# Load EMA shadow (produces better images than live weights)unet=UNetModel(in_ch=4, out_ch=4, ch=320, res_blks=2,
attn_lvls=(1, 2, 3), ch_mults=(1, 2, 4, 4),
heads=8, ctx_dim=768)
shadow=ckpt["ema_state_dict"]["shadow"]
cleaned= {}
fork, vinshadow.items():
forprefixin ("module.", "unet.", "_orig_mod."):
ifk.startswith(prefix):
k=k[len(prefix):]
breakcleaned[k] =vunet.load_state_dict(cleaned, strict=False) # strict=False: a few shadow keys may be absentunet.eval()

See src/inference.py:load_ema_unet() for the canonical loader used in production.


Training Reproduction

Data Pipeline

# The full pipeline from raw LAION metadata → encoded latents:
python data_pipeline/01_download_metadata.py
python data_pipeline/02_filter_metadata.py # aesthetic ≥ 6.5
python data_pipeline/03_download_images.py # WebDataset shards
python data_pipeline/04_preprocess_to_cache.py # tokenize + augment
python data_pipeline/05_build_hf_dataset.py # HuggingFace Dataset
python src/encode_latents.py # VAE encode to .npy
python src/encode_pipeline.py # 2-GPU parallel encode

See docs/data-pipeline.md for the complete walkthrough.

Training

# Single node, 2× GPU (torchrun)
torchrun --nproc_per_node=2 src/train.py \
--cache_path laion_hf_dataset/train \
--latent_dir laion_latents \
--epochs 42 \
--batch_size 24 \
--lr 1e-5 \
--min_snr --min_snr_gamma 5.0 \
--cfg_dropout 0.05 \
--grad_ckpt \
--memory_format channels_last
# Resume from checkpoint
torchrun --nproc_per_node=2 src/train.py \
--resume checkpoints/sd_epoch_021.pt

Inference

CLI

# Single prompt (Apple Silicon or CUDA)
python src/inference.py \
--prompt "a cosmic nebula with vibrant purples and blues" \
--checkpoint checkpoints/sd_epoch_042.pt \
--steps 50 --guidance 7.5 --seed 42
# With negative prompt
python src/inference.py \
--prompt "a portrait of a woman" \
--negative "blurry, low quality, deformed hands" \
--checkpoint checkpoints/sd_epoch_042.pt
# Batch mode
python src/inference.py \
--batch prompts.txt \
--output_dir ./outputs \
--checkpoint checkpoints/sd_epoch_042.pt

Python API

importsyssys.path.insert(0, "src")
importtorchfromtransformersimportCLIPTokenizerfromgenerateimportload_model, generatedevice=torch.device("cuda"iftorch.cuda.is_available() else"cpu")
model=load_model("checkpoints/sd_epoch_042.pt", device)
tokenizer=CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
images=generate(
model=model,
tokenizer=tokenizer,
prompts= ["a beautiful sunset over mountains"],
num_steps=50,
guidance_scale=7.5,
seed=42,
output_path="output.png",
)

Note: generate() is the function in src/generate.py. It takes a loaded StableDiffusionModel, not a checkpoint path — that's what load_model() is for above.

See docs/inference.md for all options.


Known Differences from Official Stable Diffusion

ComponentImplementationDiffuser Reference
UNetFull ~860M param SD 1.x UNet, custom SpatialTransformer, Flash SDPUNet2DConditionModel
Scheduler (training)DDPM with scaled_linear beta scheduleDDPMScheduler
Scheduler (inference)DDIM with optional stochastic (eta)DDIMScheduler
Text encoderCLIPTextModel from transformers (frozen)CLIPTextModel
VAEAutoencoderKL from diffusers (frozen)AutoencoderKL
ConditioningClassifier-Free Guidance with --negative promptCFG
Multi-GPUDDP (NCCL) with BF16 autocastaccelerate
LossMin-SNR-weighted MSE

Citation

@software{bharati2026sdfromscratch,
author = {Atandra Bharati},
title = {{SD-From-Scratch v1}: A Stable-Diffusion-class Latent Diffusion Model Trained from Scratch on Dual {RTX} 5090s},
year = {2026},
url = {https://huggingface.co/atandra2000/sd-from-scratch-v1},
}

License

MIT — see LICENSE for details.

About

A Stable Diffusion 1.x-class latent diffusion model trained from scratch on 2× RTX 5090 (Blackwell) GPUs. Full UNet (~860M params), DDPM/DDIM, LAION pipeline, DDP+BF16.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

SD-From-Scratch v1Sample outputs at epoch 42 — 232K steps on 2× RTX 5090

Stable Diffusion from Scratch

GitHubHugging Face ModelLicense: MITPython 3.11+W&B Report

A full-stack Stable Diffusion 1.x-class latent diffusion model — built entirely from scratch in PyTorch, trained on 2× RTX 5090 (Blackwell) GPUs. Every component (UNet, DDPM/DDIM, VAE pipeline, CLIP conditioning, data pipeline, DDP training loop) is hand-implemented; no diffusers, no compel, no black boxes.

Checkpointatandra2000/sd-from-scratch-v1 (12.5 GB, sd_epoch_042.pt)


Quick Start

# 1. Download the checkpoint
pip install huggingface_hub
python scripts/download_checkpoint.py
# 2. Run inference
pip install torch torchvision transformers Pillow
python src/inference.py --prompt "a cinematic shot of a mountain lake at sunset" --checkpoint checkpoints/sd_epoch_042.pt

See docs/inference.md for advanced usage (negative prompts, batch mode, DDIM parameters).


Repository Layout

├── src/ # Core implementation
│ ├── model.py # UNet (~860M params), DDPM/DDIM schedulers
│ ├── train.py # DDP + BF16 training loop
│ ├── inference.py # Apple Silicon + CUDA inference
│ ├── encode_latents.py # VAE pre-encoding for training
│ ├── encode_pipeline.py # Data-parallel latent encoder (2-GPU)
│ ├── generate.py # Programmatic generation API
│ ├── SD_ImageGen.py # Alternative inference script (CLI)
│ ├── SD_Model.py # Legacy model (kept for reproducibility)
│ └── SD_Train.py / SD_Train_v2.py # Legacy training scripts
├── data_pipeline/ # LAION-2B data processing
│ ├── 01_download_metadata.py → 06_filter_dataset.py
├── configs/
│ └── config.py # Dataclass-based configuration
├── tests/ # CPU smoke tests
│ ├── test_unet_forward.py
│ └── test_ddim_step.py
├── docs/ # Documentation
│ ├── architecture.md # Model architecture deep-dive
│ ├── training-loop.md # Training procedure
│ ├── data-pipeline.md # Data pipeline walkthrough
│ ├── inference.md # Inference guide
│ ├── blog_post.md # Medium-style write-up
│ └── images/ # Diagrams and samples
├── scripts/
│ └── download_checkpoint.py
├── results/samples/ # Curated output samples
├── assets/ # Architecture diagram, plots
├── requirements.txt
├── LICENSE # MIT
├── CITATION.cff # Citation metadata
└── .env.example # Environment variable template

Architecture

TEXT PROMPT
│
▼
┌──────────────────────────────────┐
│ CLIP Text Encoder (frozen) │ openai/clip-vit-large-patch14
│ 77 tokens → (B, 77, 768) │ 123M params — no gradient
└──────────────────┬───────────────┘
│ context (B, 77, 768)
│
IMAGE │
│ │
▼ │
┌──────────────────────────────────┐
│ VAE Encoder (frozen) │ stabilityai/sd-vae-ft-mse
│ (B,3,512,512) → (B,4,64,64) │ 83M params — no gradient
└──────────────────┬───────────────┘
│ latent z
▼
┌───────────────┐
│ add_noise(z,t)│ DDPM forward: z_t = √ᾱ_t·z + √(1-ᾱ_t)·ε
└───────┬───────┘
│ (B, 4, 64, 64) noisy latent
▼
┌──────────────────────────────────┐
│ UNet Denoising Model │ ~860M params — TRAINABLE
│ │
│ Encoder: │
│ Stage 0 (64×64): 320 ch │ — no attention
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Bottleneck (8×8): 1280 ch │ ← attn + resblock
│ Decoder: │
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 0 (64×64): 320 ch │ — no attention
│ │
│ ε_θ(z_t, t, ctx) → (B, 4, 64, 64)
└──────────────────┬───────────────┘
│ predicted noise ε̂
│
MSE Loss: ||ε̂ − ε||²
│
▽ (backprop)

For a detailed architectural walkthrough, see docs/architecture.md.


Training Summary

StageEpochsStepsBest LossLRNotes
Pre-training1–10136K0.12471e-4 → 1e-5Cosine decay, Min-SNR γ=5→2.5
Fine-tuning11–4296K0.0947 (ep 16)1e-5EMA decay=0.9999, CFG dropout=0.05
Final42232K0.1212Released checkpoint
  • Hardware: 2× RTX 5090 (Blackwell, cc 10.x, 32 GB VRAM each) on RunPod
  • Dataset: LAION-2B-en-aesthetic (~12M images, filtered to aesthetic ≥ 6.5)
  • Multi-GPU: DDP (NCCL) with BF16 autocast, gradient accumulation (effective batch 96)
  • Loss: Min-SNR-weighted MSE (γ=5.0 → 2.5 for fine-tuning)
  • EMA: Polyak decay 0.9999, shadow weights stored in checkpoint

Full loss curves and per-epoch breakdown: summary.md


Checkpoints

Download sourceSizeFormatNotes
Hugging Face Hub12.5 GBPyTorch .ptContains ema_state_dict + unet_state_dict, optimizer, LR scheduler
GitHub ReleasesComing in v1.1

Loading from Python

importsys, torchsys.path.insert(0, "src") # make src/ importablefromhuggingface_hubimporthf_hub_downloadfromSD_ModelimportUNetModel# legacy single-file module# — or, equivalently, the refactored module: from model import UNetModelcheckpoint=hf_hub_download(
repo_id="atandra2000/sd-from-scratch-v1",
filename="sd_epoch_042.pt",
local_dir="checkpoints",
)
ckpt=torch.load(checkpoint, map_location="cpu", weights_only=False)
# Load EMA shadow (produces better images than live weights)unet=UNetModel(in_ch=4, out_ch=4, ch=320, res_blks=2,
attn_lvls=(1, 2, 3), ch_mults=(1, 2, 4, 4),
heads=8, ctx_dim=768)
shadow=ckpt["ema_state_dict"]["shadow"]
cleaned= {}
fork, vinshadow.items():
forprefixin ("module.", "unet.", "_orig_mod."):
ifk.startswith(prefix):
k=k[len(prefix):]
breakcleaned[k] =vunet.load_state_dict(cleaned, strict=False) # strict=False: a few shadow keys may be absentunet.eval()

See src/inference.py:load_ema_unet() for the canonical loader used in production.


Training Reproduction

Data Pipeline

# The full pipeline from raw LAION metadata → encoded latents:
python data_pipeline/01_download_metadata.py
python data_pipeline/02_filter_metadata.py # aesthetic ≥ 6.5
python data_pipeline/03_download_images.py # WebDataset shards
python data_pipeline/04_preprocess_to_cache.py # tokenize + augment
python data_pipeline/05_build_hf_dataset.py # HuggingFace Dataset
python src/encode_latents.py # VAE encode to .npy
python src/encode_pipeline.py # 2-GPU parallel encode

See docs/data-pipeline.md for the complete walkthrough.

Training

# Single node, 2× GPU (torchrun)
torchrun --nproc_per_node=2 src/train.py \
--cache_path laion_hf_dataset/train \
--latent_dir laion_latents \
--epochs 42 \
--batch_size 24 \
--lr 1e-5 \
--min_snr --min_snr_gamma 5.0 \
--cfg_dropout 0.05 \
--grad_ckpt \
--memory_format channels_last
# Resume from checkpoint
torchrun --nproc_per_node=2 src/train.py \
--resume checkpoints/sd_epoch_021.pt

Inference

CLI

# Single prompt (Apple Silicon or CUDA)
python src/inference.py \
--prompt "a cosmic nebula with vibrant purples and blues" \
--checkpoint checkpoints/sd_epoch_042.pt \
--steps 50 --guidance 7.5 --seed 42
# With negative prompt
python src/inference.py \
--prompt "a portrait of a woman" \
--negative "blurry, low quality, deformed hands" \
--checkpoint checkpoints/sd_epoch_042.pt
# Batch mode
python src/inference.py \
--batch prompts.txt \
--output_dir ./outputs \
--checkpoint checkpoints/sd_epoch_042.pt

Python API

importsyssys.path.insert(0, "src")
importtorchfromtransformersimportCLIPTokenizerfromgenerateimportload_model, generatedevice=torch.device("cuda"iftorch.cuda.is_available() else"cpu")
model=load_model("checkpoints/sd_epoch_042.pt", device)
tokenizer=CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
images=generate(
model=model,
tokenizer=tokenizer,
prompts= ["a beautiful sunset over mountains"],
num_steps=50,
guidance_scale=7.5,
seed=42,
output_path="output.png",
)

Note: generate() is the function in src/generate.py. It takes a loaded StableDiffusionModel, not a checkpoint path — that's what load_model() is for above.

See docs/inference.md for all options.


Known Differences from Official Stable Diffusion

ComponentImplementationDiffuser Reference
UNetFull ~860M param SD 1.x UNet, custom SpatialTransformer, Flash SDPUNet2DConditionModel
Scheduler (training)DDPM with scaled_linear beta scheduleDDPMScheduler
Scheduler (inference)DDIM with optional stochastic (eta)DDIMScheduler
Text encoderCLIPTextModel from transformers (frozen)CLIPTextModel
VAEAutoencoderKL from diffusers (frozen)AutoencoderKL
ConditioningClassifier-Free Guidance with --negative promptCFG
Multi-GPUDDP (NCCL) with BF16 autocastaccelerate
LossMin-SNR-weighted MSE

Citation

@software{bharati2026sdfromscratch,
author = {Atandra Bharati},
title = {{SD-From-Scratch v1}: A Stable-Diffusion-class Latent Diffusion Model Trained from Scratch on Dual {RTX} 5090s},
year = {2026},
url = {https://huggingface.co/atandra2000/sd-from-scratch-v1},
}

License

MIT — see LICENSE for details.

About

A Stable Diffusion 1.x-class latent diffusion model trained from scratch on 2× RTX 5090 (Blackwell) GPUs. Full UNet (~860M params), DDPM/DDIM, LAION pipeline, DDP+BF16.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

SD-From-Scratch v1Sample outputs at epoch 42 — 232K steps on 2× RTX 5090

Stable Diffusion from Scratch

GitHubHugging Face ModelLicense: MITPython 3.11+W&B Report

A full-stack Stable Diffusion 1.x-class latent diffusion model — built entirely from scratch in PyTorch, trained on 2× RTX 5090 (Blackwell) GPUs. Every component (UNet, DDPM/DDIM, VAE pipeline, CLIP conditioning, data pipeline, DDP training loop) is hand-implemented; no diffusers, no compel, no black boxes.

Checkpointatandra2000/sd-from-scratch-v1 (12.5 GB, sd_epoch_042.pt)


Quick Start

# 1. Download the checkpoint
pip install huggingface_hub
python scripts/download_checkpoint.py
# 2. Run inference
pip install torch torchvision transformers Pillow
python src/inference.py --prompt "a cinematic shot of a mountain lake at sunset" --checkpoint checkpoints/sd_epoch_042.pt

See docs/inference.md for advanced usage (negative prompts, batch mode, DDIM parameters).


Repository Layout

├── src/ # Core implementation
│ ├── model.py # UNet (~860M params), DDPM/DDIM schedulers
│ ├── train.py # DDP + BF16 training loop
│ ├── inference.py # Apple Silicon + CUDA inference
│ ├── encode_latents.py # VAE pre-encoding for training
│ ├── encode_pipeline.py # Data-parallel latent encoder (2-GPU)
│ ├── generate.py # Programmatic generation API
│ ├── SD_ImageGen.py # Alternative inference script (CLI)
│ ├── SD_Model.py # Legacy model (kept for reproducibility)
│ └── SD_Train.py / SD_Train_v2.py # Legacy training scripts
├── data_pipeline/ # LAION-2B data processing
│ ├── 01_download_metadata.py → 06_filter_dataset.py
├── configs/
│ └── config.py # Dataclass-based configuration
├── tests/ # CPU smoke tests
│ ├── test_unet_forward.py
│ └── test_ddim_step.py
├── docs/ # Documentation
│ ├── architecture.md # Model architecture deep-dive
│ ├── training-loop.md # Training procedure
│ ├── data-pipeline.md # Data pipeline walkthrough
│ ├── inference.md # Inference guide
│ ├── blog_post.md # Medium-style write-up
│ └── images/ # Diagrams and samples
├── scripts/
│ └── download_checkpoint.py
├── results/samples/ # Curated output samples
├── assets/ # Architecture diagram, plots
├── requirements.txt
├── LICENSE # MIT
├── CITATION.cff # Citation metadata
└── .env.example # Environment variable template

Architecture

TEXT PROMPT
│
▼
┌──────────────────────────────────┐
│ CLIP Text Encoder (frozen) │ openai/clip-vit-large-patch14
│ 77 tokens → (B, 77, 768) │ 123M params — no gradient
└──────────────────┬───────────────┘
│ context (B, 77, 768)
│
IMAGE │
│ │
▼ │
┌──────────────────────────────────┐
│ VAE Encoder (frozen) │ stabilityai/sd-vae-ft-mse
│ (B,3,512,512) → (B,4,64,64) │ 83M params — no gradient
└──────────────────┬───────────────┘
│ latent z
▼
┌───────────────┐
│ add_noise(z,t)│ DDPM forward: z_t = √ᾱ_t·z + √(1-ᾱ_t)·ε
└───────┬───────┘
│ (B, 4, 64, 64) noisy latent
▼
┌──────────────────────────────────┐
│ UNet Denoising Model │ ~860M params — TRAINABLE
│ │
│ Encoder: │
│ Stage 0 (64×64): 320 ch │ — no attention
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Bottleneck (8×8): 1280 ch │ ← attn + resblock
│ Decoder: │
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 0 (64×64): 320 ch │ — no attention
│ │
│ ε_θ(z_t, t, ctx) → (B, 4, 64, 64)
└──────────────────┬───────────────┘
│ predicted noise ε̂
│
MSE Loss: ||ε̂ − ε||²
│
▽ (backprop)

For a detailed architectural walkthrough, see docs/architecture.md.


Training Summary

StageEpochsStepsBest LossLRNotes
Pre-training1–10136K0.12471e-4 → 1e-5Cosine decay, Min-SNR γ=5→2.5
Fine-tuning11–4296K0.0947 (ep 16)1e-5EMA decay=0.9999, CFG dropout=0.05
Final42232K0.1212Released checkpoint
  • Hardware: 2× RTX 5090 (Blackwell, cc 10.x, 32 GB VRAM each) on RunPod
  • Dataset: LAION-2B-en-aesthetic (~12M images, filtered to aesthetic ≥ 6.5)
  • Multi-GPU: DDP (NCCL) with BF16 autocast, gradient accumulation (effective batch 96)
  • Loss: Min-SNR-weighted MSE (γ=5.0 → 2.5 for fine-tuning)
  • EMA: Polyak decay 0.9999, shadow weights stored in checkpoint

Full loss curves and per-epoch breakdown: summary.md


Checkpoints

Download sourceSizeFormatNotes
Hugging Face Hub12.5 GBPyTorch .ptContains ema_state_dict + unet_state_dict, optimizer, LR scheduler
GitHub ReleasesComing in v1.1

Loading from Python

importsys, torchsys.path.insert(0, "src") # make src/ importablefromhuggingface_hubimporthf_hub_downloadfromSD_ModelimportUNetModel# legacy single-file module# — or, equivalently, the refactored module: from model import UNetModelcheckpoint=hf_hub_download(
repo_id="atandra2000/sd-from-scratch-v1",
filename="sd_epoch_042.pt",
local_dir="checkpoints",
)
ckpt=torch.load(checkpoint, map_location="cpu", weights_only=False)
# Load EMA shadow (produces better images than live weights)unet=UNetModel(in_ch=4, out_ch=4, ch=320, res_blks=2,
attn_lvls=(1, 2, 3), ch_mults=(1, 2, 4, 4),
heads=8, ctx_dim=768)
shadow=ckpt["ema_state_dict"]["shadow"]
cleaned= {}
fork, vinshadow.items():
forprefixin ("module.", "unet.", "_orig_mod."):
ifk.startswith(prefix):
k=k[len(prefix):]
breakcleaned[k] =vunet.load_state_dict(cleaned, strict=False) # strict=False: a few shadow keys may be absentunet.eval()

See src/inference.py:load_ema_unet() for the canonical loader used in production.


Training Reproduction

Data Pipeline

# The full pipeline from raw LAION metadata → encoded latents:
python data_pipeline/01_download_metadata.py
python data_pipeline/02_filter_metadata.py # aesthetic ≥ 6.5
python data_pipeline/03_download_images.py # WebDataset shards
python data_pipeline/04_preprocess_to_cache.py # tokenize + augment
python data_pipeline/05_build_hf_dataset.py # HuggingFace Dataset
python src/encode_latents.py # VAE encode to .npy
python src/encode_pipeline.py # 2-GPU parallel encode

See docs/data-pipeline.md for the complete walkthrough.

Training

# Single node, 2× GPU (torchrun)
torchrun --nproc_per_node=2 src/train.py \
--cache_path laion_hf_dataset/train \
--latent_dir laion_latents \
--epochs 42 \
--batch_size 24 \
--lr 1e-5 \
--min_snr --min_snr_gamma 5.0 \
--cfg_dropout 0.05 \
--grad_ckpt \
--memory_format channels_last
# Resume from checkpoint
torchrun --nproc_per_node=2 src/train.py \
--resume checkpoints/sd_epoch_021.pt

Inference

CLI

# Single prompt (Apple Silicon or CUDA)
python src/inference.py \
--prompt "a cosmic nebula with vibrant purples and blues" \
--checkpoint checkpoints/sd_epoch_042.pt \
--steps 50 --guidance 7.5 --seed 42
# With negative prompt
python src/inference.py \
--prompt "a portrait of a woman" \
--negative "blurry, low quality, deformed hands" \
--checkpoint checkpoints/sd_epoch_042.pt
# Batch mode
python src/inference.py \
--batch prompts.txt \
--output_dir ./outputs \
--checkpoint checkpoints/sd_epoch_042.pt

Python API

importsyssys.path.insert(0, "src")
importtorchfromtransformersimportCLIPTokenizerfromgenerateimportload_model, generatedevice=torch.device("cuda"iftorch.cuda.is_available() else"cpu")
model=load_model("checkpoints/sd_epoch_042.pt", device)
tokenizer=CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
images=generate(
model=model,
tokenizer=tokenizer,
prompts= ["a beautiful sunset over mountains"],
num_steps=50,
guidance_scale=7.5,
seed=42,
output_path="output.png",
)

Note: generate() is the function in src/generate.py. It takes a loaded StableDiffusionModel, not a checkpoint path — that's what load_model() is for above.

See docs/inference.md for all options.


Known Differences from Official Stable Diffusion

ComponentImplementationDiffuser Reference
UNetFull ~860M param SD 1.x UNet, custom SpatialTransformer, Flash SDPUNet2DConditionModel
Scheduler (training)DDPM with scaled_linear beta scheduleDDPMScheduler
Scheduler (inference)DDIM with optional stochastic (eta)DDIMScheduler
Text encoderCLIPTextModel from transformers (frozen)CLIPTextModel
VAEAutoencoderKL from diffusers (frozen)AutoencoderKL
ConditioningClassifier-Free Guidance with --negative promptCFG
Multi-GPUDDP (NCCL) with BF16 autocastaccelerate
LossMin-SNR-weighted MSE

Citation

@software{bharati2026sdfromscratch,
author = {Atandra Bharati},
title = {{SD-From-Scratch v1}: A Stable-Diffusion-class Latent Diffusion Model Trained from Scratch on Dual {RTX} 5090s},
year = {2026},
url = {https://huggingface.co/atandra2000/sd-from-scratch-v1},
}

License

MIT — see LICENSE for details.

About

A Stable Diffusion 1.x-class latent diffusion model trained from scratch on 2× RTX 5090 (Blackwell) GPUs. Full UNet (~860M params), DDPM/DDIM, LAION pipeline, DDP+BF16.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

Repository files navigation

SD-From-Scratch v1Sample outputs at epoch 42 — 232K steps on 2× RTX 5090

Stable Diffusion from Scratch

GitHubHugging Face ModelLicense: MITPython 3.11+W&B Report

A full-stack Stable Diffusion 1.x-class latent diffusion model — built entirely from scratch in PyTorch, trained on 2× RTX 5090 (Blackwell) GPUs. Every component (UNet, DDPM/DDIM, VAE pipeline, CLIP conditioning, data pipeline, DDP training loop) is hand-implemented; no diffusers, no compel, no black boxes.

Checkpointatandra2000/sd-from-scratch-v1 (12.5 GB, sd_epoch_042.pt)


Quick Start

# 1. Download the checkpoint
pip install huggingface_hub
python scripts/download_checkpoint.py
# 2. Run inference
pip install torch torchvision transformers Pillow
python src/inference.py --prompt "a cinematic shot of a mountain lake at sunset" --checkpoint checkpoints/sd_epoch_042.pt

See docs/inference.md for advanced usage (negative prompts, batch mode, DDIM parameters).


Repository Layout

├── src/ # Core implementation
│ ├── model.py # UNet (~860M params), DDPM/DDIM schedulers
│ ├── train.py # DDP + BF16 training loop
│ ├── inference.py # Apple Silicon + CUDA inference
│ ├── encode_latents.py # VAE pre-encoding for training
│ ├── encode_pipeline.py # Data-parallel latent encoder (2-GPU)
│ ├── generate.py # Programmatic generation API
│ ├── SD_ImageGen.py # Alternative inference script (CLI)
│ ├── SD_Model.py # Legacy model (kept for reproducibility)
│ └── SD_Train.py / SD_Train_v2.py # Legacy training scripts
├── data_pipeline/ # LAION-2B data processing
│ ├── 01_download_metadata.py → 06_filter_dataset.py
├── configs/
│ └── config.py # Dataclass-based configuration
├── tests/ # CPU smoke tests
│ ├── test_unet_forward.py
│ └── test_ddim_step.py
├── docs/ # Documentation
│ ├── architecture.md # Model architecture deep-dive
│ ├── training-loop.md # Training procedure
│ ├── data-pipeline.md # Data pipeline walkthrough
│ ├── inference.md # Inference guide
│ ├── blog_post.md # Medium-style write-up
│ └── images/ # Diagrams and samples
├── scripts/
│ └── download_checkpoint.py
├── results/samples/ # Curated output samples
├── assets/ # Architecture diagram, plots
├── requirements.txt
├── LICENSE # MIT
├── CITATION.cff # Citation metadata
└── .env.example # Environment variable template

Architecture

TEXT PROMPT
│
▼
┌──────────────────────────────────┐
│ CLIP Text Encoder (frozen) │ openai/clip-vit-large-patch14
│ 77 tokens → (B, 77, 768) │ 123M params — no gradient
└──────────────────┬───────────────┘
│ context (B, 77, 768)
│
IMAGE │
│ │
▼ │
┌──────────────────────────────────┐
│ VAE Encoder (frozen) │ stabilityai/sd-vae-ft-mse
│ (B,3,512,512) → (B,4,64,64) │ 83M params — no gradient
└──────────────────┬───────────────┘
│ latent z
▼
┌───────────────┐
│ add_noise(z,t)│ DDPM forward: z_t = √ᾱ_t·z + √(1-ᾱ_t)·ε
└───────┬───────┘
│ (B, 4, 64, 64) noisy latent
▼
┌──────────────────────────────────┐
│ UNet Denoising Model │ ~860M params — TRAINABLE
│ │
│ Encoder: │
│ Stage 0 (64×64): 320 ch │ — no attention
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Bottleneck (8×8): 1280 ch │ ← attn + resblock
│ Decoder: │
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 0 (64×64): 320 ch │ — no attention
│ │
│ ε_θ(z_t, t, ctx) → (B, 4, 64, 64)
└──────────────────┬───────────────┘
│ predicted noise ε̂
│
MSE Loss: ||ε̂ − ε||²
│
▽ (backprop)

For a detailed architectural walkthrough, see docs/architecture.md.


Training Summary

StageEpochsStepsBest LossLRNotes
Pre-training1–10136K0.12471e-4 → 1e-5Cosine decay, Min-SNR γ=5→2.5
Fine-tuning11–4296K0.0947 (ep 16)1e-5EMA decay=0.9999, CFG dropout=0.05
Final42232K0.1212Released checkpoint
  • Hardware: 2× RTX 5090 (Blackwell, cc 10.x, 32 GB VRAM each) on RunPod
  • Dataset: LAION-2B-en-aesthetic (~12M images, filtered to aesthetic ≥ 6.5)
  • Multi-GPU: DDP (NCCL) with BF16 autocast, gradient accumulation (effective batch 96)
  • Loss: Min-SNR-weighted MSE (γ=5.0 → 2.5 for fine-tuning)
  • EMA: Polyak decay 0.9999, shadow weights stored in checkpoint

Full loss curves and per-epoch breakdown: summary.md


Checkpoints

Download sourceSizeFormatNotes
Hugging Face Hub12.5 GBPyTorch .ptContains ema_state_dict + unet_state_dict, optimizer, LR scheduler
GitHub ReleasesComing in v1.1

Loading from Python

importsys, torchsys.path.insert(0, "src") # make src/ importablefromhuggingface_hubimporthf_hub_downloadfromSD_ModelimportUNetModel# legacy single-file module# — or, equivalently, the refactored module: from model import UNetModelcheckpoint=hf_hub_download(
repo_id="atandra2000/sd-from-scratch-v1",
filename="sd_epoch_042.pt",
local_dir="checkpoints",
)
ckpt=torch.load(checkpoint, map_location="cpu", weights_only=False)
# Load EMA shadow (produces better images than live weights)unet=UNetModel(in_ch=4, out_ch=4, ch=320, res_blks=2,
attn_lvls=(1, 2, 3), ch_mults=(1, 2, 4, 4),
heads=8, ctx_dim=768)
shadow=ckpt["ema_state_dict"]["shadow"]
cleaned= {}
fork, vinshadow.items():
forprefixin ("module.", "unet.", "_orig_mod."):
ifk.startswith(prefix):
k=k[len(prefix):]
breakcleaned[k] =vunet.load_state_dict(cleaned, strict=False) # strict=False: a few shadow keys may be absentunet.eval()

See src/inference.py:load_ema_unet() for the canonical loader used in production.


Training Reproduction

Data Pipeline

# The full pipeline from raw LAION metadata → encoded latents:
python data_pipeline/01_download_metadata.py
python data_pipeline/02_filter_metadata.py # aesthetic ≥ 6.5
python data_pipeline/03_download_images.py # WebDataset shards
python data_pipeline/04_preprocess_to_cache.py # tokenize + augment
python data_pipeline/05_build_hf_dataset.py # HuggingFace Dataset
python src/encode_latents.py # VAE encode to .npy
python src/encode_pipeline.py # 2-GPU parallel encode

See docs/data-pipeline.md for the complete walkthrough.

Training

# Single node, 2× GPU (torchrun)
torchrun --nproc_per_node=2 src/train.py \
--cache_path laion_hf_dataset/train \
--latent_dir laion_latents \
--epochs 42 \
--batch_size 24 \
--lr 1e-5 \
--min_snr --min_snr_gamma 5.0 \
--cfg_dropout 0.05 \
--grad_ckpt \
--memory_format channels_last
# Resume from checkpoint
torchrun --nproc_per_node=2 src/train.py \
--resume checkpoints/sd_epoch_021.pt

Inference

CLI

# Single prompt (Apple Silicon or CUDA)
python src/inference.py \
--prompt "a cosmic nebula with vibrant purples and blues" \
--checkpoint checkpoints/sd_epoch_042.pt \
--steps 50 --guidance 7.5 --seed 42
# With negative prompt
python src/inference.py \
--prompt "a portrait of a woman" \
--negative "blurry, low quality, deformed hands" \
--checkpoint checkpoints/sd_epoch_042.pt
# Batch mode
python src/inference.py \
--batch prompts.txt \
--output_dir ./outputs \
--checkpoint checkpoints/sd_epoch_042.pt

Python API

importsyssys.path.insert(0, "src")
importtorchfromtransformersimportCLIPTokenizerfromgenerateimportload_model, generatedevice=torch.device("cuda"iftorch.cuda.is_available() else"cpu")
model=load_model("checkpoints/sd_epoch_042.pt", device)
tokenizer=CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
images=generate(
model=model,
tokenizer=tokenizer,
prompts= ["a beautiful sunset over mountains"],
num_steps=50,
guidance_scale=7.5,
seed=42,
output_path="output.png",
)

Note: generate() is the function in src/generate.py. It takes a loaded StableDiffusionModel, not a checkpoint path — that's what load_model() is for above.

See docs/inference.md for all options.


Known Differences from Official Stable Diffusion

ComponentImplementationDiffuser Reference
UNetFull ~860M param SD 1.x UNet, custom SpatialTransformer, Flash SDPUNet2DConditionModel
Scheduler (training)DDPM with scaled_linear beta scheduleDDPMScheduler
Scheduler (inference)DDIM with optional stochastic (eta)DDIMScheduler
Text encoderCLIPTextModel from transformers (frozen)CLIPTextModel
VAEAutoencoderKL from diffusers (frozen)AutoencoderKL
ConditioningClassifier-Free Guidance with --negative promptCFG
Multi-GPUDDP (NCCL) with BF16 autocastaccelerate
LossMin-SNR-weighted MSE

Citation

@software{bharati2026sdfromscratch,
author = {Atandra Bharati},
title = {{SD-From-Scratch v1}: A Stable-Diffusion-class Latent Diffusion Model Trained from Scratch on Dual {RTX} 5090s},
year = {2026},
url = {https://huggingface.co/atandra2000/sd-from-scratch-v1},
}

License

MIT — see LICENSE for details.

About

A Stable Diffusion 1.x-class latent diffusion model trained from scratch on 2× RTX 5090 (Blackwell) GPUs. Full UNet (~860M params), DDPM/DDIM, LAION pipeline, DDP+BF16.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

SD-From-Scratch v1Sample outputs at epoch 42 — 232K steps on 2× RTX 5090

Stable Diffusion from Scratch

GitHubHugging Face ModelLicense: MITPython 3.11+W&B Report

A full-stack Stable Diffusion 1.x-class latent diffusion model — built entirely from scratch in PyTorch, trained on 2× RTX 5090 (Blackwell) GPUs. Every component (UNet, DDPM/DDIM, VAE pipeline, CLIP conditioning, data pipeline, DDP training loop) is hand-implemented; no diffusers, no compel, no black boxes.

Checkpointatandra2000/sd-from-scratch-v1 (12.5 GB, sd_epoch_042.pt)


Quick Start

# 1. Download the checkpoint
pip install huggingface_hub
python scripts/download_checkpoint.py
# 2. Run inference
pip install torch torchvision transformers Pillow
python src/inference.py --prompt "a cinematic shot of a mountain lake at sunset" --checkpoint checkpoints/sd_epoch_042.pt

See docs/inference.md for advanced usage (negative prompts, batch mode, DDIM parameters).


Repository Layout

├── src/ # Core implementation
│ ├── model.py # UNet (~860M params), DDPM/DDIM schedulers
│ ├── train.py # DDP + BF16 training loop
│ ├── inference.py # Apple Silicon + CUDA inference
│ ├── encode_latents.py # VAE pre-encoding for training
│ ├── encode_pipeline.py # Data-parallel latent encoder (2-GPU)
│ ├── generate.py # Programmatic generation API
│ ├── SD_ImageGen.py # Alternative inference script (CLI)
│ ├── SD_Model.py # Legacy model (kept for reproducibility)
│ └── SD_Train.py / SD_Train_v2.py # Legacy training scripts
├── data_pipeline/ # LAION-2B data processing
│ ├── 01_download_metadata.py → 06_filter_dataset.py
├── configs/
│ └── config.py # Dataclass-based configuration
├── tests/ # CPU smoke tests
│ ├── test_unet_forward.py
│ └── test_ddim_step.py
├── docs/ # Documentation
│ ├── architecture.md # Model architecture deep-dive
│ ├── training-loop.md # Training procedure
│ ├── data-pipeline.md # Data pipeline walkthrough
│ ├── inference.md # Inference guide
│ ├── blog_post.md # Medium-style write-up
│ └── images/ # Diagrams and samples
├── scripts/
│ └── download_checkpoint.py
├── results/samples/ # Curated output samples
├── assets/ # Architecture diagram, plots
├── requirements.txt
├── LICENSE # MIT
├── CITATION.cff # Citation metadata
└── .env.example # Environment variable template

Architecture

TEXT PROMPT
│
▼
┌──────────────────────────────────┐
│ CLIP Text Encoder (frozen) │ openai/clip-vit-large-patch14
│ 77 tokens → (B, 77, 768) │ 123M params — no gradient
└──────────────────┬───────────────┘
│ context (B, 77, 768)
│
IMAGE │
│ │
▼ │
┌──────────────────────────────────┐
│ VAE Encoder (frozen) │ stabilityai/sd-vae-ft-mse
│ (B,3,512,512) → (B,4,64,64) │ 83M params — no gradient
└──────────────────┬───────────────┘
│ latent z
▼
┌───────────────┐
│ add_noise(z,t)│ DDPM forward: z_t = √ᾱ_t·z + √(1-ᾱ_t)·ε
└───────┬───────┘
│ (B, 4, 64, 64) noisy latent
▼
┌──────────────────────────────────┐
│ UNet Denoising Model │ ~860M params — TRAINABLE
│ │
│ Encoder: │
│ Stage 0 (64×64): 320 ch │ — no attention
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Bottleneck (8×8): 1280 ch │ ← attn + resblock
│ Decoder: │
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 0 (64×64): 320 ch │ — no attention
│ │
│ ε_θ(z_t, t, ctx) → (B, 4, 64, 64)
└──────────────────┬───────────────┘
│ predicted noise ε̂
│
MSE Loss: ||ε̂ − ε||²
│
▽ (backprop)

For a detailed architectural walkthrough, see docs/architecture.md.


Training Summary

StageEpochsStepsBest LossLRNotes
Pre-training1–10136K0.12471e-4 → 1e-5Cosine decay, Min-SNR γ=5→2.5
Fine-tuning11–4296K0.0947 (ep 16)1e-5EMA decay=0.9999, CFG dropout=0.05
Final42232K0.1212Released checkpoint
  • Hardware: 2× RTX 5090 (Blackwell, cc 10.x, 32 GB VRAM each) on RunPod
  • Dataset: LAION-2B-en-aesthetic (~12M images, filtered to aesthetic ≥ 6.5)
  • Multi-GPU: DDP (NCCL) with BF16 autocast, gradient accumulation (effective batch 96)
  • Loss: Min-SNR-weighted MSE (γ=5.0 → 2.5 for fine-tuning)
  • EMA: Polyak decay 0.9999, shadow weights stored in checkpoint

Full loss curves and per-epoch breakdown: summary.md


Checkpoints

Download sourceSizeFormatNotes
Hugging Face Hub12.5 GBPyTorch .ptContains ema_state_dict + unet_state_dict, optimizer, LR scheduler
GitHub ReleasesComing in v1.1

Loading from Python

importsys, torchsys.path.insert(0, "src") # make src/ importablefromhuggingface_hubimporthf_hub_downloadfromSD_ModelimportUNetModel# legacy single-file module# — or, equivalently, the refactored module: from model import UNetModelcheckpoint=hf_hub_download(
repo_id="atandra2000/sd-from-scratch-v1",
filename="sd_epoch_042.pt",
local_dir="checkpoints",
)
ckpt=torch.load(checkpoint, map_location="cpu", weights_only=False)
# Load EMA shadow (produces better images than live weights)unet=UNetModel(in_ch=4, out_ch=4, ch=320, res_blks=2,
attn_lvls=(1, 2, 3), ch_mults=(1, 2, 4, 4),
heads=8, ctx_dim=768)
shadow=ckpt["ema_state_dict"]["shadow"]
cleaned= {}
fork, vinshadow.items():
forprefixin ("module.", "unet.", "_orig_mod."):
ifk.startswith(prefix):
k=k[len(prefix):]
breakcleaned[k] =vunet.load_state_dict(cleaned, strict=False) # strict=False: a few shadow keys may be absentunet.eval()

See src/inference.py:load_ema_unet() for the canonical loader used in production.


Training Reproduction

Data Pipeline

# The full pipeline from raw LAION metadata → encoded latents:
python data_pipeline/01_download_metadata.py
python data_pipeline/02_filter_metadata.py # aesthetic ≥ 6.5
python data_pipeline/03_download_images.py # WebDataset shards
python data_pipeline/04_preprocess_to_cache.py # tokenize + augment
python data_pipeline/05_build_hf_dataset.py # HuggingFace Dataset
python src/encode_latents.py # VAE encode to .npy
python src/encode_pipeline.py # 2-GPU parallel encode

See docs/data-pipeline.md for the complete walkthrough.

Training

# Single node, 2× GPU (torchrun)
torchrun --nproc_per_node=2 src/train.py \
--cache_path laion_hf_dataset/train \
--latent_dir laion_latents \
--epochs 42 \
--batch_size 24 \
--lr 1e-5 \
--min_snr --min_snr_gamma 5.0 \
--cfg_dropout 0.05 \
--grad_ckpt \
--memory_format channels_last
# Resume from checkpoint
torchrun --nproc_per_node=2 src/train.py \
--resume checkpoints/sd_epoch_021.pt

Inference

CLI

# Single prompt (Apple Silicon or CUDA)
python src/inference.py \
--prompt "a cosmic nebula with vibrant purples and blues" \
--checkpoint checkpoints/sd_epoch_042.pt \
--steps 50 --guidance 7.5 --seed 42
# With negative prompt
python src/inference.py \
--prompt "a portrait of a woman" \
--negative "blurry, low quality, deformed hands" \
--checkpoint checkpoints/sd_epoch_042.pt
# Batch mode
python src/inference.py \
--batch prompts.txt \
--output_dir ./outputs \
--checkpoint checkpoints/sd_epoch_042.pt

Python API

importsyssys.path.insert(0, "src")
importtorchfromtransformersimportCLIPTokenizerfromgenerateimportload_model, generatedevice=torch.device("cuda"iftorch.cuda.is_available() else"cpu")
model=load_model("checkpoints/sd_epoch_042.pt", device)
tokenizer=CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
images=generate(
model=model,
tokenizer=tokenizer,
prompts= ["a beautiful sunset over mountains"],
num_steps=50,
guidance_scale=7.5,
seed=42,
output_path="output.png",
)

Note: generate() is the function in src/generate.py. It takes a loaded StableDiffusionModel, not a checkpoint path — that's what load_model() is for above.

See docs/inference.md for all options.


Known Differences from Official Stable Diffusion

ComponentImplementationDiffuser Reference
UNetFull ~860M param SD 1.x UNet, custom SpatialTransformer, Flash SDPUNet2DConditionModel
Scheduler (training)DDPM with scaled_linear beta scheduleDDPMScheduler
Scheduler (inference)DDIM with optional stochastic (eta)DDIMScheduler
Text encoderCLIPTextModel from transformers (frozen)CLIPTextModel
VAEAutoencoderKL from diffusers (frozen)AutoencoderKL
ConditioningClassifier-Free Guidance with --negative promptCFG
Multi-GPUDDP (NCCL) with BF16 autocastaccelerate
LossMin-SNR-weighted MSE

Citation

@software{bharati2026sdfromscratch,
author = {Atandra Bharati},
title = {{SD-From-Scratch v1}: A Stable-Diffusion-class Latent Diffusion Model Trained from Scratch on Dual {RTX} 5090s},
year = {2026},
url = {https://huggingface.co/atandra2000/sd-from-scratch-v1},
}

License

MIT — see LICENSE for details.

About

A Stable Diffusion 1.x-class latent diffusion model trained from scratch on 2× RTX 5090 (Blackwell) GPUs. Full UNet (~860M params), DDPM/DDIM, LAION pipeline, DDP+BF16.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

SD-From-Scratch v1Sample outputs at epoch 42 — 232K steps on 2× RTX 5090

Stable Diffusion from Scratch

GitHubHugging Face ModelLicense: MITPython 3.11+W&B Report

A full-stack Stable Diffusion 1.x-class latent diffusion model — built entirely from scratch in PyTorch, trained on 2× RTX 5090 (Blackwell) GPUs. Every component (UNet, DDPM/DDIM, VAE pipeline, CLIP conditioning, data pipeline, DDP training loop) is hand-implemented; no diffusers, no compel, no black boxes.

Checkpointatandra2000/sd-from-scratch-v1 (12.5 GB, sd_epoch_042.pt)


Quick Start

# 1. Download the checkpoint
pip install huggingface_hub
python scripts/download_checkpoint.py
# 2. Run inference
pip install torch torchvision transformers Pillow
python src/inference.py --prompt "a cinematic shot of a mountain lake at sunset" --checkpoint checkpoints/sd_epoch_042.pt

See docs/inference.md for advanced usage (negative prompts, batch mode, DDIM parameters).


Repository Layout

├── src/ # Core implementation
│ ├── model.py # UNet (~860M params), DDPM/DDIM schedulers
│ ├── train.py # DDP + BF16 training loop
│ ├── inference.py # Apple Silicon + CUDA inference
│ ├── encode_latents.py # VAE pre-encoding for training
│ ├── encode_pipeline.py # Data-parallel latent encoder (2-GPU)
│ ├── generate.py # Programmatic generation API
│ ├── SD_ImageGen.py # Alternative inference script (CLI)
│ ├── SD_Model.py # Legacy model (kept for reproducibility)
│ └── SD_Train.py / SD_Train_v2.py # Legacy training scripts
├── data_pipeline/ # LAION-2B data processing
│ ├── 01_download_metadata.py → 06_filter_dataset.py
├── configs/
│ └── config.py # Dataclass-based configuration
├── tests/ # CPU smoke tests
│ ├── test_unet_forward.py
│ └── test_ddim_step.py
├── docs/ # Documentation
│ ├── architecture.md # Model architecture deep-dive
│ ├── training-loop.md # Training procedure
│ ├── data-pipeline.md # Data pipeline walkthrough
│ ├── inference.md # Inference guide
│ ├── blog_post.md # Medium-style write-up
│ └── images/ # Diagrams and samples
├── scripts/
│ └── download_checkpoint.py
├── results/samples/ # Curated output samples
├── assets/ # Architecture diagram, plots
├── requirements.txt
├── LICENSE # MIT
├── CITATION.cff # Citation metadata
└── .env.example # Environment variable template

Architecture

TEXT PROMPT
│
▼
┌──────────────────────────────────┐
│ CLIP Text Encoder (frozen) │ openai/clip-vit-large-patch14
│ 77 tokens → (B, 77, 768) │ 123M params — no gradient
└──────────────────┬───────────────┘
│ context (B, 77, 768)
│
IMAGE │
│ │
▼ │
┌──────────────────────────────────┐
│ VAE Encoder (frozen) │ stabilityai/sd-vae-ft-mse
│ (B,3,512,512) → (B,4,64,64) │ 83M params — no gradient
└──────────────────┬───────────────┘
│ latent z
▼
┌───────────────┐
│ add_noise(z,t)│ DDPM forward: z_t = √ᾱ_t·z + √(1-ᾱ_t)·ε
└───────┬───────┘
│ (B, 4, 64, 64) noisy latent
▼
┌──────────────────────────────────┐
│ UNet Denoising Model │ ~860M params — TRAINABLE
│ │
│ Encoder: │
│ Stage 0 (64×64): 320 ch │ — no attention
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Bottleneck (8×8): 1280 ch │ ← attn + resblock
│ Decoder: │
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 0 (64×64): 320 ch │ — no attention
│ │
│ ε_θ(z_t, t, ctx) → (B, 4, 64, 64)
└──────────────────┬───────────────┘
│ predicted noise ε̂
│
MSE Loss: ||ε̂ − ε||²
│
▽ (backprop)

For a detailed architectural walkthrough, see docs/architecture.md.


Training Summary

StageEpochsStepsBest LossLRNotes
Pre-training1–10136K0.12471e-4 → 1e-5Cosine decay, Min-SNR γ=5→2.5
Fine-tuning11–4296K0.0947 (ep 16)1e-5EMA decay=0.9999, CFG dropout=0.05
Final42232K0.1212Released checkpoint
  • Hardware: 2× RTX 5090 (Blackwell, cc 10.x, 32 GB VRAM each) on RunPod
  • Dataset: LAION-2B-en-aesthetic (~12M images, filtered to aesthetic ≥ 6.5)
  • Multi-GPU: DDP (NCCL) with BF16 autocast, gradient accumulation (effective batch 96)
  • Loss: Min-SNR-weighted MSE (γ=5.0 → 2.5 for fine-tuning)
  • EMA: Polyak decay 0.9999, shadow weights stored in checkpoint

Full loss curves and per-epoch breakdown: summary.md


Checkpoints

Download sourceSizeFormatNotes
Hugging Face Hub12.5 GBPyTorch .ptContains ema_state_dict + unet_state_dict, optimizer, LR scheduler
GitHub ReleasesComing in v1.1

Loading from Python

importsys, torchsys.path.insert(0, "src") # make src/ importablefromhuggingface_hubimporthf_hub_downloadfromSD_ModelimportUNetModel# legacy single-file module# — or, equivalently, the refactored module: from model import UNetModelcheckpoint=hf_hub_download(
repo_id="atandra2000/sd-from-scratch-v1",
filename="sd_epoch_042.pt",
local_dir="checkpoints",
)
ckpt=torch.load(checkpoint, map_location="cpu", weights_only=False)
# Load EMA shadow (produces better images than live weights)unet=UNetModel(in_ch=4, out_ch=4, ch=320, res_blks=2,
attn_lvls=(1, 2, 3), ch_mults=(1, 2, 4, 4),
heads=8, ctx_dim=768)
shadow=ckpt["ema_state_dict"]["shadow"]
cleaned= {}
fork, vinshadow.items():
forprefixin ("module.", "unet.", "_orig_mod."):
ifk.startswith(prefix):
k=k[len(prefix):]
breakcleaned[k] =vunet.load_state_dict(cleaned, strict=False) # strict=False: a few shadow keys may be absentunet.eval()

See src/inference.py:load_ema_unet() for the canonical loader used in production.


Training Reproduction

Data Pipeline

# The full pipeline from raw LAION metadata → encoded latents:
python data_pipeline/01_download_metadata.py
python data_pipeline/02_filter_metadata.py # aesthetic ≥ 6.5
python data_pipeline/03_download_images.py # WebDataset shards
python data_pipeline/04_preprocess_to_cache.py # tokenize + augment
python data_pipeline/05_build_hf_dataset.py # HuggingFace Dataset
python src/encode_latents.py # VAE encode to .npy
python src/encode_pipeline.py # 2-GPU parallel encode

See docs/data-pipeline.md for the complete walkthrough.

Training

# Single node, 2× GPU (torchrun)
torchrun --nproc_per_node=2 src/train.py \
--cache_path laion_hf_dataset/train \
--latent_dir laion_latents \
--epochs 42 \
--batch_size 24 \
--lr 1e-5 \
--min_snr --min_snr_gamma 5.0 \
--cfg_dropout 0.05 \
--grad_ckpt \
--memory_format channels_last
# Resume from checkpoint
torchrun --nproc_per_node=2 src/train.py \
--resume checkpoints/sd_epoch_021.pt

Inference

CLI

# Single prompt (Apple Silicon or CUDA)
python src/inference.py \
--prompt "a cosmic nebula with vibrant purples and blues" \
--checkpoint checkpoints/sd_epoch_042.pt \
--steps 50 --guidance 7.5 --seed 42
# With negative prompt
python src/inference.py \
--prompt "a portrait of a woman" \
--negative "blurry, low quality, deformed hands" \
--checkpoint checkpoints/sd_epoch_042.pt
# Batch mode
python src/inference.py \
--batch prompts.txt \
--output_dir ./outputs \
--checkpoint checkpoints/sd_epoch_042.pt

Python API

importsyssys.path.insert(0, "src")
importtorchfromtransformersimportCLIPTokenizerfromgenerateimportload_model, generatedevice=torch.device("cuda"iftorch.cuda.is_available() else"cpu")
model=load_model("checkpoints/sd_epoch_042.pt", device)
tokenizer=CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
images=generate(
model=model,
tokenizer=tokenizer,
prompts= ["a beautiful sunset over mountains"],
num_steps=50,
guidance_scale=7.5,
seed=42,
output_path="output.png",
)

Note: generate() is the function in src/generate.py. It takes a loaded StableDiffusionModel, not a checkpoint path — that's what load_model() is for above.

See docs/inference.md for all options.


Known Differences from Official Stable Diffusion

ComponentImplementationDiffuser Reference
UNetFull ~860M param SD 1.x UNet, custom SpatialTransformer, Flash SDPUNet2DConditionModel
Scheduler (training)DDPM with scaled_linear beta scheduleDDPMScheduler
Scheduler (inference)DDIM with optional stochastic (eta)DDIMScheduler
Text encoderCLIPTextModel from transformers (frozen)CLIPTextModel
VAEAutoencoderKL from diffusers (frozen)AutoencoderKL
ConditioningClassifier-Free Guidance with --negative promptCFG
Multi-GPUDDP (NCCL) with BF16 autocastaccelerate
LossMin-SNR-weighted MSE

Citation

@software{bharati2026sdfromscratch,
author = {Atandra Bharati},
title = {{SD-From-Scratch v1}: A Stable-Diffusion-class Latent Diffusion Model Trained from Scratch on Dual {RTX} 5090s},
year = {2026},
url = {https://huggingface.co/atandra2000/sd-from-scratch-v1},
}

License

MIT — see LICENSE for details.

About

A Stable Diffusion 1.x-class latent diffusion model trained from scratch on 2× RTX 5090 (Blackwell) GPUs. Full UNet (~860M params), DDPM/DDIM, LAION pipeline, DDP+BF16.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

Repository files navigation

SD-From-Scratch v1Sample outputs at epoch 42 — 232K steps on 2× RTX 5090

Stable Diffusion from Scratch

GitHubHugging Face ModelLicense: MITPython 3.11+W&B Report

A full-stack Stable Diffusion 1.x-class latent diffusion model — built entirely from scratch in PyTorch, trained on 2× RTX 5090 (Blackwell) GPUs. Every component (UNet, DDPM/DDIM, VAE pipeline, CLIP conditioning, data pipeline, DDP training loop) is hand-implemented; no diffusers, no compel, no black boxes.

Checkpointatandra2000/sd-from-scratch-v1 (12.5 GB, sd_epoch_042.pt)


Quick Start

# 1. Download the checkpoint
pip install huggingface_hub
python scripts/download_checkpoint.py
# 2. Run inference
pip install torch torchvision transformers Pillow
python src/inference.py --prompt "a cinematic shot of a mountain lake at sunset" --checkpoint checkpoints/sd_epoch_042.pt

See docs/inference.md for advanced usage (negative prompts, batch mode, DDIM parameters).


Repository Layout

├── src/ # Core implementation
│ ├── model.py # UNet (~860M params), DDPM/DDIM schedulers
│ ├── train.py # DDP + BF16 training loop
│ ├── inference.py # Apple Silicon + CUDA inference
│ ├── encode_latents.py # VAE pre-encoding for training
│ ├── encode_pipeline.py # Data-parallel latent encoder (2-GPU)
│ ├── generate.py # Programmatic generation API
│ ├── SD_ImageGen.py # Alternative inference script (CLI)
│ ├── SD_Model.py # Legacy model (kept for reproducibility)
│ └── SD_Train.py / SD_Train_v2.py # Legacy training scripts
├── data_pipeline/ # LAION-2B data processing
│ ├── 01_download_metadata.py → 06_filter_dataset.py
├── configs/
│ └── config.py # Dataclass-based configuration
├── tests/ # CPU smoke tests
│ ├── test_unet_forward.py
│ └── test_ddim_step.py
├── docs/ # Documentation
│ ├── architecture.md # Model architecture deep-dive
│ ├── training-loop.md # Training procedure
│ ├── data-pipeline.md # Data pipeline walkthrough
│ ├── inference.md # Inference guide
│ ├── blog_post.md # Medium-style write-up
│ └── images/ # Diagrams and samples
├── scripts/
│ └── download_checkpoint.py
├── results/samples/ # Curated output samples
├── assets/ # Architecture diagram, plots
├── requirements.txt
├── LICENSE # MIT
├── CITATION.cff # Citation metadata
└── .env.example # Environment variable template

Architecture

TEXT PROMPT
│
▼
┌──────────────────────────────────┐
│ CLIP Text Encoder (frozen) │ openai/clip-vit-large-patch14
│ 77 tokens → (B, 77, 768) │ 123M params — no gradient
└──────────────────┬───────────────┘
│ context (B, 77, 768)
│
IMAGE │
│ │
▼ │
┌──────────────────────────────────┐
│ VAE Encoder (frozen) │ stabilityai/sd-vae-ft-mse
│ (B,3,512,512) → (B,4,64,64) │ 83M params — no gradient
└──────────────────┬───────────────┘
│ latent z
▼
┌───────────────┐
│ add_noise(z,t)│ DDPM forward: z_t = √ᾱ_t·z + √(1-ᾱ_t)·ε
└───────┬───────┘
│ (B, 4, 64, 64) noisy latent
▼
┌──────────────────────────────────┐
│ UNet Denoising Model │ ~860M params — TRAINABLE
│ │
│ Encoder: │
│ Stage 0 (64×64): 320 ch │ — no attention
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Bottleneck (8×8): 1280 ch │ ← attn + resblock
│ Decoder: │
│ Stage 3 (8×8): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 2 (16×16): 1280 ch │ ← SpatialTransformer (cross-attn)
│ Stage 1 (32×32): 640 ch │ ← SpatialTransformer (cross-attn)
│ Stage 0 (64×64): 320 ch │ — no attention
│ │
│ ε_θ(z_t, t, ctx) → (B, 4, 64, 64)
└──────────────────┬───────────────┘
│ predicted noise ε̂
│
MSE Loss: ||ε̂ − ε||²
│
▽ (backprop)

For a detailed architectural walkthrough, see docs/architecture.md.


Training Summary

StageEpochsStepsBest LossLRNotes
Pre-training1–10136K0.12471e-4 → 1e-5Cosine decay, Min-SNR γ=5→2.5
Fine-tuning11–4296K0.0947 (ep 16)1e-5EMA decay=0.9999, CFG dropout=0.05
Final42232K0.1212Released checkpoint
  • Hardware: 2× RTX 5090 (Blackwell, cc 10.x, 32 GB VRAM each) on RunPod
  • Dataset: LAION-2B-en-aesthetic (~12M images, filtered to aesthetic ≥ 6.5)
  • Multi-GPU: DDP (NCCL) with BF16 autocast, gradient accumulation (effective batch 96)
  • Loss: Min-SNR-weighted MSE (γ=5.0 → 2.5 for fine-tuning)
  • EMA: Polyak decay 0.9999, shadow weights stored in checkpoint

Full loss curves and per-epoch breakdown: summary.md


Checkpoints

Download sourceSizeFormatNotes
Hugging Face Hub12.5 GBPyTorch .ptContains ema_state_dict + unet_state_dict, optimizer, LR scheduler
GitHub ReleasesComing in v1.1

Loading from Python

importsys, torchsys.path.insert(0, "src") # make src/ importablefromhuggingface_hubimporthf_hub_downloadfromSD_ModelimportUNetModel# legacy single-file module# — or, equivalently, the refactored module: from model import UNetModelcheckpoint=hf_hub_download(
repo_id="atandra2000/sd-from-scratch-v1",
filename="sd_epoch_042.pt",
local_dir="checkpoints",
)
ckpt=torch.load(checkpoint, map_location="cpu", weights_only=False)
# Load EMA shadow (produces better images than live weights)unet=UNetModel(in_ch=4, out_ch=4, ch=320, res_blks=2,
attn_lvls=(1, 2, 3), ch_mults=(1, 2, 4, 4),
heads=8, ctx_dim=768)
shadow=ckpt["ema_state_dict"]["shadow"]
cleaned= {}
fork, vinshadow.items():
forprefixin ("module.", "unet.", "_orig_mod."):
ifk.startswith(prefix):
k=k[len(prefix):]
breakcleaned[k] =vunet.load_state_dict(cleaned, strict=False) # strict=False: a few shadow keys may be absentunet.eval()

See src/inference.py:load_ema_unet() for the canonical loader used in production.


Training Reproduction

Data Pipeline

# The full pipeline from raw LAION metadata → encoded latents:
python data_pipeline/01_download_metadata.py
python data_pipeline/02_filter_metadata.py # aesthetic ≥ 6.5
python data_pipeline/03_download_images.py # WebDataset shards
python data_pipeline/04_preprocess_to_cache.py # tokenize + augment
python data_pipeline/05_build_hf_dataset.py # HuggingFace Dataset
python src/encode_latents.py # VAE encode to .npy
python src/encode_pipeline.py # 2-GPU parallel encode

See docs/data-pipeline.md for the complete walkthrough.

Training

# Single node, 2× GPU (torchrun)
torchrun --nproc_per_node=2 src/train.py \
--cache_path laion_hf_dataset/train \
--latent_dir laion_latents \
--epochs 42 \
--batch_size 24 \
--lr 1e-5 \
--min_snr --min_snr_gamma 5.0 \
--cfg_dropout 0.05 \
--grad_ckpt \
--memory_format channels_last
# Resume from checkpoint
torchrun --nproc_per_node=2 src/train.py \
--resume checkpoints/sd_epoch_021.pt

Inference

CLI

# Single prompt (Apple Silicon or CUDA)
python src/inference.py \
--prompt "a cosmic nebula with vibrant purples and blues" \
--checkpoint checkpoints/sd_epoch_042.pt \
--steps 50 --guidance 7.5 --seed 42
# With negative prompt
python src/inference.py \
--prompt "a portrait of a woman" \
--negative "blurry, low quality, deformed hands" \
--checkpoint checkpoints/sd_epoch_042.pt
# Batch mode
python src/inference.py \
--batch prompts.txt \
--output_dir ./outputs \
--checkpoint checkpoints/sd_epoch_042.pt

Python API

importsyssys.path.insert(0, "src")
importtorchfromtransformersimportCLIPTokenizerfromgenerateimportload_model, generatedevice=torch.device("cuda"iftorch.cuda.is_available() else"cpu")
model=load_model("checkpoints/sd_epoch_042.pt", device)
tokenizer=CLIPTokenizer.from_pretrained("openai/clip-vit-large-patch14")
images=generate(
model=model,
tokenizer=tokenizer,
prompts= ["a beautiful sunset over mountains"],
num_steps=50,
guidance_scale=7.5,
seed=42,
output_path="output.png",
)

Note: generate() is the function in src/generate.py. It takes a loaded StableDiffusionModel, not a checkpoint path — that's what load_model() is for above.

See docs/inference.md for all options.


Known Differences from Official Stable Diffusion

ComponentImplementationDiffuser Reference
UNetFull ~860M param SD 1.x UNet, custom SpatialTransformer, Flash SDPUNet2DConditionModel
Scheduler (training)DDPM with scaled_linear beta scheduleDDPMScheduler
Scheduler (inference)DDIM with optional stochastic (eta)DDIMScheduler
Text encoderCLIPTextModel from transformers (frozen)CLIPTextModel
VAEAutoencoderKL from diffusers (frozen)AutoencoderKL
ConditioningClassifier-Free Guidance with --negative promptCFG
Multi-GPUDDP (NCCL) with BF16 autocastaccelerate
LossMin-SNR-weighted MSE

Citation

@software{bharati2026sdfromscratch,
author = {Atandra Bharati},
title = {{SD-From-Scratch v1}: A Stable-Diffusion-class Latent Diffusion Model Trained from Scratch on Dual {RTX} 5090s},
year = {2026},
url = {https://huggingface.co/atandra2000/sd-from-scratch-v1},
}

License

MIT — see LICENSE for details.

About

A Stable Diffusion 1.x-class latent diffusion model trained from scratch on 2× RTX 5090 (Blackwell) GPUs. Full UNet (~860M params), DDPM/DDIM, LAION pipeline, DDP+BF16.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages