EasyLoader (Full)(fullLoader)
EasyLoader (Full) is an all-in-one loader node from ComfyUI-Easy-Use.
full Loader
Description
EasyLoader (Full) is an all-in-one loader node from ComfyUI-Easy-Use. It loads a checkpoint, applies an optional LoRA, creates an empty latent, encodes positive and negative prompts, and returns all of these as separate outputs plus a combined PIPE_LINE for convenient use with Easy-Use pipeline nodes.
Inputs
Model and VAE
ckpt_name: COMBO, required. Select the checkpoint to load.config_name: COMBO, required, defaultDefault. Select a custom model configuration to use with the loaded checkpoint.vae_name: COMBO, required. Select the VAE to load.clip_skip: INT, required, default-2, range-24to0. Determines how many CLIP layers are skipped. More negative values skip more layers.
LoRA
lora_name: COMBO, required. Select the LoRA to apply to the loaded model.lora_model_strength: FLOAT, default1, range-10to10, step0.01. Strength applied to the model weights.lora_clip_strength: FLOAT, default1, range-10to10, step0.01. Strength applied to the CLIP encoder.
Resolution and Latent
resolution: COMBO, required, default512 x 512. Preset resolution dropdown for the empty latent. Selecting a preset setsempty_latent_widthandempty_latent_height.empty_latent_width: INT, required. Final width of the generated empty latent in pixels.empty_latent_height: INT, required. Final height of the generated empty latent in pixels.batch_size: INT, required, default1, range1to4096. Number of identical latent images to generate in the batch.
Prompt Encoding
positive: STRING, required, default empty. The positive prompt text.positive_token_normalization: COMBO, required. Options:none,mean,length,length+mean. Controls how token embeddings are normalized during prompt encoding.positive_weight_interpretation: COMBO, required. Options:comfy,A1111,comfy++,compel,fixed attention. Controls how emphasis and attention weights in the prompt are interpreted.negative: STRING, required, default empty. The negative prompt text.negative_token_normalization: COMBO, required. Options:none,mean,length,length+mean.negative_weight_interpretation: COMBO, required. Options:comfy,A1111,comfy++,compel,fixed attention.
Optional Overrides and Stacks
model_override: MODEL, optional. If connected, this model is used instead of loading fromckpt_name.clip_override: CLIP, optional. If connected, this CLIP is used instead of loading from the checkpoint.vae_override: VAE, optional. If connected, this VAE is used instead of loading fromvae_name.optional_lora_stack: LORA_STACK, optional. Applies additional LoRAs in stack form, in addition to the mainlora_nameand strengths.optional_controlnet_stack: CONTROL_NET_STACK, optional. Applies a stacked list of ControlNets to the generated conditioning.a1111_prompt_style: BOOLEAN, optional. Enable this to interpret the positive and negative prompts using A1111-style prompt conventions.
Outputs
PIPE_LINE— A combined pipeline object containing the loaded model, VAE, CLIP, positive/negative conditioning, and generated latent for use with other Easy-Use pipeline nodes.MODEL— The loaded or overridden model, with LoRA applied.VAE— The selected or overridden VAE.CLIP— The loaded or overridden CLIP.CONDITIONING— The encoded positive prompt conditioning.CONDITIONING— The encoded negative prompt conditioning.LATENT— An empty latent generated fromempty_latent_width,empty_latent_height, andbatch_size.
Usage Notes
Use the PIPE_LINE output when connecting to other Easy-Use pipeline nodes to avoid wiring every component manually. The individual MODEL, VAE, CLIP, CONDITIONING, and LATENT outputs are available when you need standard ComfyUI connections.
For prompts written with A1111-style emphasis syntax, select A1111 under positive_weight_interpretation and negative_weight_interpretation, and enable a1111_prompt_style if you want the prompt parser to follow A1111 conventions more closely.
The resolution preset is a convenience for populating empty_latent_width and empty_latent_height; the actual latent dimensions used are the explicit width and height values passed to the node.
Comments
Sign in with GitHub to join the discussion.