princeton-vl / pose-hg-train

Training and experimentation code used for "Stacked Hourglass Networks for Human Pose Estimation"
Other
575 stars 185 forks source link

Head and Shoulder are not included in computing the accuracy #26

Closed zhiqiangdon closed 7 years ago

zhiqiangdon commented 7 years ago

Hi @anewell ,

I am reading your code and find the accuracy of MPII dataset is computed only based on these predefined joints " self.accIdxs = {1,2,3,4,5,6,11,12,15,16}". In your paper, joints of Head, Shoulder, Elbow, Wrist, Hip, Knee and Ankle are reported. It seems Head and Shoulder are missing in "self.accIdxs". Could you explain why?

anewell commented 7 years ago

The accuracy indices are used for reporting an average accuracy term when running experiments. This term is mostly an approximation and not used to report final performance numbers. The main reason for leaving out the head and shoulders here is that the accuracy for those parts gets very high, very quickly, and without them it is easier to distinguish the performance of different experiments.

zhiqiangdon commented 7 years ago

Thanks @anewell . It makes sense.