cc.日常

news/2024/10/31 4:19:53/

可以说土堆真的保姆级

学习读取数据集中的各类数据

from torch.utils.data import Dataset
from PIL import Image
import osclass MyData(Dataset):def __init__(self,root_dir,label_dir):self.root_dir = root_dirself.label_dir = label_dirself.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_dirreturn img,labeldef __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,bees_label_dir)train_dataset = ants_dataset + bees_dataset

python console

C:\ProgramData\Anaconda3\envs\pytorch\python.exe "C:\D\ccpython\PyCharm Community Edition 2021.3.1\plugins\python-ce\helpers\pydev\pydevconsole.py" --mode=client --port=53938
import sys; print('Python %s on %s' % (sys.version, sys.platform))
sys.path.extend(['C:\\Users\\26940\\Desktop\\learn_pytorchc', 'C:/Users/26940/Desktop/learn_pytorchc'])
Python 3.6.13 |Anaconda, Inc.| (default, Mar 16 2021, 11:37:27) [MSC v.1916 64 bit (AMD64)]
Type 'copyright', 'credits' or 'license' for more information
IPython 6.1.0 -- An enhanced Interactive Python. Type '?' for help.
PyDev console: using IPython 6.1.0
Python 3.6.13 |Anaconda, Inc.| (default, Mar 16 2021, 11:37:27) [MSC v.1916 64 bit (AMD64)] on win32
from torch.utils.data import Dataset
from PIL import Image
import os
class MyData(Dataset):def __init__(self,root_dir,label_dir):self.root_dir = root_dirself.label_dir = label_dirself.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_dirreturn img,labeldef __len__(self):return len(self.img_path)root_dir = "dataset/train"
ants_label_dir = "ants"
ants_dataset = MyData(root_dir,ants_label_dir)
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,bees_label_dir)
train_dataset = ants_dataset + bees_dataset
len(train_dataset)
Out[7]: 245
img,label=train_dataset[124]
img.show()

蜜蜂蚂蚁数据集:

https://download.pytorch.org/tutorial/hymenoptera_data.ziphttps://download.pytorch.org/tutorial/hymenoptera_data.zip


conception 观念

irritate 激怒

lapse 失误

accommodate 容纳

fiber 纤维素

maneuver 演习

intelligible 可理解的

ashore 上岸

amplify 放大

discreet 谨慎的

council 委员会

lateral 侧面的

illustration 例证

breeze 微风

strain 拉紧

marital 夫妻的

indicative 表示的

therapy 治疗

transplant 迁移

moral 道德的

nasty 烦人的

ingenious 精致的

arena 竞技场

explicit 明确的

assimilate 同化

presumably 大概

liberty 自由

stalk 跟踪

stimulate 刺激

ancestor 祖宗

sway 摇摆

evaporate 蒸发

dread 恐惧

terminate 结束


wy补录,投wb,bz

明天一面md


http://www.ppmy.cn/news/573857.html

相关文章

从阿里到网易,一位非985/211本科应届生的一年求职路

之所以会想写下这篇文章,是因为最近身边很多同学朋友在春招中挣扎,有的放弃,有的坚持。 我很想对放弃者说“坚持下去吧,会有收获!”。 我还记得一年前我春招的时候,有一位工作室的学长A对我说“我相信你可以…

「网易互娱-CC直播事业群」秋招面试复盘总结【已走完流程,等待offer】

网易互娱-CC直播事业群面经 介绍 9月11日晚7点进行了笔试,当时感觉难度有点大,共4道题,仅A了一道题,最后一题0%,另外两道过了一点样例。好在还是收到了面试邀请,9月23日下午5点开始了网易互娱一面。 一面…

java(SpringBoot)中操作Redis的两种方式

前言 之前我们介绍过了redis的五中基本类型以及在可视化界面进行操作,那么在开发中(在代码中)我们通常使用,jedis进行操作redis,要是springboot 项目,我们通常使用redisTemplte进行操作 首先将redis启动 方式一 Jred…

【软件工程】工程管理

管理,例如,我们要谋划一场旅行,需要提前对目的地进行了解,选择交通方式,提前预定酒店,制定计划,资金预算等。软件工程管理是为了使软件项目能按照预定的成本,进度以及质量顺利完成&a…

软件工程 团队组织与管理

团队组织与管理 人员的选择 •应该考虑团队中的技术、经验和个性是否整体均衡。 •选择性格互补的成员组成的团队可能比仅仅根据技术能力选择成员的团队更有效率。 •团队的领导力来自于成员的尊重,而不是名义上的头衔。 团队是由若干人组成的一个群体&#xff0…

软件工程中国学科排名——2021软科

转载于 软科 排名榜单包括96个一级学科,各个学科排名的对象是在该一级学科设有学术型研究生学位授权点的所有高校,发布的是在该学科排名前50%的高校。共有486所高校的4992个学科点上榜。 软件工程学科排名共有81所大学上榜,清华大学、华东师范…

Django项目之mysql数据库连接和表的创建

数据库连接 首先,确保我们已经生成了一个基本的Django项目文件,目录结构如下: 具体搭建流程参考链接:https://blog.csdn.net/David_house/article/details/131188889?spm1001.2014.3001.5502找到项目下的settings文件&#xff…

西电计算机学院软件学院,软件学院

2001年,学校响应国家培养软件人才,尽快提高我国软件产业的总体水平和国际竞争力的号召,以软件工程研究所为基础组建成立软件学院,并于当年获得教育部批准,成为首批建设的35所国家示范性软件学院之一。 西电软件学院以市…