Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
tonylins committed Jul 25, 2022
1 parent 2c1df24 commit da5a16f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mcunet/utils/det_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
import torch.nn as nn
import numpy as np

__all__ = ['standard_nms', 'StandardNMS', 'MergeNMS']
# Some of the code is adapted from gluoncv: https://cv.gluon.ai/model_zoo/detection.html

__all__ = ['standard_nms', 'StandardNMS', 'MergeNMS', 'Yolo3Output']


def bbox_iou(box1: torch.Tensor, box2: torch.Tensor, offset=0) -> torch.Tensor:
Expand Down

0 comments on commit da5a16f

Please sign in to comment.