diff options
author | RnDMonkey <RnDMonkey@users.noreply.github.com> | 2022-09-23 22:09:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 08:09:59 +0300 |
commit | ed8b8b3b8c4f5bea89a2dc32fb48c83a123a11cd (patch) | |
tree | cb26869e016f2f4207ea9c12ae98a461f374bc14 /modules/processing.py | |
parent | 7aec029423a4bba9787a16a02991bbec602433d1 (diff) |
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
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 0246e094..a899566d 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -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:
|