Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.comfy.org/llms.txt

Use this file to discover all available pages before exploring further.

This node will detect models located in the ComfyUI/models/checkpoints folder, and it will also read models from additional paths configured in the extra_model_paths.yaml file. Sometimes, you may need to refresh the ComfyUI interface to allow it to read the model files from the corresponding folder. The unCLIPCheckpointLoader node is designed for loading checkpoints specifically tailored for unCLIP models. It facilitates the retrieval and initialization of models, CLIP vision modules, and VAEs from a specified checkpoint, streamlining the setup process for further operations or analyses.

Inputs

FieldComfy dtypeDescription
ckpt_nameCOMBO[STRING]Specifies the name of the checkpoint to be loaded, identifying and retrieving the correct checkpoint file from a predefined directory, determining the initialization of models and configurations.

Outputs

FieldComfy dtypeDescriptionPython dtype
modelMODELRepresents the primary model loaded from the checkpoint.torch.nn.Module
clipCLIPRepresents the CLIP module loaded from the checkpoint, if available.torch.nn.Module
vaeVAERepresents the VAE module loaded from the checkpoint, if available.torch.nn.Module
clip_visionCLIP_VISIONRepresents the CLIP vision module loaded from the checkpoint, if available.torch.nn.Module