You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tooltip="How to handle mismatched image batch sizes. tile: repeat shorter inputs; error: raise error on mismatch; pad: treat missing frames as zero."
49
49
),
50
50
io.Int.Input(id="batching", default=0),
51
+
io.Bool.Input(
52
+
id="remember_stack",
53
+
default=False,
54
+
display_name="Remember stack across batch",
55
+
tooltip=(
56
+
"If enabled, stack is copied at output leading to changes being remembered during batch operations (node runs multiple times in sucession). If disabled each batch gets it's own copy of the stack."
57
+
),
58
+
),
51
59
MrmthStack.Input(id="stack", tooltip="Access stack between nodes",optional=True)
0 commit comments