diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-14 10:10:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 10:10:43 +0300 |
commit | 097140ac1a3caf6e3c9980a757d4b52e6a76b789 (patch) | |
tree | c31cf29908f94e7f6792b063df4543d6f83b423c /modules/sd_models_types.py | |
parent | bda86f0fd9653657c146f7c1128f92771d16ad4e (diff) | |
parent | 778a30a95e216f9f7ce0126dbbdb1334afc3d796 (diff) | |
download | stable-diffusion-webui-gfx803-097140ac1a3caf6e3c9980a757d4b52e6a76b789.tar.gz |
Merge branch 'dev' into master
Diffstat (limited to 'modules/sd_models_types.py')
-rw-r--r-- | modules/sd_models_types.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/sd_models_types.py b/modules/sd_models_types.py index 5ffd2f4f..f911fbb6 100644 --- a/modules/sd_models_types.py +++ b/modules/sd_models_types.py @@ -22,7 +22,10 @@ class WebuiSdModel(LatentDiffusion): """structure with additional information about the file with model's weights"""
is_sdxl: bool
- """True if the model's architecture is SDXL"""
+ """True if the model's architecture is SDXL or SSD"""
+
+ is_ssd: bool
+ """True if the model is SSD"""
is_sd2: bool
"""True if the model's architecture is SD 2.x"""
|