From 4898724ac185b001ccdb1e4ae00c17c8546dc166 Mon Sep 17 00:00:00 2001 From: Yin Li Date: Fri, 26 Mar 2021 12:50:49 -0400 Subject: [PATCH] Remove tab --- map2map/models/style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map2map/models/style.py b/map2map/models/style.py index 94fc93e..2c1c80c 100644 --- a/map2map/models/style.py +++ b/map2map/models/style.py @@ -158,7 +158,7 @@ class ConvStyled3d(nn.Module): x = x.reshape(1, N * Cin, *DHWin) x = self.conv(x, w, bias=self.bias, stride=self.stride, groups=N) _, _, *DHWout = x.shape - x = x.reshape(N, Cout, *DHWout) + x = x.reshape(N, Cout, *DHWout) return x