Use fp32 model for whole-body poses.
This commit is contained in:
@ -190,9 +190,11 @@ eval_joints = [
|
||||
"ankle_left",
|
||||
"ankle_right",
|
||||
]
|
||||
if dataset_use in ["human36m", "panoptic"]:
|
||||
if dataset_use == "human36m":
|
||||
eval_joints[eval_joints.index("head")] = "nose"
|
||||
if dataset_use.endswith("_wb"):
|
||||
if dataset_use == "panoptic":
|
||||
eval_joints[eval_joints.index("head")] = "nose"
|
||||
if dataset_use == "human36m_wb":
|
||||
if any((test_triangulate.whole_body.values())):
|
||||
eval_joints = list(joint_names_2d)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user