EasyUse/Loadersgenerated
EasyCascadeLoader(cascadeLoader)
The EasyCascadeLoader node loads a complete Stable Cascade pipeline from its three stage checkpoints (stage_c, stage_b, stage_a), a CLIP model, an optional LoRA...
cascade Loader
optional_lora_stack
pipe
model_c
latent_c
vae
stage_c
COMBO
stage_b
COMBO
stage_a
COMBO
clip_name
COMBO
lora_name
COMBO
lora_model_strength
1.00
lora_clip_strength
1.00
resolution
1024 x 1024
empty_latent_width
INT
empty_latent_height
INT
compression
42
positive
STRING
negative
STRING
batch_size
1
Easy Use
Description
The EasyCascadeLoader node loads a complete Stable Cascade pipeline from its three stage checkpoints (stage_c, stage_b, stage_a), a CLIP model, an optional LoRA, and a text prompt. It builds the EasyUse pipeline object, creates an empty latent at the requested resolution and compression, and also exposes the model, latent, and VAE for direct use.
Inputs
Required
- stage_c (
COMBO): Selects the Stage C checkpoint. Stage C is the text-conditioned prior that creates the initial latent from your prompt. - stage_b (
COMBO): Selects the Stage B checkpoint. Stage B refines/upscales the Stage C latent before decoding. - stage_a (
COMBO): Selects the Stage A checkpoint. Stage A acts as the VAE/decoder that converts the final latent to pixel space. This model is also returned as thevaeoutput. - clip_name (
COMBO): Selects the CLIP model used to tokenize and encodepositiveandnegativeinto conditioning. - lora_name (
COMBO): Selects a LoRA to apply to the model and CLIP. Leave empty or select the "none" entry to skip the LoRA. - lora_model_strength (
FLOAT, default1): Strength of the LoRA applied to the diffusion model. Range-10to10; negative values reduce or invert the LoRA's influence. - lora_clip_strength (
FLOAT, default1): Strength of the LoRA applied to the CLIP text encoder. Range-10to10. - resolution (
COMBO, default"1024 x 1024"): Convenience preset forempty_latent_widthandempty_latent_height. - empty_latent_width (
INT): Width in pixels of the image to generate. This is the target pixel width, not the latent width. - empty_latent_height (
INT): Height in pixels of the image to generate. This is the target pixel height, not the latent height. - compression (
INT, default42, range32to64): The latent compression factor used by the Cascade Stage A/VAE. The empty latent's spatial size is computed asempty_latent_width // compressionbyempty_latent_height // compression. - positive (
STRING, default""): Positive prompt used to build the conditioning stored in thepipe_lineoutput. - negative (
STRING, default""): Negative prompt used to build the conditioning stored in thepipe_lineoutput. - batch_size (
INT, default1, range1to64): Number of identical empty latent samples to generate.
Optional
- optional_lora_stack (
LORA_STACK): Applies a stack of multiple LoRA configurations in addition tolora_name. Each entry in the stack supplies its own LoRA and model/CLIP strengths.
Outputs
- pipe_line (
PIPE_LINE): EasyUse pipeline containing the loaded model, CLIP, VAE, empty latent, and the positive/negative conditioning created from the prompt fields. Use this with EasyUse pipeline-aware nodes. - model (
MODEL): The combined Stable Cascade model, assembled from Stage C/B/A and modified by any selected LoRAs. - latent (
LATENT): The empty latent tensor, with shape based onbatch_size,empty_latent_width/height, andcompression. - vae (
VAE): The Stage A VAE decoder, usable to decode sampled latents to images.
Usage Notes
- The actual output latent size is not
empty_latent_width × empty_latent_height; divide both dimensions bycompression. With the default compression of42, a1024 x 1024image corresponds to roughly a24 x 24latent. - The
positiveandnegativeprompt fields are encoded into conditioning that lives insidepipe_line. The directmodel,latent, andvaeoutputs do not expose this conditioning or the CLIP model itself; if you need to apply the prompt outside the pipeline output, add a separate conditioning path. - Keep
compressionat the value required by your Stage A checkpoint. Changing it to 32 or 64 does not change the model architecture, but it changes the expected latent size and will likely produce bad results unless the checkpoint was trained with that compression. - The optional LoRA stack is applied on top of
lora_name, so you can combine one quick LoRA selected in the main widget with a saved stack of additional LoRAs. - Use the
pipe_lineoutput as the first input to EasyUse nodes such as Easy KSampler for a one-widget text-to-image setup.
Comments
Sign in with GitHub to join the discussion.