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
9c2a7f1e
Commit
9c2a7f1e
authored
Jun 19, 2023
by
w-e-w
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add callback after_extra_networks_activate
parent
59419bd6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
modules/extra_networks.py
modules/extra_networks.py
+3
-0
modules/scripts.py
modules/scripts.py
+23
-0
No files found.
modules/extra_networks.py
View file @
9c2a7f1e
...
...
@@ -103,6 +103,9 @@ def activate(p, extra_network_data):
except
Exception
as
e
:
errors
.
display
(
e
,
f
"activating extra network {extra_network_name}"
)
if
p
.
scripts
is
not
None
:
p
.
scripts
.
after_extra_networks_activate
(
p
,
batch_number
=
p
.
iteration
,
prompts
=
p
.
prompts
,
seeds
=
p
.
seeds
,
subseeds
=
p
.
subseeds
,
extra_network_data
=
extra_network_data
)
def
deactivate
(
p
,
extra_network_data
):
"""call deactivate for extra networks in extra_network_data in specified order, then call
...
...
modules/scripts.py
View file @
9c2a7f1e
...
...
@@ -116,6 +116,21 @@ class Script:
pass
def
after_extra_networks_activate
(
self
,
p
,
*
args
,
**
kwargs
):
"""
Calledafter extra networks activation, before conds calculation
allow modification of the network after extra networks activation been applied
won't be call if p.disable_extra_networks
**kwargs will have those items:
- batch_number - index of current batch, from 0 to number of batches-1
- prompts - list of prompts for current batch; you can change contents of this list but changing the number of entries will likely break things
- seeds - list of seeds for current batch
- subseeds - list of subseeds for current batch
- extra_network_data - list of ExtraNetworkParams for current stage
"""
pass
def
process_batch
(
self
,
p
,
*
args
,
**
kwargs
):
"""
Same as process(), but called for every batch.
...
...
@@ -483,6 +498,14 @@ class ScriptRunner:
except
Exception
:
errors
.
report
(
f
"Error running before_process_batch: {script.filename}"
,
exc_info
=
True
)
def
after_extra_networks_activate
(
self
,
p
,
**
kwargs
):
for
script
in
self
.
alwayson_scripts
:
try
:
script_args
=
p
.
script_args
[
script
.
args_from
:
script
.
args_to
]
script
.
after_extra_networks_activate
(
p
,
*
script_args
,
**
kwargs
)
except
Exception
:
errors
.
report
(
f
"Error running after_extra_networks_activate: {script.filename}"
,
exc_info
=
True
)
def
process_batch
(
self
,
p
,
**
kwargs
):
for
script
in
self
.
alwayson_scripts
:
try
:
...
...
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