aipixel / GaussianAvatar

[CVPR 2024] The official repo for "GaussianAvatar: Towards Realistic Human Avatar Modeling from a Single Video via Animatable 3D Gaussians"
https://huliangxiao.github.io/GaussianAvatar
MIT License
383 stars 28 forks source link

Question about neuman_bike data #36

Open LarkLeeOnePiece opened 1 month ago

LarkLeeOnePiece commented 1 month ago

Is the provided dataset of neuman_bike missing something? It doesn’t contain the "train" and "test" folder. Also the preidected_pose since to be the training data because when I try to render the predicted_pose I got the pose.shape=[93,72]. It seems this dataset missing something? Could anyone help me?

LarkLeeOnePiece commented 1 month ago

BTW, when I tried to load the "smpl_cano_joint_mat" of neuman_bike, I met the error"RuntimeError: [enforce fail at C:\cb\pytorch_1000000000000\work\caffe2\serialize\inline_container.cc:261] . file in archive is not in a subdirectory archive/: smpl_parms.pth". The full error: { "name": "RuntimeError", "message": "[enforce fail at C:\cb\pytorch_1000000000000\work\caffe2\serialize\inline_container.cc:261] . file in archive is not in a subdirectory archive/: smpl_parms.pth", "stack": "--------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) Cell In[1], line 8 6 train_cam_paras=np.load(train_cam_path) 7 #print(f\"train_cam_paras={train_cam_paras}\") ----> 8 mat=torch.load(smpl_mat_path) 9 print(f\"mat={mat},\ mat.shape={mat.shape}\")

File c:\Users\LID0E\AppData\Local\miniconda3\envs\gs-avatar-v4\lib\site-packages\torch\serialization.py:798, in load(f, map_location, pickle_module, weights_only, **pickle_load_args) 796 orig_position = opened_file.tell() 797 with _open_zipfile_reader(opened_file) as opened_zipfile: --> 798 if _is_torchscript_zip(opened_zipfile): 799 warnings.warn(\"'torch.load' received a zip file that looks like a TorchScript archive\" 800 \" dispatching to 'torch.jit.load' (call 'torch.jit.load' directly to\" 801 \" silence this warning)\", UserWarning) 802 opened_file.seek(orig_position)

File c:\Users\LID0E\AppData\Local\miniconda3\envs\gs-avatar-v4\lib\site-packages\torch\serialization.py:1180, in _is_torchscript_zip(zip_file) 1179 def _is_torchscript_zip(zip_file): -> 1180 return 'constants.pkl' in zip_file.get_all_records()

RuntimeError: [enforce fail at C:\cb\pytorch_1000000000000\work\caffe2\serialize\inline_container.cc:261] . file in archive is not in a subdirectory archive/: smpl_parms.pth" }