mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-30 04:11:15 -08:00
Merge pull request #3 from 920232796/master
fix device support for mps update the support for SD2.0
This commit is contained in:
commit
a25dfebeed
4 changed files with 75 additions and 4 deletions
|
|
@ -110,7 +110,11 @@ restricted_opts = {
|
|||
from omegaconf import OmegaConf
|
||||
config = OmegaConf.load(f"{cmd_opts.config}")
|
||||
# XLMR-Large
|
||||
text_model_name = config.model.params.cond_stage_config.params.name
|
||||
try:
|
||||
text_model_name = config.model.params.cond_stage_config.params.name
|
||||
|
||||
except :
|
||||
text_model_name = "stable_diffusion"
|
||||
|
||||
cmd_opts.disable_extension_access = (cmd_opts.share or cmd_opts.listen or cmd_opts.server_name) and not cmd_opts.enable_insecure_extension_access
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue