From: Christian Heller Date: Mon, 19 Aug 2024 20:36:16 +0000 (+0200) Subject: Fix buggy seed correction code (broke file numbering on -q > 1). X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7B%20card_id%20%7D%7D/tasks?a=commitdiff_plain;h=824bc1cbec410a9e2ee819807883292bdd7a594a;p=stable_plom Fix buggy seed correction code (broke file numbering on -q > 1). --- diff --git a/stable.py b/stable.py index 2321cde..89ab534 100755 --- a/stable.py +++ b/stable.py @@ -109,9 +109,9 @@ maker = ImageMaker(model_path) start_seed = args.seed start_seed = start_seed if start_seed != 0 else randint(-(2**31-1), 2**31) for n in range(args.quantity): - if 0 == n: - n += 1 nth_seed = start_seed + n + if 0 == nth_seed: + nth_seed += 1 path = save_path(n) maker.set_gen_params(args.prompt, nth_seed, args.guidance, args.height, args.width, args.n_steps, args.scheduler)