MCPcopy Create free account
hub / github.com/Vegetebird/GraphMLP / mpjpe

Function mpjpe

common/eval_cal.py:5–7  ·  view source on GitHub ↗
(predicted, target)

Source from the content-addressed store, hash-verified

3
4
5def mpjpe(predicted, target):
6 assert predicted.shape == target.shape
7 return torch.mean(torch.norm(predicted - target, dim=-1))
8
9
10def pck(predicted, target):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected