We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12f67cd commit 2df9160Copy full SHA for 2df9160
pythia/scripts/features/extract_features_vmb.py
@@ -162,7 +162,7 @@ def _process_feature_extraction(
162
feat_list.append(feats[i][keep_boxes])
163
bbox = output[0]["proposals"][i][keep_boxes].bbox / im_scales[i]
164
# Predict the class label using the scores
165
- objects = torch.argmax(scores[keep_boxes][start_index:], dim=1)
+ objects = torch.argmax(scores[keep_boxes][:, start_index:], dim=1)
166
167
info_list.append(
168
{
0 commit comments