Shimingyi / MotioNet

A deep neural network that directly reconstructs the motion of a 3D human skeleton from monocular video [ToG 2020]
https://rubbly.cn/publications/motioNet/
BSD 2-Clause "Simplified" License
554 stars 82 forks source link

About valid !! #11

Closed Z-Z-J closed 3 years ago

Z-Z-J commented 3 years ago

QQ截图20200913211051

First, a is defined ,but not use . Second, alphas is a list , why only use alphas[0] ??

I look forward to your answer !!!! Thank you !!!

Shimingyi commented 3 years ago

a is just a temporary variant for debugging, I will delete it in next commit. The operation is running on the batchwise, and when testing, the batchsize is 1. If you output the shape of alpha here, you will find the fist dimension value is 1. so we can use [0] to get it.