diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-14 21:07:28 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-14 21:07:28 +0800 |
commit | da922be042d96338a3f207386e410b6746d046f5 (patch) | |
tree | 5bf653641a3ed89680340718e20c66e3ee21c7a6 | |
parent | 263b8001ca1b25a43d1c87f187423054e141925d (diff) |
Bug fix when transforming and new config
-rw-r--r-- | config.py | 6 | ||||
-rw-r--r-- | models/rgb_part_net.py | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -94,9 +94,9 @@ config: Configuration = { 'final_gamma': 0.01, # Local parameters (override global ones) - 'hpm': { - 'final_gamma': 0.001 - } + # 'hpm': { + # 'final_gamma': 0.001 + # } } }, # Model metadata diff --git a/models/rgb_part_net.py b/models/rgb_part_net.py index c38a567..c136040 100644 --- a/models/rgb_part_net.py +++ b/models/rgb_part_net.py @@ -57,7 +57,7 @@ class RGBPartNet(nn.Module): if self.training: return x_c, x_p, ae_losses, images else: - return torch.cat((x_c, x_p)).unsqueeze(1).view(-1) + return torch.cat((x_c.view(-1), x_p.view(-1))) def _disentangle(self, x_c1_t2, x_c2_t2=None): n, t, c, h, w = x_c1_t2.size() |