Hello, thx for sharing your code, I got some issues about calculate ManoLayer's jacobian matrix in my project.
I use pytorch official api to get ManoLayer's jacobian but it takes too much time, about 0.2s each sample 1 Nvidia RTX 3090
Here is my code:
from torch.autograd.functional import jacobian
j = jacobian(mano_layer.forward, (theta, beta))
btw,
I only calculate joints' jacobian matrix, if add verts' jacobian matrix, it cost a larger time.
Is there any way to get jacobian more efficient?
How could I get ManoLayer's analytical differential expression?
Hello, thx for sharing your code, I got some issues about calculate ManoLayer's jacobian matrix in my project.
I use pytorch official api to get ManoLayer's jacobian but it takes too much time, about 0.2s each sample 1 Nvidia RTX 3090
Here is my code:
btw,
I only calculate joints' jacobian matrix, if add verts' jacobian matrix, it cost a larger time.
Is there any way to get jacobian more efficient?
How could I get ManoLayer's analytical differential expression?