aboutsummaryrefslogtreecommitdiff
path: root/modules/models/diffusion/ddpm_edit.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-06-05 11:06:37 +0300
committerGitHub <noreply@github.com>2023-06-05 11:06:37 +0300
commit7a7a201d819ea9920a1f067c556ec3998911f01a (patch)
tree5a834df58178642477e0ab8bd0ab0a53e66f153a /modules/models/diffusion/ddpm_edit.py
parent9781f31f74c1f6acf8e1260f076aeb7a71e2766f (diff)
parent51864790fd72386fbbbb015d24a43ce501ecaa4b (diff)
Merge pull request #10956 from akx/len
Simplify a bunch of `len(x) > 0`/`len(x) == 0` style expressions
Diffstat (limited to 'modules/models/diffusion/ddpm_edit.py')
-rw-r--r--modules/models/diffusion/ddpm_edit.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/models/diffusion/ddpm_edit.py b/modules/models/diffusion/ddpm_edit.py
index 3fb76b65..b892d5fc 100644
--- a/modules/models/diffusion/ddpm_edit.py
+++ b/modules/models/diffusion/ddpm_edit.py
@@ -230,9 +230,9 @@ class DDPM(pl.LightningModule):
missing, unexpected = self.load_state_dict(sd, strict=False) if not only_model else self.model.load_state_dict(
sd, strict=False)
print(f"Restored from {path} with {len(missing)} missing and {len(unexpected)} unexpected keys")
- if len(missing) > 0:
+ if missing:
print(f"Missing Keys: {missing}")
- if len(unexpected) > 0:
+ if unexpected:
print(f"Unexpected Keys: {unexpected}")
def q_mean_variance(self, x_start, t):