EasyUse/🚫 Deprecatedgenerated
LatentNoisy (🚫Deprecated)(latentNoisy)
LatentNoisy (🚫Deprecated) node from ComfyUI-Easy-Use.
latent Noisy
pipe
optional_model
optional_latent
pipe
latent
sigma
sampler_name
COMBO
scheduler
COMBO
steps
10000
start_at_step
0
end_at_step
10000
source
COMBO
seed
0
Easy Use
Description
The LatentNoisy (🚫 Deprecated) node adds scheduled noise to a latent image using the selected sampler/scheduler configuration, and returns the resulting latent along with the sigma value used. It is listed under EasyUse/🚫 Deprecated, so it is intended mainly for compatibility with existing workflows. Prefer the current, non-deprecated equivalent in new graphs.
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
sampler_name | COMBO | ✔ | — | Sampler used to build the noise schedule. |
scheduler | COMBO | ✔ | — | Scheduler used alongside sampler_name. |
steps | INT | ✔ | 10000 | Total number of steps in the schedule. Minimum 0, maximum 10000. |
start_at_step | INT | ✔ | 0 | Step where the noise schedule begins. Minimum 0, maximum 10000. |
end_at_step | INT | ✔ | 10000 | Step where the noise schedule ends. Minimum 1, maximum 10000. |
source | COMBO | ✔ | — | Where the noise is generated: CPU or GPU. |
seed | INT | ✔ | 0 | Seed for the noise generator. Range goes up to 18446744073709552000. |
pipe | PIPE_LINE | ✘ | — | Optional pipeline input. If provided, the model and latent are taken from it unless overridden. |
optional_model | MODEL | ✘ | — | Optional direct model input. Use this when not using pipe, or to provide a model directly to the node. |
optional_latent | LATENT | ✘ | — | Optional direct latent input. Use this when not using pipe, or to provide the latent to be noised. |
The combo inputs sampler_name, scheduler, and source provide selectable presets from the node definition rather than free-form strings.
Outputs
| Type | Description |
|---|---|
PIPE_LINE | Pipeline output, containing the updated latent/noise result where applicable. |
LATENT | The latent with noise added according to the requested schedule. |
FLOAT | The sigma value corresponding to the noise level applied at the selected schedule position. |
Usage Notes
- The
steps,start_at_step, andend_at_stepinputs define the schedule window used to compute the noise strength. The defaults cover a full0–10000step range, so set these values to match the actual sampling plan you are using. - Use
sourceto choose whether noise is generated on theCPUorGPU. This should normally match where the model and latent are located. seeduses the full 64-bit unsigned seed range, with0as the default.- The
pipeinput is optional, but at least one model and one latent must be available somewhere in the inputs — either throughpipeor throughoptional_model/optional_latent. - Because this node is deprecated, avoid using it in new workflows unless maintaining an older graph that relies on its exact behavior.
Comments
Sign in with GitHub to join the discussion.