facebookresearch / InterHand2.6M

Official PyTorch implementation of "InterHand2.6M: A Dataset and Baseline for 3D Interacting Hand Pose Estimation from a Single RGB Image", ECCV 2020
Other
676 stars 92 forks source link

Why multiply the heatmap by 255? #38

Open f6ra07nk14 opened 3 years ago

f6ra07nk14 commented 3 years ago

When I trace the training code in model.py , I saw that "heatmap" is multiplied by 255 on the 38 line. Could this value be an arbitrary scale value, or have other physical meanings?

Thanks in advance.

mks0601 commented 3 years ago

No it doesn't have special meanings. Just to scale the loss values. I think there would be marginal performance difference if you do not multiply 255.