Open wjrzm opened 1 year ago
Hi, in ik_example_joints.py, you could try to set num_betas = 10
in IK_Engine like:
ik_engine = IK_Engine(vposer_expr_dir=vposer_expr_dir,
verbosity=2,
display_rc= (2, 2),
data_loss=data_loss,
stepwise_weights=stepwise_weights,
optimizer_args=optimizer_args,
num_betas = 10 # ADD
).to(comp_device)
Hope this can help you.
Hi, in ik_example_joints.py, you could try to set
num_betas = 10
in IK_Engine like:ik_engine = IK_Engine(vposer_expr_dir=vposer_expr_dir, verbosity=2, display_rc= (2, 2), data_loss=data_loss, stepwise_weights=stepwise_weights, optimizer_args=optimizer_args, num_betas = 10 # ADD ).to(comp_device)
Hope this can help you.
Thanks, this helped me a lot! !
Hi, in ik_example_joints.py, you could try to set
num_betas = 10
in IK_Engine like:ik_engine = IK_Engine(vposer_expr_dir=vposer_expr_dir, verbosity=2, display_rc= (2, 2), data_loss=data_loss, stepwise_weights=stepwise_weights, optimizer_args=optimizer_args, num_betas = 10 # ADD ).to(comp_device)
Hope this can help you.
It's working. Thank you
I have configured the environment according to the installation process in README, but when I run
ik_example_joints.py
, I have the following error.I searched for a lot of corresponding errors on the Internet. They tried to remind me of the BUG of the corresponding function of Pytorch, so I upgraded the version of Pytorch. The following is the error report using Pytorch1.12.1 and 1.13.1.
I am using
Could you help me find a solution?