Julieta Martinez

Results 96 comments of Julieta Martinez

Hi @babdulhakim2, I am not sure what you mean by `parsing` in this context. Our code works with mocap data currently -- it could be extended to handle an online...

Hi, Yes, this downsamples from 50Hz to 25Hz. It is also in line with the previous work of Jain et al. CVPR 16 -- we took the data from them...

What does the folder `experiments/walking/.../not_residual_vel` have? The checkpoint should be there. PS. Please do not post images of text. Just copy the text.

Weird. The checkpoint is definitely there. Not sure what is going on -- I suggest you try to figure out why this line https://github.com/una-dinosauria/human-motion-prediction/blob/c9a2774fe59bb78c6ec6d04e15f2cb7243c4348c/src/translate.py#L96 returns `False` in your machine, since...

The path looks good to me. Like I said, you should debug why that line returns False. Hints: use a debugger; use Google. I'm sorry I can't help you further...

Hi, A different representation of the data, such as quaternions, might result in a higher-dimensional representation and different dimensions being used. It makes sense that this does not match what...

> Can the preprocessed data be converted to quaternions instead of exponential maps? Yes. > Is there a code for the conversion? Look at https://github.com/una-dinosauria/human-motion-prediction/blob/master/src/data_utils.py. We have code to convert...

> From some comments here I realized that the first three values from every row are translation values (so these should not be considered in the conversion) while all other...

Hi @Ammola, > What is the structure of the skeleton in the H3.6M? Please have a look at the `fkl` function that we provide: https://github.com/una-dinosauria/human-motion-prediction/blob/c9a2774fe59bb78c6ec6d04e15f2cb7243c4348c/src/forward_kinematics.py#L14-L28 The parameters are all you...

Hi @LittleFlyFish, > set the first frame of predicted motion clip the exactly same as the last frame in Input motion clip? Correct. You can see the code to do...