mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-08-04 11:12:35 +00:00
fix the problem with infinite prompts where empty cond would be calculated incorrectly
This commit is contained in:
@@ -47,8 +47,7 @@ class SD3Inferencer(torch.nn.Module):
|
||||
return contextlib.nullcontext()
|
||||
|
||||
def get_learned_conditioning(self, batch: list[str]):
|
||||
with devices.without_autocast():
|
||||
return self.cond_stage_model(batch)
|
||||
return self.cond_stage_model(batch)
|
||||
|
||||
def apply_model(self, x, t, cond):
|
||||
return self.model(x, t, c_crossattn=cond['crossattn'], y=cond['vector'])
|
||||
|
Reference in New Issue
Block a user