diff options
author | Vladimir Mandic <mandic00@live.com> | 2022-12-30 19:38:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-30 19:38:53 -0500 |
commit | d3aa2a48e1e896b6ffafda5367200a4bbd46b0d7 (patch) | |
tree | a96c2ab7cfaa62cefe9a59057709d83ee301514a /modules/sd_hijack_inpainting.py | |
parent | 4af3ca5393151d61363c30eef4965e694eeac15e (diff) |
remove unnecessary console message
Diffstat (limited to 'modules/sd_hijack_inpainting.py')
-rw-r--r-- | modules/sd_hijack_inpainting.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_hijack_inpainting.py b/modules/sd_hijack_inpainting.py index bb5499b3..06b75772 100644 --- a/modules/sd_hijack_inpainting.py +++ b/modules/sd_hijack_inpainting.py @@ -178,7 +178,7 @@ def sample_plms(self, # sampling C, H, W = shape size = (batch_size, C, H, W) - print(f'Data shape for PLMS sampling is {size}') + # print(f'Data shape for PLMS sampling is {size}') # remove unnecessary message samples, intermediates = self.plms_sampling(conditioning, size, callback=callback, |