Open violet2422 opened 2 years ago
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? 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
https://github.com/WongKinYiu/yolor/blob/main/figure/implicit_modeling.png
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? I only see the following code :)