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
When I use meta batch in these recent versions, I receive a syntax error related with the variable frames_per_batch
I think that in load_video_nodes.py
Instead of assert frames_per_batch % format['frames'][0] == format['frames'][1], \ ...
should be: assert meta_batch.frames_per_batch % format['frames'][0] == format['frames'][1], \...
The text was updated successfully, but these errors were encountered:
ComfyUI has added native latent factors for wan, so the ad hoc and
particularly unhelpful factors I made can be pruned.
Fix a missed scoping when checking that meta batch is compatible with a
selected load format. Special thanks to tonirv68.
This is still a bit clunkier than I would like and will likely see
future updates.
Resolves#409
First of all thanks for you great job.
When I use meta batch in these recent versions, I receive a syntax error related with the variable frames_per_batch
I think that in load_video_nodes.py
Instead of
assert frames_per_batch % format['frames'][0] == format['frames'][1], \ ...
should be:
assert meta_batch.frames_per_batch % format['frames'][0] == format['frames'][1], \...
The text was updated successfully, but these errors were encountered: