1 Star 0 Fork 0

Yinqiyu/learn_pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
read_data.py 862 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoyin 提交于 2022-01-01 19:29 . Initial commit
from torch.utils.data.dataset import Dataset
import cv2
from PIL import Image
import os
class Mydata(Dataset):
def __init__(self, root_dir, label_dir):
self.root_dir = root_dir
self.label_dir = label_dir
self.path = os.path.join(self.root_dir, self.label_dir)
self.img_path = os.listdir(self.path)
def __getitem__(self, idx):
img_name = self.img_path[idx]
img_item_path = os.path.join(self.root_dir, self.label_dir, img_name)
img = Image.open(img_item_path)
label = self.label_dir
return img, label
def __len__(self):
return len(self.img_path)
root_dir = "dataset/train"
ants_label_dir = "ants"
bees_label_dir = "bees"
ants_dataset = Mydata(root_dir, ants_label_dir)
bees_dataset = Mydata(root_dir, ants_label_dir)
train_dataset = ants_dataset + bees_dataset
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yin-qiyu/learn_pytorch.git
git@gitee.com:yin-qiyu/learn_pytorch.git
yin-qiyu
learn_pytorch
learn_pytorch
master

搜索帮助