Skip to content

Commit

Permalink
Merge pull request AUTOMATIC1111#13170 from AUTOMATIC1111/re-fix-batc…
Browse files Browse the repository at this point in the history
…h-img2img-output-dir-with-script

Re fix batch img2img output dir with script
  • Loading branch information
AUTOMATIC1111 authored Sep 30, 2023
2 parents fcfe5c1 + ab57417 commit 591ad1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions modules/img2img.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args, to_scale=Fal
if output_dir:
p.outpath_samples = output_dir
p.override_settings['save_to_dirs'] = False
p.override_settings['save_images_replace_action'] = "Add number suffix"
if p.n_iter > 1 or p.batch_size > 1:
p.override_settings['samples_filename_pattern'] = f'{image_path.stem}-[generation_number]'
else:
Expand All @@ -125,6 +126,7 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args, to_scale=Fal
proc = modules.scripts.scripts_img2img.run(p, *args)

if proc is None:
p.override_settings.pop('save_images_replace_action', None)
process_images(p)


Expand Down
2 changes: 1 addition & 1 deletion modules/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
if p.scripts is not None:
p.scripts.before_process(p)

stored_opts = {k: opts.data[k] for k in p.override_settings.keys()}
stored_opts = {k: opts.data[k] for k in p.override_settings.keys() if k in opts.data}

try:
# if no checkpoint override or the override checkpoint can't be found, remove override entry and load opts checkpoint
Expand Down

0 comments on commit 591ad1d

Please sign in to comment.