pytorch 迁移学习实战 天气识别

Posted 南妮儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytorch 迁移学习实战 天气识别相关的知识,希望对你有一定的参考价值。

代码:pytorch迁移学习实战,天气识别-深度学习文档类资源-CSDN文库

dataset 

import random
import numpy as np
import torch
from torchvision import transforms
import torchvision

if __name__==\'__main__\':
    import matplotlib.pyplot as plt
    # 定义数据处理transform
    transform = transforms.Compose([
        transforms.Resize([224,224]),
        transforms.ToTensor()
    ])
    #transform是对特征进行变换,target_transform是对标签进行变换
    dataset=torchvision.datasets.ImageFolder(root=\'./data\',transform=transform,
                                             target_transform=torchvision.transforms.Lambda(lambda x:torch.zeros(4,dtype=torch.float).scatter_(0,torch.tensor(x),value=1)))
    print(dataset.classes)
    print(dataset.class_to_idx)
    print(dataset.imgs

以上是关于pytorch 迁移学习实战 天气识别的主要内容,如果未能解决你的问题,请参考以下文章

Pytorch实战 | 第P3周:天气识别

Pytorch实战 | 第P3周:天气识别

pytorch-实现天气识别

深度学习pytorch——天气识别

PyTorch之迁移学习实战

Pytorch Note55 迁移学习实战猫狗分类