SamplerSEEDS2
sampling/custom_sampling/samplers
SamplerSEEDS2This sampler node can represent multiple samplers: seeds_2 - default setting exp_heun_2_x0 - solver_type=phi_2, r=1.0, eta=0.0 exp_heun_2_x0_sde - solver_type=phi_2, r=1.0, eta=1.0, s_noise=1.0
Example
JSON Example
{
"class_type": "SamplerSEEDS2",
"inputs": {
"solver_type": null,
"eta": 1,
"s_noise": 1,
"r": 0.5
}
}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 |
|---|---|---|---|---|
solver_type | COMBO | required | - | - |
eta? | FLOAT | required | min: 0, max: 100, step: 0.01 | 1 |
s_noise? | FLOAT | required | min: 0, max: 100, step: 0.01 | 1 |
r? | FLOAT | required | min: 0.01, max: 1, step: 0.01 | 0.5 |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | SAMPLER | SAMPLER | 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 SamplerSEEDS2 node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
SAMPLER (SAMPLER):["5", 0]
Was this page helpful?