File size: 867 Bytes
bff20b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 .keypoints308_3po_dataset import Keypoints308_3PODataset
from .keypoints308_goliath_dataset import Keypoints308GoliathDataset
from .keypoints308_goliath_eval_dataset import Keypoints308GoliathEvalDataset
from .keypoints308_shutterstock_dataset import Keypoints308ShutterstockDataset
from .keypoints308_shutterstock_eval_dataset import Keypoints308ShutterstockEvalDataset
from .transforms import *
from .utils import parse_pose_metainfo

__all__ = [
    "Keypoints308ShutterstockDataset",
    "Keypoints308GoliathDataset",
    "Keypoints308_3PODataset",
    "Keypoints308ShutterstockEvalDataset",
    "Keypoints308GoliathEvalDataset",
    "parse_pose_metainfo",
]