Spaces:
Running
on
Zero
Running
on
Zero
| # Copyright (c) Meta Platforms, Inc. and affiliates. | |
| # All rights reserved. | |
| # | |
| # This source code is licensed under the license found in the | |
| # LICENSE file in the root directory of this source tree. | |
| from .keypoint_eval import (keypoint_auc, keypoint_epe, keypoint_mpjpe, | |
| keypoint_nme, keypoint_pck_accuracy, | |
| multilabel_classification_accuracy, | |
| pose_pck_accuracy, simcc_pck_accuracy) | |
| from .nms import nms, oks_nms, soft_oks_nms | |
| __all__ = [ | |
| 'keypoint_pck_accuracy', 'keypoint_auc', 'keypoint_nme', 'keypoint_epe', | |
| 'pose_pck_accuracy', 'multilabel_classification_accuracy', | |
| 'simcc_pck_accuracy', 'nms', 'oks_nms', 'soft_oks_nms', 'keypoint_mpjpe' | |
| ] | |