VIBE icon indicating copy to clipboard operation
VIBE copied to clipboard

why I can not training with 2d dataset 'PennAction' and 'PoseTrack'

Open ZhangHedongTimes opened this issue 4 years ago • 9 comments

when i am training with 'PennAction' or 'PoseTrack' dataset , i always get a result" MPJPE error is 189.0999972820282, higher than 80. Exiting!..." 。 Is there some bug with the dataset?

ZhangHedongTimes avatar Nov 19 '20 02:11 ZhangHedongTimes

我也是,同学你解决了吗

thinkingIsMagic avatar Dec 29 '20 12:12 thinkingIsMagic

解决了,里面有两个bug,一个是拿数据的时候需要深拷贝(添加一个copy),否则对2D keypoints 进行归一化时会使数据集也跟着边。还有一个就是关键点对应错误的问题,你可以把顶点的label绘制出来看看。

ZhangHedongTimes avatar Dec 30 '20 00:12 ZhangHedongTimes

@ZhangHedongTimes Thank you for your information! I already have found a bug on https://github.com/mkocabas/VIBE/blob/master/lib/dataset/dataset_2d.py#L68. We can fix the repeated normalization by adding np.copy().

 kp_2d = np.copy(self.db['joints2D'][start_index:end_index+1])

Do you find another bug related to this issue?

SatoshiYamazaki avatar Dec 30 '20 01:12 SatoshiYamazaki

The 'convert keypoints' is incorrect for 'pennaction', on https://github.com/mkocabas/VIBE/blob/master/lib/dataset/dataset_2d.py#L70

ZhangHedongTimes avatar Dec 30 '20 06:12 ZhangHedongTimes

It seems there is left-right inversion problem for 'pennaction'.

halcyon370 avatar Jan 13 '21 02:01 halcyon370

The 'convert keypoints' is incorrect for 'pennaction', on https://github.com/mkocabas/VIBE/blob/master/lib/dataset/dataset_2d.py#L70

hi~ I have the same error. May I ask how did you solve the problem of 'convert keypoints' about 'pennaction' dataset?

zhanghan174 avatar Apr 21 '21 02:04 zhanghan174

@zhanghan174 Did you solve the issue for pennaction dataset?

hanabi7 avatar Jun 21 '21 03:06 hanabi7

if self.dataset_name == 'pennaction': kp_2d = convert_kps(kp_2d, src='common', dst='spin') I add the following code in dataset_2d.py, but it don't seem to work

hanabi7 avatar Jun 21 '21 03:06 hanabi7

@hanabi7 Have you fixed this bug? I have tried with the similar code but it do not seem to work too.

winshot-thu avatar Jun 17 '22 03:06 winshot-thu