diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-01-04 11:04:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 11:04:50 +0000 |
commit | 545ae8cb1c17a038a5bfd126546acf4b9cab334c (patch) | |
tree | 77d31fa9b40d86415c524aaef80f31123412a522 /modules/hypernetworks/hypernetwork.py | |
parent | a8ad8666cd2b5df525afe702a953095877bcecde (diff) | |
parent | d8d206c1685d1e7027d4af82ed18d106f41d1cc4 (diff) | |
download | stable-diffusion-webui-gfx803-545ae8cb1c17a038a5bfd126546acf4b9cab334c.tar.gz stable-diffusion-webui-gfx803-545ae8cb1c17a038a5bfd126546acf4b9cab334c.tar.bz2 stable-diffusion-webui-gfx803-545ae8cb1c17a038a5bfd126546acf4b9cab334c.zip |
Merge pull request #6264 from vladmandic/add-state-info
add missing state info
Diffstat (limited to 'modules/hypernetworks/hypernetwork.py')
-rw-r--r-- | modules/hypernetworks/hypernetwork.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/hypernetworks/hypernetwork.py b/modules/hypernetworks/hypernetwork.py index 109e8078..450fecac 100644 --- a/modules/hypernetworks/hypernetwork.py +++ b/modules/hypernetworks/hypernetwork.py @@ -417,6 +417,7 @@ def train_hypernetwork(hypernetwork_name, learn_rate, batch_size, gradient_step, shared.loaded_hypernetwork = Hypernetwork()
shared.loaded_hypernetwork.load(path)
+ shared.state.job = "train-hypernetwork"
shared.state.textinfo = "Initializing hypernetwork training..."
shared.state.job_count = steps
|