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
Dear author, thank for your great work.
I am trying to finetune bev on a new dataset.
Following the comment in the dataset class, and check with other dataset
I believe that the variable "params" should include global orientation, body_pose, and betas.
However, I find you have this line pose, betas = params[valid_mask][:,:66].float(), params[valid_mask][:,-10:].float() inside the image_base module.
Why does it only take the first 66 paramters?
I tested my annotations by running romp.lib.dataset.mydataset. The 2d keypoints looks correct, while the smpl and 3d keypoints looks totally off. I wonder whether I missed anything or not.
The text was updated successfully, but these errors were encountered:
Dear author, thank for your great work.
I am trying to finetune bev on a new dataset.
Following the comment in the dataset class, and check with other dataset
I believe that the variable "params" should include global orientation, body_pose, and betas.
However, I find you have this line
pose, betas = params[valid_mask][:,:66].float(), params[valid_mask][:,-10:].float()
inside the image_base module.Why does it only take the first 66 paramters?
I tested my annotations by running romp.lib.dataset.mydataset. The 2d keypoints looks correct, while the smpl and 3d keypoints looks totally off. I wonder whether I missed anything or not.
The text was updated successfully, but these errors were encountered: