Skip to content

Commit

Permalink
remove gt_sem_seg
Browse files Browse the repository at this point in the history
  • Loading branch information
chhluo committed May 27, 2022
1 parent 487a8ac commit 6ab15c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmdet/datasets/pipelines/loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def __call__(self, results):
for t in tests[1:]:
keep = keep & t

keys = ('gt_bboxes', 'gt_labels', 'gt_masks', 'gt_semantic_seg')
keys = ('gt_bboxes', 'gt_labels', 'gt_masks')
for key in keys:
if key in results:
results[key] = results[key][keep]
Expand Down

0 comments on commit 6ab15c2

Please sign in to comment.