diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-02-21 19:01:31 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-02-21 19:01:31 +0800 |
commit | 12f4b52df6f4ce8a4c4484146469774e4b158d30 (patch) | |
tree | 592aa3dac27b67c2ad4b1ab75e1919c379f03922 /models/auto_encoder.py | |
parent | 4661b1966d108c40c78ed5afbc9837108be845eb (diff) | |
parent | 1014543e8b2cecbe6fdf1a0135bbefccee9c0d41 (diff) |
Merge branch 'python3.8' into python3.7
Diffstat (limited to 'models/auto_encoder.py')
-rw-r--r-- | models/auto_encoder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/auto_encoder.py b/models/auto_encoder.py index 6f388c2..dbd1da0 100644 --- a/models/auto_encoder.py +++ b/models/auto_encoder.py @@ -108,14 +108,14 @@ class Decoder(nn.Module): self.trans_conv4 = DCGANConvTranspose2d(feature_channels, out_channels, is_last_layer=True) - def forward(self, f_appearance, f_canonical, f_pose, cano_only=False): + def forward(self, f_appearance, f_canonical, f_pose, is_feature_map=False): x = torch.cat((f_appearance, f_canonical, f_pose), dim=1) x = self.fc(x) x = x.view(-1, self.feature_channels * 8, self.h_0, self.w_0) x = F.relu(x, inplace=True) x = self.trans_conv1(x) x = self.trans_conv2(x) - if cano_only: + if is_feature_map: return x x = self.trans_conv3(x) x = torch.sigmoid(self.trans_conv4(x)) |