import os from .utils import DatasetBase from .oxford_pets import OxfordPets template = ['{} texture.'] class DescribableTextures(DatasetBase): dataset_dir = 'dtd' def __init__(self, root): self.dataset_dir = os.path.join(root, self.dataset_dir) self.image_dir = os.path.join(self.dataset_dir, 'images') self.split_path = os.path.join(self.dataset_dir, 'split_zhou_DescribableTextures.json') self.template = template test = OxfordPets.read_split(self.split_path, self.image_dir) super().__init__(test=test)