Skip to content

Commit a22c1f6

Browse files
committed
fix bug
1 parent 938b833 commit a22c1f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

detection/grad_cam.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def __call__(self, inputs, index=0):
6666
gradient = self.gradient[proposal_idx].cpu().data.numpy() # [C,H,W]
6767
weight = np.mean(gradient, axis=(1, 2)) # [C]
6868

69-
feature = self.feature[0].cpu().data.numpy() # [C,H,W]
69+
feature = self.feature[proposal_idx].cpu().data.numpy() # [C,H,W]
7070

7171
cam = feature * weight[:, np.newaxis, np.newaxis] # [C,H,W]
7272
cam = np.sum(cam, axis=0) # [H,W]
@@ -112,7 +112,7 @@ def __call__(self, inputs, index=0):
112112

113113
weight = np.sum(gradient * alpha, axis=(1, 2)) # [C] alpha*ReLU(gradient)
114114

115-
feature = self.feature[0].cpu().data.numpy() # [C,H,W]
115+
feature = self.feature[proposal_idx].cpu().data.numpy() # [C,H,W]
116116

117117
cam = feature * weight[:, np.newaxis, np.newaxis] # [C,H,W]
118118
cam = np.sum(cam, axis=0) # [H,W]

0 commit comments

Comments
 (0)