Skip to content

Commit 3a45016

Browse files
committed
solve sgg not exact match issue
1 parent f3057d9 commit 3a45016

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

maskrcnn_benchmark/data/datasets/vg_gen_img.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def get_groundtruth(self, index, evaluation=False):
8686
target.add_field("relation_tuple", torch.LongTensor(relation)) # for evaluation
8787
return target
8888
else:
89-
target = target.clip_to_image(remove_empty=True)
89+
target = target.clip_to_image(remove_empty=False)
9090
return target
9191

9292

maskrcnn_benchmark/structures/bounding_box.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def __len__(self):
235235
return self.bbox.shape[0]
236236

237237
def clip_to_image(self, remove_empty=True):
238-
TO_REMOVE = 1
238+
TO_REMOVE = 0 # 1
239239
self.bbox[:, 0].clamp_(min=0, max=self.size[0] - TO_REMOVE)
240240
self.bbox[:, 1].clamp_(min=0, max=self.size[1] - TO_REMOVE)
241241
self.bbox[:, 2].clamp_(min=0, max=self.size[0] - TO_REMOVE)

0 commit comments

Comments
 (0)