Spaces:
Runtime error
Runtime error
File size: 569 Bytes
cc0dd3c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# Copyright (c) OpenMMLab. All rights reserved.
from .coco_metric import CocoMetric
from .coco_wholebody_metric import CocoWholeBodyMetric
from .keypoint_2d_metrics import (AUC, EPE, NME, JhmdbPCKAccuracy,
MpiiPCKAccuracy, PCKAccuracy)
from .keypoint_partition_metric import KeypointPartitionMetric
from .posetrack18_metric import PoseTrack18Metric
__all__ = [
'CocoMetric', 'PCKAccuracy', 'MpiiPCKAccuracy', 'JhmdbPCKAccuracy', 'AUC',
'EPE', 'NME', 'PoseTrack18Metric', 'CocoWholeBodyMetric',
'KeypointPartitionMetric'
]
|