Commit 874651e4 authored by Rickey Bowers Jr's avatar Rickey Bowers Jr Committed by AUTOMATIC1111

match one based numbering or other batches

parent 0fde1f3e
...@@ -33,7 +33,7 @@ class Script(scripts.Script): ...@@ -33,7 +33,7 @@ class Script(scripts.Script):
images = [] images = []
for batch_no in range(batch_count): for batch_no in range(batch_count):
state.job = f"{batch_no} out of {batch_count * p.n_iter}" state.job = f"{batch_no + 1} out of {batch_count * p.n_iter}"
p.prompt = lines[batch_no*p.batch_size:(batch_no+1)*p.batch_size] * p.n_iter p.prompt = lines[batch_no*p.batch_size:(batch_no+1)*p.batch_size] * p.n_iter
proc = process_images(p) proc = process_images(p)
images += proc.images images += proc.images
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment