Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mmdeploy/codebase/mmdet/deploy/object_detection_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def forward(self,
else:
masks = masks[:, :img_h, :img_w]
# avoid to resize masks with zero dim
if rescale and masks.shape[0] != 0:
if export_postprocess_mask and rescale and masks.shape[0] != 0:
masks = torch.nn.functional.interpolate(
masks.unsqueeze(0),
size=[
Expand Down