(predicted, target, action, error_sum, data_type, subject)
| 65 | |
| 66 | |
| 67 | def test_calculation(predicted, target, action, error_sum, data_type, subject): |
| 68 | error_sum = mpjpe_by_action_p1(predicted, target, action, error_sum) |
| 69 | error_sum = mpjpe_by_action_p2(predicted, target, action, error_sum) |
| 70 | return error_sum |
| 71 | |
| 72 | |
| 73 | def mpjpe_by_action_p1(predicted, target, action, action_error_sum): |
no test coverage detected