diff options
author | d8ahazard <d8ahazard@gmail.com> | 2022-09-30 13:56:39 +0000 |
---|---|---|
committer | d8ahazard <d8ahazard@gmail.com> | 2022-09-30 13:56:39 +0000 |
commit | 99aa132df7045077a420918d276fcca877fdc9e3 (patch) | |
tree | 9f6159b5b6fc4a45f7475965bfb1289f18789f97 /modules/ldsr_model_arch.py | |
parent | 8d60645106d7e2daa0da89c5b21d7ffdac61cf9e (diff) | |
download | stable-diffusion-webui-gfx803-99aa132df7045077a420918d276fcca877fdc9e3.tar.gz stable-diffusion-webui-gfx803-99aa132df7045077a420918d276fcca877fdc9e3.tar.bz2 stable-diffusion-webui-gfx803-99aa132df7045077a420918d276fcca877fdc9e3.zip |
Remove useless print message
Diffstat (limited to 'modules/ldsr_model_arch.py')
-rw-r--r-- | modules/ldsr_model_arch.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/ldsr_model_arch.py b/modules/ldsr_model_arch.py index 093a3210..14db5076 100644 --- a/modules/ldsr_model_arch.py +++ b/modules/ldsr_model_arch.py @@ -98,7 +98,6 @@ class LDSR: im_og = image width_og, height_og = im_og.size # If we can adjust the max upscale size, then the 4 below should be our variable - print("Foo") down_sample_rate = target_scale / 4 wd = width_og * down_sample_rate hd = height_og * down_sample_rate |