We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5663f18 commit 40e1849Copy full SHA for 40e1849
ai_diffusion/workflow.py
@@ -1483,6 +1483,10 @@ def prepare(
1483
else:
1484
raise Exception(f"Workflow {kind.name} not supported by this constructor")
1485
1486
+ if minfo := models.checkpoints.get(i.models.checkpoint):
1487
+ if minfo.arch.is_qwen_like and minfo.quantization is Quantization.svdq:
1488
+ i.batch_count = 1 # Nunchaku Qwen is broken with batch size > 1 #2114
1489
+
1490
i.batch_count = 1 if is_live else i.batch_count
1491
i.nsfw_filter = settings.nsfw_filter
1492
return i
0 commit comments