Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
53ccdefc
Commit
53ccdefc
authored
Jul 30, 2023
by
w-e-w
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't override default if output_dir is blank
parent
98575370
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
modules/img2img.py
modules/img2img.py
+7
-6
No files found.
modules/img2img.py
View file @
53ccdefc
...
@@ -105,12 +105,13 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args, to_scale=Fal
...
@@ -105,12 +105,13 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args, to_scale=Fal
proc
=
modules
.
scripts
.
scripts_img2img
.
run
(
p
,
*
args
)
proc
=
modules
.
scripts
.
scripts_img2img
.
run
(
p
,
*
args
)
if
proc
is
None
:
if
proc
is
None
:
p
.
outpath_samples
=
output_dir
if
output_dir
:
p
.
override_settings
[
'save_to_dirs'
]
=
False
p
.
outpath_samples
=
output_dir
if
p
.
n_iter
>
1
or
p
.
batch_size
>
1
:
p
.
override_settings
[
'save_to_dirs'
]
=
False
p
.
override_settings
[
'samples_filename_pattern'
]
=
f
'{image_path.stem}-[generation_number]'
if
p
.
n_iter
>
1
or
p
.
batch_size
>
1
:
else
:
p
.
override_settings
[
'samples_filename_pattern'
]
=
f
'{image_path.stem}-[generation_number]'
p
.
override_settings
[
'samples_filename_pattern'
]
=
f
'{image_path.stem}'
else
:
p
.
override_settings
[
'samples_filename_pattern'
]
=
f
'{image_path.stem}'
process_images
(
p
)
process_images
(
p
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment