Spaces:
Sleeping
Sleeping
File size: 293 Bytes
e3641b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from torch.utils.data import Dataset
class HumanPoseEstimationDataset(Dataset):
"""
HumanPoseEstimationDataset class.
Generic class for HPE datasets.
"""
def __init__(self):
pass
def __len__(self):
pass
def __getitem__(self, item):
pass |