You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am attempting to run gradcams on the COVIDNet-CXR4-A model but to do so I need the name of the last convolutional layer. I was wondering if you had access to the name of the tensor. I found the last conv2d name in the metafile in order to be:
As long as that's the last convolutional layer, it should be correct. The shape seems fine, as it's (batch size, height, width, channels). There is some good discussion of Grad-CAM in issue #64 that you may find helpful.
Hi @haydengunraj That issue was very helpful! However, it is still not clear from that issue which layers are the final convolutional layers in the model from doing the printouts. many of them have unclear names like:
Hello,
I am attempting to run gradcams on the COVIDNet-CXR4-A model but to do so I need the name of the last convolutional layer. I was wondering if you had access to the name of the tensor. I found the last conv2d name in the metafile in order to be:
'conv2d_203/convolution:0'
but the shape of this tensor is
Tensor("conv2d_203/convolution:0", shape=(?, 13, 13, 216), dtype=float32)
Which doesn't seem to make much sense. Any advice or guidance would be appreciated.
The text was updated successfully, but these errors were encountered: