1.python中常用的两大法宝函数dir ()和help ()
- dir()函数可以让我们了解工具箱,以及工具箱内的分割区里有什么东西
- help()函数能让我们知道每个工具如何使用,工具的使用方法
2.Dataset类代码实战
- os.listdir(path)方法可以使path路径下的文件成为一个列表
from torch.utils.data import Dataset
import os
from PIL import Image
class MyData(Dataset):
def __init__(self, root_path, label_path):
self.root_path = root_path # eg: hymenoptera_data/train
self.label_path = label_path # eg: /ants
self.path = os.path.join(self.root_path, self.label_path) # 将上述地址拼接成 hymenoptera_data/train/ants
self.img_path = os.listdir(self.path) # 将 self.path 路径下的图片变成列表,返回list
def __getitem__(self, index):
img_name = self.img_path[index] # eg: 获取0013035.jpg
img_item_path = os.path.join(self.path, img_name)
img = Image.open(img_item_path) # 返回一个jpeg对象
label = self.label_path
return img, label
def __len__(self):
return len(self.img_path)
root_dir = "hymenoptera_data/train"
ants_label_dir = "ants"
bees_label_dir = "bees"
ants_dataset = MyData(root_path=root_dir, label_path=ants_label_dir)
bees_dataset = MyData(root_path=root_dir, label_path=bees_label_dir)
train_dataset = ants_dataset + bees_dataset # 将两个数据集合并在一起
img, label = ants_dataset[0]
img.show() # 展示图片