We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 938b833 commit a22c1f6Copy full SHA for a22c1f6
detection/grad_cam.py
@@ -66,7 +66,7 @@ def __call__(self, inputs, index=0):
66
gradient = self.gradient[proposal_idx].cpu().data.numpy() # [C,H,W]
67
weight = np.mean(gradient, axis=(1, 2)) # [C]
68
69
- feature = self.feature[0].cpu().data.numpy() # [C,H,W]
+ feature = self.feature[proposal_idx].cpu().data.numpy() # [C,H,W]
70
71
cam = feature * weight[:, np.newaxis, np.newaxis] # [C,H,W]
72
cam = np.sum(cam, axis=0) # [H,W]
@@ -112,7 +112,7 @@ def __call__(self, inputs, index=0):
112
113
weight = np.sum(gradient * alpha, axis=(1, 2)) # [C] alpha*ReLU(gradient)
114
115
116
117
118
0 commit comments