This commit is contained in:
James Betker 2022-04-20 00:01:57 -06:00
parent 419f4d37bd
commit 0af0051399

View File

@ -140,6 +140,7 @@ class ResBlockSimple(nn.Module):
def _forward(self, x):
h = self.in_layers(x)
h = self.out_layers(h)
return self.skip_connection(x) + h