(predicted, target)
| 3 | |
| 4 | |
| 5 | def mpjpe(predicted, target): |
| 6 | assert predicted.shape == target.shape |
| 7 | return torch.mean(torch.norm(predicted - target, dim=-1)) |
| 8 | |
| 9 | |
| 10 | def pck(predicted, target): |
nothing calls this directly
no outgoing calls
no test coverage detected