This commit is contained in:
lvmin 2023-08-10 08:09:38 -07:00
parent 8e08e3612f
commit 8a452d4c7c
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ def ksampler(model, positive, negative, latent, seed=None, steps=30, cfg=9.0, sa
force_full_denoise=force_full_denoise, noise_mask=noise_mask, callback=callback, seed=seed)
out = latent.copy()
out["samples"] = samples
return (out, )
return out
@torch.no_grad()