ComfyUI-MoreEfficientSamplers
Advanced sampler nodes for ComfyUI based on efficiency-nodes, including live preview rendering and support for custom samplers with schedulers like flowmatch scheduler.
Nodes (5)
A float-list generator for per-step guidance schedules
Pick Your LoRA by Number Instead of Name
Multi Lora Loader Advanced
The Efficient node that takes custom samplers, sigmas and guiders
Schedule your guidance instead of locking it
GTNodes for ComfyUI
A bundle of nodes with different purposes. More info below. Some of those nodes (SamplerCustomAdvancedEfficient, MultiLoraLoader, ...) exist as an alternative to comfyui's subgraphs, where sometimes the widget values are not passed correctly inside.
Updates:
- 31/08/2026: Added
MultiLoraLoaderandMultiLoraLoaderAdvanced. - 26/08/2026:
- Updated
SamplerCustomAdvancedEfficient: model input is now optional. Added audio decode option. Added option to disable cfg and negative inputs to slightly slim down the ui. - Linked
ScheduledCfgGuiderClasstoCFGGuider, and removed now redundant functions.
- Updated
- Updated
SamplerCustomAdvancedEfficientto work through comfyuiSampler Custom Advancedto support LTXV combined latent and future comfyui updates. - Added
ScheduledCfgGuider,CFGFloatListScheduler(taken from my Wan-TimeToMove) to support higher cfg values at first steps without needing Wan-TimeToMove. - Removed redundant nodes.
Download
To install ComfyUI-GTNodes, follow these steps:
- Go in the ComfyUI
custom_nodesfolder, then download the repository or clone it here:git clone https://github.com/GiusTex/ComfyUI-GTNodes. - Optional: install ComfyUI-SigmaSync if you want to use
Multi Lora Loader Advanced. - Restart ComfyUI.
Nodes:
Multi Lora Loader
<img width="209" height="139" alt="Multi Lora Loader" src="https://github.com/user-attachments/assets/8f33a184-d276-49f3-ad15-8a4f58e959ea" />- A simple wrapper around comfyui's
Load Loranode to load multiple LoRAs. - Warning!: changing number of loras resets the values, I suggest to start with number of loras: 3-4 and leave
Nonein the unused slots. - As mentioned above, widgets with
Noneare skipped.
Multi Lora Loader Advanced
<img width="747" height="243" alt="Multi Lora Loader Advanced" src="https://github.com/user-attachments/assets/dd658b8b-d4c7-4538-9845-bd9d1f3debcb" />- A wrapper around
Multi Lora Loaderand a simpler version ofComfyUI-SigmaSync-LoRA, to specify just when to start or end the use of each lora. As you may imagine, the node requires ComfyUI-SigmaSync. - Leave
end_at_step:-1to apply the lora's strength until the last step. - The sigmas required are the same ones you pass to
SamplerCustomAdvanced. - As for
Multi Lora Loader, widgets withNoneare skipped, and changing number of loras resets the values. I suggest to start with number of loras: 3 and leaveNonein the unused slots.
How it works:
- Instead of specifying different strengths at different steps or setting manually their list manually, the node forces the
explicit curveand builds thestrengths_listwith a list of zeros, then it applies the lora's strength at the specified steps. - If no sigmas are provided the node falls back to the
Multi Lora Loadernode, otherwise it applies each strenght at specified steps to the corresponding loras.
Sampler Custom Advanced (Efficient):
<img width="320" height="513" alt="SamplerCustomAdvancedEfficient_Updated" src="https://github.com/user-attachments/assets/e8016887-3070-440e-af65-9e038dbb2fc1" />An edit of efficiency-nodes's ksampler adv. (eff.) to let it accept custom samplers, schedulers (sigmas) and guiders through comfyui Sampler Custom Advanced and other native nodes.
Supports:
- internal slicing of the sigmas, useful for multi-stage sampling;
- use of only positive, useful when sampling with cfg 1 and/or the negative isn't required;
- use of optional custom samplers, schedulers and guiders. Connect and use them, or bypass/leave their input slots empty to use the corresponding default widgets. Default guiders:
CFG Guiderwhenuse_cfgisTrue,Basic GuiderwhenFalse. - Decoding of images/audio, when one or both are available (the node auto-checks whats available in the latent).
Scheduled CFG Guider (with its CFG Float List Scheduler):
<img width="378" height="221" alt="Scheduled Cfg Guider" src="https://github.com/user-attachments/assets/821528e5-49b3-4016-bce9-b6d49f885136" />(Deprecated, although they still work; I advice to use comfyui's native CFG Override). Scheduled CFG Guider, anyway, let you decide what cfg to apply at each step through a list of floats connected to the cfg input. Based on kijai nodes.
Suggested resources:
flowmatch scheduler: useful with video models using lightx loras;ScheduledCfgGuider: supports higher cfg values at first steps.