Spaces:
Runtime error
Runtime error
| # Copyright (c) OpenMMLab. All rights reserved. | |
| from .keypoint_eval import (keypoint_auc, keypoint_epe, 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' | |
| ] | |