Dear Auther:
Thank you for share your code, I have several Question about your work.
--First about Aggregation part code in 'feature_tool.py' line 53-54
offset_ht = (offset_ht * mask).view(batch_size, jt_num, -1) # (B, jt_num, F*F)
offset_ht = F.softmax(offset_ht * 30, dim = -1) # (B, jt_num, F*F)
In above code, a mask is used to remove the effect of invalid pixel.
But, after Softmax function, ZEROs in offset_ht caused by mask still have weights.
Is that as you expect?
--Second, you claim an outstanding result in your AAAI paper, expecially on HANDS2017.
Did you other post-process method like MODEL ENSEMBLE?
--Third, the AWR result on LEADERBOARD of HANDS2019 and HANDS2017 decrease a lot recently.
Is that an accident?
Thank you in advance~!
Dear Auther: Thank you for share your code, I have several Question about your work.