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
@PeizhuoLi 您好!关于end-effectors的loss,源代码实现方式为: https://github.com/DeepMotionEditing/deep-motion-editing/blob/master/retargeting/models/architecture.py#L116 ee = get_ee(pos, self.dataset.joint_topologies[i], self.dataset.ee_ids[i], velo=self.args.ee_velo, from_root=self.args.ee_from_root) height = self.models[i].height[offset_idx] height = height.reshape((height.shape[0], 1, height.shape[1], 1)) ee /= height
其中height为 “左脚---左手” 这一条路径长度。
然而,论文中关于 End-Effectors Loss 部分如下:
hAe, hBe are the lengths of the kinematic chains from the root to the end-effector e, in each of the skeletons SA and SB.
描述的是 “根节点---端点” 的路径,与代码有出入,不知我的理解是否有误,还望解答,感谢!
The text was updated successfully, but these errors were encountered:
@PeizhuoLi 您好!关于end-effectors的loss,源代码实现方式为:
https://github.com/DeepMotionEditing/deep-motion-editing/blob/master/retargeting/models/architecture.py#L116
ee = get_ee(pos, self.dataset.joint_topologies[i], self.dataset.ee_ids[i], velo=self.args.ee_velo, from_root=self.args.ee_from_root) height = self.models[i].height[offset_idx] height = height.reshape((height.shape[0], 1, height.shape[1], 1)) ee /= height
其中height为 “左脚---左手” 这一条路径长度。
然而,论文中关于 End-Effectors Loss 部分如下:
hAe, hBe are the lengths of the kinematic chains from the root to the end-effector e, in each of the skeletons SA and SB.
描述的是 “根节点---端点” 的路径,与代码有出入,不知我的理解是否有误,还望解答,感谢!
The text was updated successfully, but these errors were encountered: