lixiaolei1982/Keras-Implementation-of-U-Net-R2U-Net-Attention-U-Net-Attention-R2U-Net.-

R2-Unet

AlonOlesinski opened this issue · 0 comments

The given model does not use Recurrent Convolutional Layers, which are described in the R2-Unet paper "Recurrent Residual Convolutional Neural Network based on U-Net (R2U-Net) for Medical Image Segmentation"
This can be seen in the function rec_res_block, where there are no weights sharing at all. Increasing the number of iterations in the inner loop should not introduce new convolutional layer, but only enlarge the receptive field of one convolutional layer. This can be seen in the paper as Wk_f and Wk_r which do not have t as their parameter (which means that these weights are the same set of weights through t0, t1...).