DW icon indicating copy to clipboard operation
DW copied to clipboard

Are mean and sigma in CenterPrior learnable?

Open Yuanyang-Zhu opened this issue 2 years ago • 1 comments

In the class CenterPrior, there are definitions as follows:

       self.mean = nn.Parameter(torch.zeros(num_classes, 2), requires_grad=False)
       self.sigma = nn.Parameter(torch.ones(num_classes, 2)+0.11, requires_grad=False)

So in DW, these two parameters do not need to be learned? Is it different from autoassign?

Yuanyang-Zhu avatar Jul 03 '23 13:07 Yuanyang-Zhu

Yes. They are not learned.

strongwolf avatar Jul 16 '23 05:07 strongwolf