mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-10 04:10:33 -08:00
Fix to XY_Grid script console progress bar and other progress bar improvements (#890)
Fix to XY_Grid script console progress bar and other progress bar improvements #890
This commit is contained in:
parent
7aec029423
commit
ed8b8b3b8c
3 changed files with 36 additions and 5 deletions
|
|
@ -338,7 +338,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
|
|||
comments[comment] = 1
|
||||
|
||||
if p.n_iter > 1:
|
||||
shared.state.job = f"Batch {n+1} out of {p.n_iter}"
|
||||
shared.state.job = f"Image {n+1} out of {p.n_iter}; Batch {(shared.state.job_no // p.n_iter) + 1} of {shared.state.job_count // p.n_iter}"
|
||||
|
||||
samples_ddim = p.sample(conditioning=c, unconditional_conditioning=uc, seeds=seeds, subseeds=subseeds, subseed_strength=p.subseed_strength)
|
||||
if state.interrupted:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue