The CheckpointLoaderSimple node is used to load model files from specified locations and decompose them into three core components: the main model, text encoder, and image encoder/decoder.
This is a model loader node that loads model files from specified locations and decomposes them into three core components: the main model, text encoder, and image encoder/decoder.
This node automatically detects all model files in the ComfyUI/models/checkpoints
folder, as well as additional paths configured in your extra_model_paths.yaml
file.
ComfyUI/models/checkpoints
folder, or configure other paths through extra_model_paths.yamlParameter | Data Type | Input Type | Default | Range | Description |
---|---|---|---|---|---|
ckpt_name | STRING | Widget | null | All model files in checkpoints folder | Select the checkpoint model file name to load, which determines the AI model used for subsequent image generation |
Output Name | Data Type | Description |
---|---|---|
MODEL | MODEL | The main diffusion model used for image denoising generation, the core component of AI image creation |
CLIP | CLIP | The model used for encoding text prompts, converting text descriptions into information that AI can understand |
VAE | VAE | The model used for image encoding and decoding, responsible for converting between pixel space and latent space |