mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
diffX and diffY is now an int instead of a Tensor
Former-commit-id: 342d4e0a8ca19bbee77256caeda0ef6537d746f8
This commit is contained in:
parent
c57180e90c
commit
ef14c0e829
|
@ -57,8 +57,8 @@ class Up(nn.Module):
|
|||
def forward(self, x1, x2):
|
||||
x1 = self.up(x1)
|
||||
# input is CHW
|
||||
diffY = torch.tensor([x2.size()[2] - x1.size()[2]])
|
||||
diffX = torch.tensor([x2.size()[3] - x1.size()[3]])
|
||||
diffY = x2.size()[2] - x1.size()[2]
|
||||
diffX = x2.size()[3] - x1.size()[3]
|
||||
|
||||
x1 = F.pad(x1, [diffX // 2, diffX - diffX // 2,
|
||||
diffY // 2, diffY - diffY // 2])
|
||||
|
|
Loading…
Reference in a new issue