Skip to content

Model Installation Guide

Learn how to install various model types.

Model Types

TypeLocationDescription
Checkpointmodels/checkpoints/Base models
VAEmodels/vae/Encoder/decoder
LoRAmodels/loras/Style modifiers
Embeddingmodels/embeddings/Text enhancements
ControlNetmodels/controlnet/Structure control
Upscalemodels/upscale_models/Resolution enhancement

Checkpoint Models

Download Locations

File Formats

FormatExtensionSafety
SafeTensors.safetensorsRecommended
PyTorch.ckpt, .pthUse carefully
Pickle.pklAvoid

Installation

  1. Download model file
  2. Place in appropriate folder:
# Stable Diffusion
ComfyUI/models/checkpoints/

# SDXL
ComfyUI/models/checkpoints/
# SDXL uses same folder
  1. Refresh ComfyUI or restart

VAE Models

Why VAE Matters

  • Affects image quality
  • Some checkpoints need specific VAE
  • Can improve color/smoothness
VAEUse For
autoencoder_kl-f8.ptSD 1.x
autoencoder_kl-f8-fp16-fix.safetensorsSDXL
vae-ft-mse-840000-ema-pruned.safetensorsGeneral

Installation

ComfyUI/models/vae/
  your-vae.safetensors

LoRA Models

Installation

ComfyUI/models/loras/
  your-lora.safetensors

Trigger Words

Check model page for required trigger words.

Embeddings

Installation

ComfyUI/models/embeddings/
  your-embedding.pt
  your-embedding.safetensors

Usage in Prompt

bash
embedding:embedding-name

ControlNet Models

Required Files

ComfyUI/models/controlnet/
  control_v11p_sd15_canny.pth
  control_v11p_sd15_depth.pth
  control_v11f1p_sd15_depth.pth
  control_v11p_sd15_openpose.pth
  # ... more models

Preprocessor Models

Located in custom node folders:

ComfyUI/custom_nodes/comfyui_controlnet_aux/
  models/
    midas/
    openpose/

Upscale Models

ModelUse For
4x-UltraSharp.pthPhotos, general
4x_NickelSSR_900000.pthAnime
RealESRGAN_x4.pthGeneral

Installation

ComfyUI/models/upscale_models/
  4x-UltraSharp.pth

Model Management

Organize by Type

models/
  checkpoints/
  vae/
  loras/
  embeddings/
  controlnet/
  upscale_models/

Cleanup

  • Remove unused models
  • Keep multiple versions if needed
  • Backup important models

Troubleshooting

Model Not Showing

  1. Check file location
  2. Verify file is complete
  3. Restart ComfyUI
  4. Check file permissions

Corrupted Model

  • Re-download file
  • Check file hash
  • Try different source

Next Steps