mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-06 02:30:30 -08:00
Fix attr access
This commit is contained in:
parent
6a48476502
commit
3e20b36e8f
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ def get_learned_conditioning(self: sgm.models.diffusion.DiffusionEngine, batch:
|
|||
def apply_model(self: sgm.models.diffusion.DiffusionEngine, x, t, cond):
|
||||
"""WARNING: This function is called once per denoising iteration. DO NOT add
|
||||
expensive functionc calls such as `model.state_dict`. """
|
||||
if self.model.is_sdxl_inpaint:
|
||||
if self.is_sdxl_inpaint:
|
||||
x = torch.cat([x] + cond['c_concat'], dim=1)
|
||||
|
||||
return self.model(x, t, cond)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue