Open
Description
During the implementation for ResNetEncoder for FlexibleUNet, I encountered a bug related to the default value for conv1_t_stride
in ResNet.__init__
. Upon investigation, it became evident that the default value should be 2
instead of 1
.
Also, stride for the first convolution is 2
in the MedicalNet repository. So I suppose all 3D pretrained ResNet models for classification at this moment work not as intended.