diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-14 10:25:21 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-14 10:25:37 +0300 |
commit | f9ac3352cb66ce2bc0aa4325130fc7267fb35e4f (patch) | |
tree | 24bdf8da62c5f23dcbde515222669349609d5cff /modules/shared.py | |
parent | a95f1353089bdeaccd7c266b40cdd79efedfe632 (diff) |
change hypernets to use sha256 hashes
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index d74c069d..a6c61db3 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -361,6 +361,7 @@ options_templates.update(options_section(('system', "System"), { "memmon_poll_rate": OptionInfo(8, "VRAM usage polls per second during generation. Set to 0 to disable.", gr.Slider, {"minimum": 0, "maximum": 40, "step": 1}),
"samples_log_stdout": OptionInfo(False, "Always print all generation info to standard output"),
"multiple_tqdm": OptionInfo(True, "Add a second progress bar to the console that shows progress for an entire job."),
+ "print_hypernet_extra": OptionInfo(False, "Print extra hypernetwork information to console."),
}))
options_templates.update(options_section(('training', "Training"), {
|