From 874651e4d2b05e19616355015dd0cc67c8b8fad1 Mon Sep 17 00:00:00 2001 From: Rickey Bowers Jr Date: Thu, 15 Sep 2022 09:02:19 -0600 Subject: match one based numbering or other batches --- scripts/prompts_from_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/prompts_from_file.py') diff --git a/scripts/prompts_from_file.py b/scripts/prompts_from_file.py index e0c7f1d2..d9b01c81 100644 --- a/scripts/prompts_from_file.py +++ b/scripts/prompts_from_file.py @@ -33,7 +33,7 @@ class Script(scripts.Script): images = [] 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 proc = process_images(p) images += proc.images -- cgit v1.2.1