Skip to content

Commit 2df9160

Browse files
rmraoapsdehal
authored andcommitted
[fix] Fix detected objects in extract_features_vmb (#159)
* [fix] Correctly ignore the background class * [fix] Output the correct number of objects
1 parent 12f67cd commit 2df9160

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythia/scripts/features/extract_features_vmb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def _process_feature_extraction(
162162
feat_list.append(feats[i][keep_boxes])
163163
bbox = output[0]["proposals"][i][keep_boxes].bbox / im_scales[i]
164164
# Predict the class label using the scores
165-
objects = torch.argmax(scores[keep_boxes][start_index:], dim=1)
165+
objects = torch.argmax(scores[keep_boxes][:, start_index:], dim=1)
166166

167167
info_list.append(
168168
{

0 commit comments

Comments
 (0)