You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "aitviewer/examples/load_smplx.py", line 32, in <module>
smpl_seq = SMPLSequence.from_npz(
File "aitviewer/aitviewer/renderables/smpl.py", line 327, in from_npz
return cls(
File "aitviewer/aitviewer/renderables/smpl.py", line 161, in __init__
global_oris = local_to_global(
File "aitviewer/aitviewer/utils/utils.py", line 342, in local_to_global
if parents[j] < 0:
IndexError: index 22 is out of bounds for axis 0 with size 22
While debugging it I tried the example/missing_frames.py, this very simple t_pose
File "/home/era/code/aitviewer/aitviewer/renderables/smpl.py", line 162, in __init__
torch.cat([self.poses_root, self.poses_body, self.poses_left_hand, self.poses_right_hand], dim=-1),
TypeError: expected Tensor as element 2 in argument 0, but got NoneType
because the poses_left and poses_right hands are None, which is why I had to add them in my example above.
I also tried load_AMASS example and I get the same index 22 is out of bounds for axis 0 with size 22 error.
The text was updated successfully, but these errors were encountered:
I want to load a custom SMPL-X sequence, this is the code that I have so far:
when I run it, I get an error
While debugging it I tried the
example/missing_frames.py
, this very simplet_pose
For either, I get a
because the
poses_left
andposes_right
hands areNone
, which is why I had to add them in my example above.I also tried
load_AMASS
example and I get the sameindex 22 is out of bounds for axis 0 with size 22
error.The text was updated successfully, but these errors were encountered: