yolor icon indicating copy to clipboard operation
yolor copied to clipboard

4.2. Modeling implicit knowledge question?

Open violet2422 opened this issue 3 years ago • 2 comments

Hello, I was looking at your interesting work recently. When I saw Section 4.2, I had some questions. How is the 3 modeling methods reflected in the code? image I only see the following code :)

class ImplicitA(nn.Module):
    def __init__(self, channel):
        super(ImplicitA, self).__init__()
        self.channel = channel
        self.implicit = nn.Parameter(torch.zeros(1, channel, 1, 1))
        nn.init.normal_(self.implicit, std=.02)

    def forward(self):
        return self.implicit

violet2422 avatar Jul 07 '22 10:07 violet2422

https://github.com/WongKinYiu/yolor/blob/main/figure/implicit_modeling.png

WongKinYiu avatar Jul 07 '22 13:07 WongKinYiu

https://github.com/WongKinYiu/yolor/blob/main/figure/implicit_modeling.png

  • thanks! 😊

violet2422 avatar Jul 07 '22 13:07 violet2422