You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.0 KiB
71 lines
2.0 KiB
2 years ago
|
""" Dataset reader that wraps Hugging Face datasets
|
||
|
|
||
2 years ago
|
Hacked together by / Copyright 2022 Ross Wightman
|
||
|
"""
|
||
|
import io
|
||
|
import math
|
||
|
import torch
|
||
|
import torch.distributed as dist
|
||
|
from PIL import Image
|
||
|
|
||
|
try:
|
||
|
import datasets
|
||
|
except ImportError as e:
|
||
|
print("Please install Hugging Face datasets package `pip install datasets`.")
|
||
|
exit(1)
|
||
2 years ago
|
from .reader import Reader
|
||
2 years ago
|
|
||
|
|
||
|
def get_class_labels(info):
|
||
|
if 'label' not in info.features:
|
||
|
return {}
|
||
|
class_label = info.features['label']
|
||
|
class_to_idx = {n: class_label.str2int(n) for n in class_label.names}
|
||
|
return class_to_idx
|
||
|
|
||
|
|
||
2 years ago
|
class ReaderHfds(Reader):
|
||
2 years ago
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
root,
|
||
|
name,
|
||
|
split='train',
|
||
|
class_map=None,
|
||
|
download=False,
|
||
|
):
|
||
|
"""
|
||
|
"""
|
||
|
super().__init__()
|
||
|
self.root = root
|
||
|
self.split = split
|
||
|
self.dataset = datasets.load_dataset(
|
||
|
name, # 'name' maps to path arg in hf datasets
|
||
|
split=split,
|
||
|
cache_dir=self.root, # timm doesn't expect hidden cache dir for datasets, specify a path
|
||
|
#use_auth_token=True,
|
||
|
)
|
||
|
# leave decode for caller, plus we want easy access to original path names...
|
||
|
self.dataset = self.dataset.cast_column('image', datasets.Image(decode=False))
|
||
|
|
||
|
self.class_to_idx = get_class_labels(self.dataset.info)
|
||
|
self.split_info = self.dataset.info.splits[split]
|
||
2 years ago
|
self.num_samples = self.split_info.num_examples
|
||
2 years ago
|
|
||
|
def __getitem__(self, index):
|
||
|
item = self.dataset[index]
|
||
|
image = item['image']
|
||
|
if 'bytes' in image and image['bytes']:
|
||
|
image = io.BytesIO(image['bytes'])
|
||
|
else:
|
||
|
assert 'path' in image and image['path']
|
||
|
image = open(image['path'], 'rb')
|
||
|
return image, item['label']
|
||
|
|
||
|
def __len__(self):
|
||
|
return len(self.dataset)
|
||
|
|
||
|
def _filename(self, index, basename=False, absolute=False):
|
||
|
item = self.dataset[index]
|
||
|
return item['image']['path']
|