One quick issue I found is this: Your paper states that you used the U-Net structure, which includes the max-pooling to make "down-sample".
I found that your UNet.py does not include this max-pooling. Instead, a convolution with stride of 2 is used to strink the tiles in steps.
Is there an explicit purpose of this modification?
Great job. Congrads.
One quick issue I found is this: Your paper states that you used the U-Net structure, which includes the max-pooling to make "down-sample". I found that your UNet.py does not include this max-pooling. Instead, a convolution with stride of 2 is used to strink the tiles in steps. Is there an explicit purpose of this modification?
Many thanks.