Created
June 3, 2020 15:03
-
-
Save arunm8489/82c9a91baa879da4834c700a1a0ee45b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DetectionLayer(nn.Module): | |
def __init__(self, anchors): | |
super(DetectionLayer, self).__init__() | |
self.anchors = anchors |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment