Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
070b7d60
Commit
070b7d60
authored
Oct 04, 2022
by
Milly
Committed by
AUTOMATIC1111
Oct 06, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added styles to Processed
So `[styles]` pattern can use in saving image UI.
parent
a5a08b0b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
images.py
modules/images.py
+1
-6
processing.py
modules/processing.py
+2
-0
No files found.
modules/images.py
View file @
070b7d60
...
...
@@ -292,12 +292,7 @@ def apply_filename_pattern(x, p, seed, prompt):
x
=
x
.
replace
(
"[cfg]"
,
str
(
p
.
cfg_scale
))
x
=
x
.
replace
(
"[width]"
,
str
(
p
.
width
))
x
=
x
.
replace
(
"[height]"
,
str
(
p
.
height
))
#currently disabled if using the save button, will work otherwise
# if enabled it will cause a bug because styles is not included in the save_files data dictionary
if
hasattr
(
p
,
"styles"
):
x
=
x
.
replace
(
"[styles]"
,
sanitize_filename_part
(
", "
.
join
([
x
for
x
in
p
.
styles
if
not
x
==
"None"
])
or
"None"
,
replace_spaces
=
False
))
x
=
x
.
replace
(
"[styles]"
,
sanitize_filename_part
(
", "
.
join
([
x
for
x
in
p
.
styles
if
not
x
==
"None"
])
or
"None"
,
replace_spaces
=
False
))
x
=
x
.
replace
(
"[sampler]"
,
sanitize_filename_part
(
sd_samplers
.
samplers
[
p
.
sampler_index
]
.
name
,
replace_spaces
=
False
))
x
=
x
.
replace
(
"[model_hash]"
,
shared
.
sd_model
.
sd_model_hash
)
...
...
modules/processing.py
View file @
070b7d60
...
...
@@ -121,6 +121,7 @@ class Processed:
self
.
denoising_strength
=
getattr
(
p
,
'denoising_strength'
,
None
)
self
.
extra_generation_params
=
p
.
extra_generation_params
self
.
index_of_first_image
=
index_of_first_image
self
.
styles
=
p
.
styles
self
.
eta
=
p
.
eta
self
.
ddim_discretize
=
p
.
ddim_discretize
...
...
@@ -165,6 +166,7 @@ class Processed:
"extra_generation_params"
:
self
.
extra_generation_params
,
"index_of_first_image"
:
self
.
index_of_first_image
,
"infotexts"
:
self
.
infotexts
,
"styles"
:
self
.
styles
,
}
return
json
.
dumps
(
obj
)
...
...
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