TwoSamplersForMask Upscaler Provider (pipe)
ImpactPack/Upscale
TwoSamplersForMaskUpscalerProviderPipeExample
JSON Example
{
"class_type": "TwoSamplersForMaskUpscalerProviderPipe",
"inputs": {
"scale_method": "nearest-exact",
"full_sample_schedule": "none",
"use_tiled_vae": false,
"base_sampler": [
"node_id",
0
],
"mask_sampler": [
"node_id",
0
],
"mask": [
"node_id",
0
],
"basic_pipe": [
"node_id",
0
],
"tile_size": 512
}
}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 |
|---|---|---|---|---|
scale_method | ENUM4 options
| required | - | - |
full_sample_schedule | ENUM9 options
| required | - | - |
use_tiled_vae | BOOLEAN | required | - | false |
base_sampler | KSAMPLER | required | - | - |
mask_sampler | KSAMPLER | required | - | - |
mask | MASK | required | - | - |
basic_pipe | BASIC_PIPE | required | - | - |
tile_size | INT | required | min: 320, max: 4096, step: 64 | 512 |
full_sampler_opt | KSAMPLER | optional | - | - |
upscale_model_opt | UPSCALE_MODEL | optional | - | - |
pk_hook_base_opt | PK_HOOK | optional | - | - |
pk_hook_mask_opt | PK_HOOK | optional | - | - |
pk_hook_full_opt | PK_HOOK | optional | - | - |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | UPSCALER | UPSCALER | 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 TwoSamplersForMaskUpscalerProviderPipe node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
UPSCALER (UPSCALER):["5", 0]
Was this page helpful?