mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-11-21 03:11:40 +08:00
fix the typo -- thanks Cyberbeing
This commit is contained in:
parent
757dda9ade
commit
baaf39b6f9
@ -94,7 +94,7 @@ class CFGDenoiser(torch.nn.Module):
|
||||
|
||||
def pad_cond_uncond(self, cond, uncond):
|
||||
empty = shared.sd_model.cond_stage_model_empty_prompt
|
||||
num_repeats = (cond.shape[1] - cond.shape[1]) // empty.shape[1]
|
||||
num_repeats = (cond.shape[1] - uncond.shape[1]) // empty.shape[1]
|
||||
|
||||
if num_repeats < 0:
|
||||
cond = pad_cond(cond, -num_repeats, empty)
|
||||
|
Loading…
Reference in New Issue
Block a user