mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-01-04 13:55:06 +08:00
remove extra print from BSRGAN
This commit is contained in:
parent
f253790b40
commit
89f0acc6bf
@ -76,7 +76,6 @@ class RRDBNet(nn.Module):
|
|||||||
super(RRDBNet, self).__init__()
|
super(RRDBNet, self).__init__()
|
||||||
RRDB_block_f = functools.partial(RRDB, nf=nf, gc=gc)
|
RRDB_block_f = functools.partial(RRDB, nf=nf, gc=gc)
|
||||||
self.sf = sf
|
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.conv_first = nn.Conv2d(in_nc, nf, 3, 1, 1, bias=True)
|
||||||
self.RRDB_trunk = make_layer(RRDB_block_f, nb)
|
self.RRDB_trunk = make_layer(RRDB_block_f, nb)
|
||||||
|
Loading…
Reference in New Issue
Block a user