teemosliang's picture
realease: publish the huggingface space demo of SDPose
d5532b9 verified
# 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'
]