vnet.pytorch icon indicating copy to clipboard operation
vnet.pytorch copied to clipboard

Question about up-convolution block

Open xzhhzx opened this issue 4 years ago • 2 comments

Here in line 106: https://github.com/mattmacy/vnet.pytorch/blob/a00c8ea16bcaea2bddf73b2bf506796f70077687/vnet.py#L106

Should it be xcat = self.ops(xcat) instead? Thank you in advance!

xzhhzx avatar Jul 28 '20 09:07 xzhhzx

@xzhhzx Hi, It should if we going to follow original paper diagram, but it will raise error since "Element-wise sum" operation will not able to sum 256 and 128 channels ...

andreys42 avatar Apr 21 '21 11:04 andreys42

maybe torch.cat(), expand the channels of the output?

LiB98 avatar Oct 06 '22 07:10 LiB98