wei-mao-2019 / WAT

code for cvpr2022 paper "Weakly-supervised Action Transition Learning for Stochastic Human Motion Prediction"
MIT License
43 stars 3 forks source link

About prediction with multiple action labels #8

Open KVBK01 opened 1 year ago

KVBK01 commented 1 year ago

I have noticed that in your paper you reported the result of predicting future motions given multiple action labels (e.g., Figure (4) 2nd row). I wonder how is this part of the result produced, since I have not found the corresponding code. Is this achieved by simply generating a sequence in a two-part manner, and use the last few frames in the first part together with a different action label to generate the second part?

like this: action label1, observed sequence ===[VAE Decoder]===> Prediction 1 action label2, Prediction 1(maybe last few frames) ===[VAE Decoder]===> Prediction 2 and Prediction 1+Prediction 2 is the final result?

Looking forward to your reply! Thanks