Gengzigang / PCT

This is an official implementation of our CVPR 2023 paper "Human Pose as Compositional Tokens" (https://arxiv.org/pdf/2303.11638.pdf)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

the output score of the keypoint

wxhqw opened this issue · comments

commented

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

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.

commented

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