RegionalSamplerAdvanced
ImpactPack/Regional
RegionalSamplerAdvancedExample
JSON Example
{
"class_type": "RegionalSamplerAdvanced",
"inputs": {
"add_noise": true,
"noise_seed": 0,
"steps": 20,
"start_at_step": 0,
"end_at_step": 10000,
"overlap_factor": 10,
"restore_latent": true,
"return_with_leftover_noise": false,
"latent_image": [
"node_id",
0
],
"base_sampler": [
"node_id",
0
],
"regional_prompts": [
"node_id",
0
],
"additional_mode": "ratio between",
"additional_sampler": "AUTO",
"additional_sigma_ratio": 0.3
}
}This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.
Inputs
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
add_noise? | BOOLEAN | required | - | true |
noise_seed? | INT | required | min: 0, max: 1.84e+19 | 0 |
steps? | INT | required | min: 1, max: 10000 | 20 |
start_at_step? | INT | required | min: 0, max: 10000 | 0 |
end_at_step? | INT | required | min: 0, max: 10000 | 10000 |
overlap_factor? | INT | required | min: 0, max: 10000 | 10 |
restore_latent? | BOOLEAN | required | - | true |
return_with_leftover_noise? | BOOLEAN | required | - | false |
latent_image? | LATENT | required | - | - |
base_sampler? | KSAMPLER_ADVANCED | required | - | - |
regional_prompts? | REGIONAL_PROMPTS | required | - | - |
additional_mode? | ENUM3 options
| required | - | "ratio between" |
additional_sampler? | ENUM8 options
| required | - | - |
additional_sigma_ratio? | FLOAT | required | min: 0, max: 1, step: 0.01 | 0.3 |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | LATENT | LATENT | No | ["{node_id}", 0] |
How to connect to these outputs
To connect another node's input to an output from this node, use the connection reference format:
["node_id", output_index]Where node_id is the ID of this RegionalSamplerAdvanced node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
LATENT (LATENT):["5", 0]
Was this page helpful?