Closed JohnTargaryen closed 5 years ago
Hi, @JohnTargaryen. Thank you for your interest in my repo. I just had wanted to compare a series of U-Net. So I adapted a same convolution filter size to models. If you want, please modify the convolution filter size. You can calculate the padding and the stride size by referring here. Thanks.
Hi, @JohnTargaryen. Thank you for your interest in my repo. I just had wanted to compare a series of U-Net. So I adapted a same convolution filter size to models. If you want, please modify the convolution filter size. You can calculate the padding and the stride size by referring here. Thanks.
Thx, I'll look into that
Hi, the paper says that "Every step in the expansive path consists of an upsampling of the feature map followed by a 2x2 convolution ('up-convolution') that halves the number of feature channels"
In your code, however, I notice that you use a conv2d of size3x3, would you explain the reason to that?
And also, let's say I want to stick to the paper and use 2x2 conv, how would I choose the padding and stride to make output size the same as the input size?
Thanks for sharing your work.