diff options
author | Martin Cairns <4314538+MartinCairnsSQL@users.noreply.github.com> | 2022-11-01 08:34:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-01 08:34:39 +0000 |
commit | b88505925b58290f78a13f267d395ff3c2ca276c (patch) | |
tree | 29be172302344c8d739cde2b3900dc5027a30028 /modules/shared.py | |
parent | 6c9e427c0eb6e48e367ea5c63c49ed8ac837b85e (diff) | |
parent | dd02889124b2f89aa1d9acafedfa8774e53c98cb (diff) | |
download | stable-diffusion-webui-gfx803-b88505925b58290f78a13f267d395ff3c2ca276c.tar.gz stable-diffusion-webui-gfx803-b88505925b58290f78a13f267d395ff3c2ca276c.tar.bz2 stable-diffusion-webui-gfx803-b88505925b58290f78a13f267d395ff3c2ca276c.zip |
Merge branch 'AUTOMATIC1111:master' into adjust-ddim-uniform-steps
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/modules/shared.py b/modules/shared.py index e4f163c1..c83fb9f5 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -40,7 +40,7 @@ parser.add_argument("--lowram", action='store_true', help="load stable diffusion parser.add_argument("--always-batch-cond-uncond", action='store_true', help="disables cond/uncond batching that is enabled to save memory with --medvram or --lowvram")
parser.add_argument("--unload-gfpgan", action='store_true', help="does not do anything.")
parser.add_argument("--precision", type=str, help="evaluate at this precision", choices=["full", "autocast"], default="autocast")
-parser.add_argument("--share", action='store_true', help="use share=True for gradio and make the UI accessible through their site (doesn't work for me but you might have better luck)")
+parser.add_argument("--share", action='store_true', help="use share=True for gradio and make the UI accessible through their site")
parser.add_argument("--ngrok", type=str, help="ngrok authtoken, alternative to gradio --share", default=None)
parser.add_argument("--ngrok-region", type=str, help="The region in which ngrok should start.", default="us")
parser.add_argument("--codeformer-models-path", type=str, help="Path to directory with codeformer model file(s).", default=os.path.join(models_path, 'Codeformer'))
@@ -97,6 +97,8 @@ restricted_opts = { "outdir_save",
}
+cmd_opts.disable_extension_access = cmd_opts.share or cmd_opts.listen
+
devices.device, devices.device_interrogate, devices.device_gfpgan, devices.device_swinir, devices.device_esrgan, devices.device_scunet, devices.device_codeformer = \
(devices.cpu if any(y in cmd_opts.use_cpu for y in [x, 'all']) else devices.get_optimal_device() for x in ['sd', 'interrogate', 'gfpgan', 'swinir', 'esrgan', 'scunet', 'codeformer'])
@@ -132,6 +134,7 @@ class State: current_image = None
current_image_sampling_step = 0
textinfo = None
+ need_restart = False
def skip(self):
self.skipped = True
@@ -354,6 +357,12 @@ options_templates.update(options_section(('sampler-params', "Sampler parameters" 'eta_noise_seed_delta': OptionInfo(0, "Eta noise seed delta", gr.Number, {"precision": 0}),
}))
+options_templates.update(options_section((None, "Hidden options"), {
+ "disabled_extensions": OptionInfo([], "Disable those extensions"),
+}))
+
+options_templates.update()
+
class Options:
data = None
@@ -365,8 +374,9 @@ class Options: def __setattr__(self, key, value):
if self.data is not None:
- if key in self.data:
+ if key in self.data or key in self.data_labels:
self.data[key] = value
+ return
return super(Options, self).__setattr__(key, value)
|