-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The results reported in the paper are different from the ones in here. #2
Comments
Sorry for the miss-leading, we have found this problem and have provide the right results in this repo. We will update our online version of the paper. Sorry again. Free feel to let me know if you have any other problem. |
Res2Net can be used to replace the basicblock in HRNet, someone told us that it would further improve the performance of HRNet. |
No, it can't. Well, it depends on how you replace the basicblock. Given the HRNet has the same number of the input channels and output channels every branch (for the top branch, it is 32 in HRNet w32). If we don't change this premise, the channel expansion within the res2net module due to its natural structure won't help. Just expanding the channels inside the basic block to the corresponding number (between two convs), it performs better than replacing it with res2net module. |
|
In the paper, your model on pose estimation is trained and validated based on the Simple Baselines, and uses the same human detector results the Simple Baselines provided. However, according to the results you're reporting here. The results compared with the Simple Baselines are evaluated on the ground bounding box, not the ones with the human detector. But the Simple Baselines results you compare with in the paper is evaluated with the human detector, not the ground truth bounding box.
Since the results you reported in the paper is on par with the HRNet's results, it made me think that high-resolution feature maps are not that important after all. Unfortunately, when I want to do something based on the Simple Baselines modified by the Res2Net your paper proposed, I then found the fact that your model is nowhere near the HRNet.
The text was updated successfully, but these errors were encountered: