Visit ComfyUI Online for ready-to-use ComfyUI environment
Combine multiple float batches into a continuous stream with optional order reversal for streamlined data merging.
The Batch Float Assemble node is designed to combine multiple batches of floating-point numbers into a single continuous stream. This node is particularly useful when you have several separate lists of floats that you need to merge into one for further processing or analysis. By providing an option to reverse the order of the batches before assembling them, this node offers flexibility in how the final stream is constructed. This can be beneficial in various scenarios, such as when the order of data points is crucial for subsequent operations. The primary goal of this node is to streamline the process of merging multiple float batches, making it easier to handle and manipulate large sets of numerical data.
The reverse
parameter is a boolean option that determines whether the order of the batches should be reversed before they are assembled into a single stream. If set to True
, the node will reverse the order of the input batches before merging them. If set to False
, the batches will be merged in their original order. This parameter allows you to control the sequence of the final output, which can be important for certain applications where the order of data points affects the outcome. The default value for this parameter is False
.
The output parameter FLOATS
is a single list of floating-point numbers that results from merging the input batches. This list contains all the floats from the input batches, combined into one continuous stream. The order of the floats in this list depends on the reverse
parameter: if reverse
is True
, the batches are merged in reverse order; if reverse
is False
, they are merged in their original order. This output is essential for any subsequent processing or analysis that requires a unified set of numerical data.
reverse
parameter is set to False
.reverse
parameter to True
to reverse the order of the batches before merging.None
or not properly initialized.reverse
parameter is not provided or incorrectly specified.reverse
parameter in the input with a valid boolean value (True
or False
).© Copyright 2024 RunComfy. All Rights Reserved.