我是靠谱客的博主 鲤鱼小馒头,最近开发中收集的这篇文章主要介绍pytorch自定义数据读取,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

pytorch的数据读取主要跟三个类有关:
1. Dataset
2. DataLoader
3. DataLoaderIter

定义自己的Dataset类

定义自己的Dataset类(继承torch.utils.data.Dataset)并实现两个成员方法
1. __getitem__()
2. __len__()

class MyDataset(data.Dataset):
# 读取存储image路径的txt文件
def __init__(self, imagelistfile, labellistfile):
with open(imagelistfile) as fb:
self.imagelistpaths = fb.readlines()
with open(labellistfile) as fb:
self.labellistpaths = fb.readlines()
# 读取存储image路径的txt文件
def __getitem__(self, index):
img_path = self.imagelistpaths[index]
label = self.labellistpaths[index]
img = Image.open(img_path.strip()) #使用PIL读取图片
img = np.asarray(img,dtype=np.uint8) # Image.open读取后还不是array形式,所以要转换,不然下面转换会报错
img = np.reshape(img,(1,28,28))
# 这里需要将img重置为[channel,height,width],因为要对应神经网络的输入,原来的img是[height,width]
img = torch.tensor(img)
label = torch.tensor(int(label)) # 转为tensor类型
return img, label #最后一定要return tensor类型不然会报错
def __len__(self):
return len(self.imagelistpaths)

DataLoader类

class torch.utils.data.DataLoader(dataset, batch_size=1, shuffle=False, sampler=None, batch_sampler=None, num_workers=0, collate_fn=<function default_collate>, pin_memory=False, drop_last=False)
  1. num_worker: 非常简单的多线程方法, 只要设置为>=1, 就可以多线程预读数据啦.

待解决问题

使用自己定义的Dataset类来读取自己制作的MNIST数据图片,速度明显比pytorch提供的MNIST类要慢很多,原因不明有待解决,有可能是自己的dataset类在DataLoader中迭代比较慢。

参考

  • Pytorch数据读取(Dataset, DataLoader, DataLoaderIter)

最后

以上就是鲤鱼小馒头为你收集整理的pytorch自定义数据读取的全部内容,希望文章能够帮你解决pytorch自定义数据读取所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部