Checkpoint Loaders
CheckpointLoaderSimple
Loads a diffusion model checkpoint. Checkpoints contain the MODEL, CLIP, and VAE needed for image generation. Category:loaders
The name of the checkpoint (model) to load from the checkpoints directory
MODEL: The diffusion model used for denoising latentsCLIP: The CLIP model used for encoding text promptsVAE: The VAE model for encoding/decoding images to/from latent space
unCLIPCheckpointLoader
Loads an unCLIP model checkpoint, which includes CLIP Vision support. Category:loaders
The checkpoint file to load
MODEL: The diffusion modelCLIP: The CLIP text encoderVAE: The VAE modelCLIP_VISION: The CLIP vision model for image conditioning
LoRA Loaders
LoraLoader
Applies a LoRA (Low-Rank Adaptation) to modify the model and CLIP behavior. Category:loaders
The diffusion model the LoRA will be applied to
The CLIP model the LoRA will be applied to
The name of the LoRA file to load
How strongly to modify the diffusion model. Range: -100.0 to 100.0. Can be negative.
How strongly to modify the CLIP model. Range: -100.0 to 100.0. Can be negative.
MODEL: The modified diffusion modelCLIP: The modified CLIP model
LoraLoaderModelOnly
Applies a LoRA only to the model, not CLIP. Category:loaders
The diffusion model to apply the LoRA to
The name of the LoRA file
LoRA strength. Range: -100.0 to 100.0
MODEL: The modified diffusion model
VAE Loaders
VAELoader
Loads a VAE model separately from a checkpoint. Category:loaders
The VAE file to load. Options include standard VAEs and approximate VAEs (TAESD variants)
VAE: The loaded VAE model
- Standard VAE models (
.safetensors,.ptfiles) taesd: Tiny AutoEncoder for SD 1.x (fast preview)taesdxl: Tiny AutoEncoder for SDXL (fast preview)taesd3: Tiny AutoEncoder for SD3 (fast preview)taef1: Tiny AutoEncoder for Flux.1 (fast preview)- Video VAEs:
taehv,lighttaew2_2,lighttaew2_1, etc. pixel_space: Bypass VAE encoding/decoding entirely
CLIP Loaders
CLIPLoader
Loads a CLIP text encoder model separately. Category:advanced/loaders
The CLIP model file to load from the text_encoders directory
The CLIP architecture type. Options:
stable_diffusion, stable_cascade, sd3, stable_audio, mochi, ltxv, pixart, cosmos, etc.Device to load on. Options:
default, cpuCLIP: The loaded CLIP model
DualCLIPLoader
Loads two CLIP models for architectures that use dual text encoders. Category:advanced/loaders
First CLIP model file
Second CLIP model file
Dual CLIP type. Options:
sdxl, sd3, flux, hunyuan_video, hidream, etc.Device to load on
CLIP: The combined dual CLIP model
- SDXL:
clip-l+clip-g - SD3:
clip-l+clip-gorclip-l+t5orclip-g+t5 - Flux:
clip-l+t5
Advanced Loaders
UNETLoader
Loads a diffusion model (UNET) separately. Category:advanced/loaders
The UNET model file to load
Weight precision. Options:
default, fp8_e4m3fn, fp8_e4m3fn_fast, fp8_e5m2MODEL: The loaded diffusion model
ControlNetLoader
Loads a ControlNet model for guided image generation. Category:loaders
The ControlNet model file to load
CONTROL_NET: The loaded ControlNet model
CLIPVisionLoader
Loads a CLIP Vision model for image conditioning. Category:loaders
The CLIP Vision model file to load
CLIP_VISION: The loaded CLIP Vision model
Model-Specific Loaders
StyleModelLoader
Loads a style model for style transfer. Category:loaders
The style model file to load
STYLE_MODEL: The loaded style model
UpscaleModelLoader
Loads an upscale model for image super-resolution. Category:loaders
The upscale model file to load from the upscale_models directory
UPSCALE_MODEL: The loaded upscale model