-
Notifications
You must be signed in to change notification settings - Fork 15
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
Confirmation of the results #23
Comments
Hi Linfang, The NPCS baseline result looks correct to me, but the nonlinear one doesn't. While the ransac-based nonlinear solver doesn't always guarantee a better estimation, it shouldn't be such worse. It might help if you could check whether some rotations are wrongly predicted to be 180 degrees flipped. Also keep in mind that the predicted joint, which is used during the nonlinear iteration, needs to be in the right direction. Best, |
Hi, Xiaolong, (articulated-pose) linfang@lambda-dual:~/Documents/Code/articulated-pose/evaluation$ python eval_pose_err.py --item='eyeglasses' --domain='unseen' --nocs='ANCSH'
/home/usr/Documents/Code/articulated-pose/results/pickle/3.9/unseen_ANCSH_eyeglasses_rt.pkl
number of data for pn_gt : 2730
/home/usr/Documents/Code/articulated-pose/results/pickle/3.9/unseen_NAOCS_eyeglasses_rt.pkl
number of data for gn_gt : 2730
/home/usr/Documents/Code/articulated-pose/results/pickle/3.9/unseen_ANCSH_eyeglasses_rt_pn.pkl
number of data for baseline : 544
For unseen object, ANCSH nocs, mean rotation err per part is:
baseline 3.8505 8.3401 7.0143
nonlinea 12.7156 14.2523 14.5457
For unseen object, ANCSH nocs, mean translation err per part is:
baseline 0.0450 0.0842 0.0758
nonlinea 0.1086 0.1582 0.1794
For unseen object, ANCSH nocs, 5 degrees accuracy per part is:
baseline 0.9320 0.5460 0.5607
nonlinea 0.8435 0.8158 0.7937
For unseen object, ANCSH nocs, 5 degrees, 5 cms accuracy per part is:
baseline 0.8989 0.3768 0.4007
nonlinea 0.8177 0.6298 0.6077
fetch rts data for baseline
fetch rts data for nonlinear
For unseen object, ANCSH nocs, mean relative rotation err per part is:
baseline 9.3327 8.3277
nonlinea 12.3156 14.5273 |
Agree with that there may be some typo. Currently if USE_BASELINE == True, then both baseline and nonlinear uses the nocs_pred from baseline prediction. It doesn't make sense |
Hi Xiaolong, I have tried to debug the code by myself but the results seems not correct. Could you please update the code which works for you so that we can reproduce the same results? It should be as easy as a simple git push command. Thanks in advance. |
Hi Linfang, I found there is actually a step missing in the cleaned ransac function, after each iteration, the best score should be updated as well, or this will result in degraded performance. Please feel free to check and test it. Thanks! Best, |
Hi Xiaolong,
I have tried to run the evaluation code by using the provided dataset. I followed the instructions, corrected some bugs though. The results shown on my server are as follows:
Are the results right? I think the
baseline
is for NPCS, and thenonlinear
one is for ANCSH. Please correct me if I was wrong.The text was updated successfully, but these errors were encountered: