You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran the demo script to run mmdet for human detection, and mmpose for pose estimation. I have tried two models and printed the poseResults. The results made me confused.
The first model is 3xrsn_50, the poseResults showed as below:
The keypoint confidences of these two models are more than 1.
Is there any problem with the result?
If there is no problem, how could we know the range of the confidence?
Thank you!
The text was updated successfully, but these errors were encountered:
Most our models are trained using "MSRA-type" encoding and decoding methods for heatmaps. The values of heatmaps are between [0, 1] during training.
But MSPN and RSN are different. They adopt "Megvii-type" encoding and decoding methods for heatmaps. The values of heatmaps are between [0, 255] during training. And during decoding, the scores will be divided by 255.
I guess that is why the output of RSN will exceed 1.
In your assumption, the confidences of RSN exceed 1 imply that the intermediate results during decoding exceed 255. Is it possible to dump the intermediate results during decoding?
I ran the demo script to run mmdet for human detection, and mmpose for pose estimation. I have tried two models and printed the poseResults. The results made me confused.
The first model is 3xrsn_50, the poseResults showed as below:
The second model is 4xmspn_50, and the poseResults showed as below:
The keypoint confidences of these two models are more than 1.
Is there any problem with the result?
If there is no problem, how could we know the range of the confidence?
Thank you!
The text was updated successfully, but these errors were encountered: