Open Charmnut1 opened 1 year ago
您好,这个问题,我也注意到了。不知道现在您解决了吗
您好,这个问题,我也注意到了。不知道现在您解决了吗 还没有解决
您好,这个问题,我也注意到了。不知道现在您解决了吗 还没有解决
Hello, may I ask if the function def forward(self, pred_kpts, gt_kpts, kpt_mask, area) is located in utils/loss.py? I couldn't find the corresponding function.
Hello, I would like to ask about the keypoint loss issue in YOLOPose, which is crucial for me. From the source code, we can see that in the loss.py file, it uses exp(-e), but there is no negative sign in the formula, which is different from OKS formula!! According to the formula, if d be larger, then the result of exp() will also be larger. In that case, the loss will be smaller, that's wrong? Am I misunderstanding something in the formula? I am looking forward to your assistance. Thank you very much! loss.py: it's 1-torch.exp(-e)
loss formula in paper: LOSS = 1-(∑〖exp((d_n^2)/(2s^2 k_n^2 ))δ(v_n>0)〗)/(∑δ(vn>0))
but OKS is: OKS = (∑〖exp((-d_n^2)/(2s^2 σ_n^2 ))δ(v_n>0)〗)/(∑〖δ(v_n>0)〗)