Skip to main content

SamplerSEEDS2

sampling/custom_sampling/samplers
SamplerSEEDS2

This 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

NameTypeStatusConstraintsDefault
solver_typeCOMBOrequired--
eta?FLOATrequiredmin: 0, max: 100, step: 0.011
s_noise?FLOATrequiredmin: 0, max: 100, step: 0.011
r?FLOATrequiredmin: 0.01, max: 1, step: 0.010.5

Outputs

IndexNameTypeIs ListConnection Reference
0SAMPLERSAMPLERNo["{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?