diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-30 20:18:47 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-30 20:18:47 +0000 |
commit | 89f0acc6bf3726e40bd9a3c634716debe3ece87d (patch) | |
tree | f222c62ef007382129e8d1931b8a7dc3f19ba20b | |
parent | f253790b40a71f2d88951c26224e0c80b6baea52 (diff) | |
download | stable-diffusion-webui-gfx803-89f0acc6bf3726e40bd9a3c634716debe3ece87d.tar.gz stable-diffusion-webui-gfx803-89f0acc6bf3726e40bd9a3c634716debe3ece87d.tar.bz2 stable-diffusion-webui-gfx803-89f0acc6bf3726e40bd9a3c634716debe3ece87d.zip |
remove extra print from BSRGAN
-rw-r--r-- | modules/bsrgan_model_arch.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/bsrgan_model_arch.py b/modules/bsrgan_model_arch.py index d72647db..cb4d1c13 100644 --- a/modules/bsrgan_model_arch.py +++ b/modules/bsrgan_model_arch.py @@ -76,7 +76,6 @@ class RRDBNet(nn.Module): super(RRDBNet, self).__init__() RRDB_block_f = functools.partial(RRDB, nf=nf, gc=gc) self.sf = sf - print([in_nc, out_nc, nf, nb, gc, sf]) self.conv_first = nn.Conv2d(in_nc, nf, 3, 1, 1, bias=True) self.RRDB_trunk = make_layer(RRDB_block_f, nb) |