A commit with the adits properly named improvements to qwen image edit plus workflow. Fixed a bug. Dont norm the cfg

This commit is contained in:
Jaret Burkett
2025-10-01 14:13:15 -06:00
parent 3086a58e5b
commit b7c04efb44

View File

@@ -215,7 +215,7 @@ class QwenImageEditPlusModel(QwenImageModel):
img_h2, img_w2 = height // 2, width // 2
# build distinct instances per batch item, per mamad8
img_shapes = [(1, img_h2, img_w2) for _ in range(batch_size)]
img_shapes = [[(1, img_h2, img_w2)] for _ in range(batch_size)]
# pack controls
if batch is None: