pytorch数据读取 Posted on 2019-11-21 pytorch数据读取三个常用类: 123- Dataset - DataLoader - DataLoaderIter torch.utils.data.Dataset getitem() 根据索引读取数据 12345def __getiem__(self, index): img_path = self.data[index] img = skimage.io.imread(img_path) return img len() 返回整个数据集长度 12def __len__(self): return len(self.data) torch.utils.data.DataLoader