哔哩大学的PyTorch深度学习快速入门教程(绝对通俗易懂!)【小土堆】 的P32讲介绍了利用上几节的模型,从网上找了一张狗的图片进行验证。
所用图片为: 上几节的CIFAR10模型的每个序列对应的真实类别如图: 若结果为第5个类别的概率最大,则验证成功!
代码注释为:
其中tudui_0.pth为上几节保存的文件,这个代码要用最开始cpu训练的模型。
import torch
import torchvision
from PIL import Image
from torch import nn
image_path = "imgs/dog.png"
image = Image.open(image_path)
print(image)
image = image.convert('RGB')
transform = torchvision.transforms.Compose([torchvision.transforms.Resize((32, 32)),
torchvision.transforms.ToTensor()])
image = transform(image)
print(image.shape)
class Tudui(nn.Module):
def __init__(self):
super(Tudui, self).__init__()
self.model = nn.Sequential(
nn.Conv2d(3, 32, 5, 1, 2),
nn.MaxPool2d(2),
nn.Conv2d(32, 32, 5, 1, 2),
nn.MaxPool2d(2),
nn.Conv2d(32, 64, 5, 1, 2),
nn.MaxPool2d(2),
nn.Flatten(),
nn.Linear(64*4*4, 64),
nn.Linear(64, 10)
)
def forward(self, x):
x = self.model(x)
return x
model = torch.load("tudui_0.pth")
print(model)
image = torch.reshape(image, (1, 3, 32, 32))
model.eval()
with torch.no_grad():
output = model(image)
print(output)
print(output.argmax(1))
结果如图: 很遗憾,没有验证对,识别成了青蛙。这是因为训练了10次,次数不够。我们用GPU进行30次训练再试一次。 还是这个代码,有一个细节的修改,在!!!处注释了。这次用的30次训练后的gpu模型
import torch
import torchvision
from PIL import Image
from torch import nn
image_path = "imgs/dog.png"
image = Image.open(image_path)
print(image)
image = image.convert('RGB')
transform = torchvision.transforms.Compose([torchvision.transforms.Resize((32, 32)),
torchvision.transforms.ToTensor()])
image = transform(image)
print(image.shape)
class Tudui(nn.Module):
def __init__(self):
super(Tudui, self).__init__()
self.model = nn.Sequential(
nn.Conv2d(3, 32, 5, 1, 2),
nn.MaxPool2d(2),
nn.Conv2d(32, 32, 5, 1, 2),
nn.MaxPool2d(2),
nn.Conv2d(32, 64, 5, 1, 2),
nn.MaxPool2d(2),
nn.Flatten(),
nn.Linear(64*4*4, 64),
nn.Linear(64, 10)
)
def forward(self, x):
x = self.model(x)
return x
model = torch.load("tudui_29_gpu.pth", map_location=torch.device('cpu'))
print(model)
image = torch.reshape(image, (1, 3, 32, 32))
model.eval()
with torch.no_grad():
output = model(image)
print(output)
print(output.argmax(1))
结果如图: 识别成了鹿🦌,还是不对!!!!!!!
人工智障!!!!!!!!!!!!!!!
但是,up主的图片识别出来了, 我们换个图片再试一遍。换个飞机?,如图: 这次算对啦! CIFAR10模型第0个是飞机:正确!!!! 再来个,房子:
结果如图: 第7个是房子:正确!!!
我还试了猫的图片,可惜算成了dog,实验了卡车和房子都正确。 up说这个模型的正确率为60%
|