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
0fde1f3e
Commit
0fde1f3e
authored
Sep 15, 2022
by
AUTOMATIC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oh hey i broke batches with this
parent
cde49dcb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
prompt_parser.py
modules/prompt_parser.py
+2
-0
No files found.
modules/prompt_parser.py
View file @
0fde1f3e
...
...
@@ -34,6 +34,7 @@ def get_learned_conditioning_prompt_schedules(prompts, steps):
cached
=
cache
.
get
(
prompt
,
None
)
if
cached
is
not
None
:
res
.
append
(
cached
)
continue
for
m
in
re_prompt
.
finditer
(
prompt
):
plaintext
=
m
.
group
(
1
)
if
m
.
group
(
5
)
is
None
else
m
.
group
(
5
)
...
...
@@ -97,6 +98,7 @@ def get_learned_conditioning(prompts, steps):
cached
=
cache
.
get
(
prompt
,
None
)
if
cached
is
not
None
:
res
.
append
(
cached
)
continue
texts
=
[
x
[
1
]
for
x
in
prompt_schedule
]
conds
=
shared
.
sd_model
.
get_learned_conditioning
(
texts
)
...
...
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