-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Closed
Labels
Description
🚀 The feature
The for loop in torchvision/models/detection/fcos.py:80 can probably be vetorized.
pred_boxes = [
self.box_coder.decode_single(bbox_regression_per_image, anchors_per_image)
for anchors_per_image, bbox_regression_per_image in zip(anchors, bbox_regression)
]Motivation, pitch
Simplify/speedup the execution
Alternatives
No response
Additional context
No response
zhiqwang, oke-aditya, vadimkantorov, datumbox, abhi-glitchhg and 1 more