Closed divyagupta25 closed 1 year ago
I am unable to find the receptive fields of the pretrained models like resnet. How to implement in those models
@divyagupta25 : I believe this is an issue with TF's SAME padding, which applies variable padding depending on the input resolution. For this reason, the padding will depend on the input resolution and the effective padding parameters will only be valid when you provide a specific input resolution, as you reported in https://github.com/google-research/receptive_field/issues/1#issuecomment-1566696805
@ratom : they can be found here: https://github.com/google-research/receptive_field/blob/master/receptive_field/RECEPTIVE_FIELD_TABLE.md
Hi @andrefaraujo I have a 2 layer ConvNet and I am using the following code
I am getting
None
ineff_pad_x
andeff_pad_y
. Could you please tell if it means an effective padding of zero, or if I am using the function incorrectly?