Gengzigang / PCT

This is an official implementation of our CVPR 2023 paper "Human Pose as Compositional Tokens" (https://arxiv.org/pdf/2303.11638.pdf)
MIT License
311 stars 20 forks source link

the output score of the keypoint #13

Closed wxhqw closed 1 year ago

wxhqw commented 1 year ago

the output score of the keypoint more than 1, what does the output score means

Gengzigang commented 1 year ago

You can see that we adopt the maximum classification logits values as our scores in this line of code: https://github.com/Gengzigang/PCT/blob/main/models/pct_head.py#L153. You can also use the logits after passing through softmax as scores, which will not have any impact on performance.

wxhqw commented 1 year ago

You can see that we adopt the maximum classification logits values as our scores in this line of code: https://github.com/Gengzigang/PCT/blob/main/models/pct_head.py#L153. You can also use the logits after passing through softmax as scores, which will not have any impact on performance.

thanks