You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Thanks for the excellent work and code release.
I tried to reproduce MEVA's MPII3D PA-MPJPE performance, but i couldn't.
With my pre-processed MPII3D data file (made from VIBE official code, kocabas et al. 2020 CVPR), I ran your evaluation code.
Below are my settings and little modifications based on your evaluation code.
I didn't evaluated about the video segment of which number of frames is less than 90.
I modified your overlapped chunk generation function("get_chunk_with_overlap"). Because mpii3d have a video segment of which number of frames is 90, and the function generates indices set twice( [(0, 90), (0, 90)] ) for the video segment. Even though it needs frame indices only for the 0~89( (0,90) ). This bug made error for that video segment and crashes program while error calculating operation. Below is the actual values of variables in the function.
Hi, Thanks for the excellent work and code release.
I tried to reproduce MEVA's MPII3D PA-MPJPE performance, but i couldn't.
With my pre-processed MPII3D data file (made from VIBE official code, kocabas et al. 2020 CVPR), I ran your evaluation code.
Below are my settings and little modifications based on your evaluation code.
So i modified function like below.
After that, evaluation code worked, but result is pretty low than your result in this repo.
'mpjpe': 99.91301986073121,
'mpjpe_pa': 66.27225724514501,
'vel_err': 15.167348631137918,
'acc_err': 14.774026845370512,
'auc': 0.6680740727485766,
'pck': 94.77570523202951
Would you advice for the evaluation on mpii3d for the reproduction? Thanks!
The text was updated successfully, but these errors were encountered: