一 前期作業
環境:python3.6,1080ti,pytorch1.10(實驗室服務器的環境????)
1.設定GPU或者cpu
import torch import torch.nn as nn import matplotlib.pyplot as plt import torchvision device = torch.device("cuda" if torch.cuda.is_available() else "cpu") device
2.匯入資料
import os,PIL,random,pathlib data_dir = 'weather_photos/' data_dir = pathlib.Path(data_dir) print(data_dir) data_paths = list(data_dir.glob('*')) print(data_paths) classeNames = [str(path).split("/")[1] for path in data_paths] classeNames
二 資料預處理
資料格式設定
total_datadir = 'weather_photos/' # 關于transforms.Compose的更多介紹可以參考:https://blog.csdn.net/qq_38251616/article/details/124878863 train_transforms = transforms.Compose([ transforms.Resize([224, 224]), # 將輸入圖片resize成統一尺寸 transforms.ToTensor(), # 將PIL Image或numpy.ndarray轉換為tensor,并歸一化到[0,1]之間 transforms.Normalize( # 標準化處理-->轉換為標準正太分布(高斯分布),使模型更容易收斂 mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]) # 其中 mean=[0.485,0.456,0.406]與std=[0.229,0.224,0.225] 從資料集中隨機抽樣計算得到的, ]) total_data = datasets.ImageFolder(total_datadir,transform=train_transforms) total_data
資料集劃分
train_size = int(0.8 * len(total_data)) test_size = len(total_data) - train_size train_dataset, test_dataset = torch.utils.data.random_split(total_data, [train_size, test_size]) train_dataset, test_dataset
設定dataset
batch_size = 32 train_dl = torch.utils.data.DataLoader(train_dataset, batch_size=batch_size, shuffle=True, num_workers=1) test_dl = torch.utils.data.DataLoader(test_dataset, batch_size=batch_size, shuffle=True, num_workers=1)
檢查資料格式
for X, y in test_dl: print("Shape of X [N, C, H, W]: ", X.shape) print("Shape of y: ", y.shape, y.dtype) break

三 搭建網路
import torch from torch import nn from torch.nn import Conv2d, MaxPool2d, Flatten, Linear, Sequential,ReLU num_classes = 4 class Model(nn.Module): def __init__(self): super(Model,self).__init__() # 卷積層 self.layers = Sequential( # 第一層 nn.Conv2d(3, 24, kernel_size=5), nn.BatchNorm2d(24), nn.ReLU(), # 第二層 nn.Conv2d(24,64 , kernel_size=5), nn.BatchNorm2d(64), nn.ReLU(), nn.MaxPool2d(2,2), nn.Conv2d(64, 128, kernel_size=5), nn.BatchNorm2d(128), nn.ReLU(), nn.Conv2d(128, 24, kernel_size=5), nn.BatchNorm2d(24), nn.ReLU(), nn.MaxPool2d(2,2), nn.Flatten(), nn.Linear(24*50*50, 516,bias=True), nn.ReLU(), nn.Dropout(0.5), nn.Linear(516, 215,bias=True), nn.ReLU(), nn.Dropout(0.5), nn.Linear(215, num_classes,bias=True), ) def forward(self, x): x = self.layers(x) return x device = "cuda" if torch.cuda.is_available() else "cpu" print("Using {} device".format(device)) model = Model().to(device) model
列印網路結構
四 訓練模型
1.設定學習率
loss_fn = nn.CrossEntropyLoss() # 創建損失函式 learn_rate = 1e-3 # 學習率 opt = torch.optim.SGD(model.parameters(),lr=learn_rate)
2.模型訓練
訓練函式
# 訓練回圈 def train(dataloader, model, loss_fn, optimizer): size = len(dataloader.dataset) # 訓練集的大小,一共60000張圖片 num_batches = len(dataloader) # 批次數目,1875(60000/32) train_loss, train_acc = 0, 0 # 初始化訓練損失和正確率 for X, y in dataloader: # 獲取圖片及其標簽 X, y = X.to(device), y.to(device) # 計算預測誤差 pred = model(X) # 網路輸出 loss = loss_fn(pred, y) # 計算網路輸出和真實值之間的差距,targets為真實值,計算二者差值即為損失 # 反向傳播 optimizer.zero_grad() # grad屬性歸零 loss.backward() # 反向傳播 optimizer.step() # 每一步自動更新 # 記錄acc與loss train_acc += (pred.argmax(1) == y).type(torch.float).sum().item() train_loss += loss.item() train_acc /= size train_loss /= num_batches return train_acc, train_loss
測驗函式
def test (dataloader, model, loss_fn): size = len(dataloader.dataset) # 測驗集的大小,一共10000張圖片 num_batches = len(dataloader) # 批次數目,313(10000/32=312.5,向上取整) test_loss, test_acc = 0, 0 # 當不進行訓練時,停止梯度更新,節省計算記憶體消耗 with torch.no_grad(): for imgs, target in dataloader: imgs, target = imgs.to(device), target.to(device) # 計算loss target_pred = model(imgs) loss = loss_fn(target_pred, target) test_loss += loss.item() test_acc += (target_pred.argmax(1) == target).type(torch.float).sum().item() test_acc /= size test_loss /= num_batches return test_acc, test_loss
具體訓練代碼
epochs = 30 train_loss = [] train_acc = [] test_loss = [] test_acc = [] for epoch in range(epochs): model.train() epoch_train_acc, epoch_train_loss = train(train_dl, model, loss_fn, opt) model.eval() epoch_test_acc, epoch_test_loss = test(test_dl, model, loss_fn) train_acc.append(epoch_train_acc) train_loss.append(epoch_train_loss) test_acc.append(epoch_test_acc) test_loss.append(epoch_test_loss) template = ('Epoch:{:2d}, Train_acc:{:.1f}%, Train_loss:{:.3f}, Test_acc:{:.1f}%,Test_loss:{:.3f}') print(template.format(epoch+1, epoch_train_acc*100, epoch_train_loss, epoch_test_acc*100, epoch_test_loss)) print('Done')

五 模型評估
1.Loss和Accuracy圖
import matplotlib.pyplot as plt #隱藏警告 import warnings warnings.filterwarnings("ignore") #忽略警告資訊 plt.rcParams['font.sans-serif'] = ['SimHei'] # 用來正常顯示中文標簽 plt.rcParams['axes.unicode_minus'] = False # 用來正常顯示負號 plt.rcParams['figure.dpi'] = 100 #解析度 epochs_range = range(epochs) plt.figure(figsize=(12, 3)) plt.subplot(1, 2, 1) plt.plot(epochs_range, train_acc, label='Training Accuracy') plt.plot(epochs_range, test_acc, label='Test Accuracy') plt.legend(loc='lower right') plt.title('Training and Validation Accuracy') plt.subplot(1, 2, 2) plt.plot(epochs_range, train_loss, label='Training Loss') plt.plot(epochs_range, test_loss, label='Test Loss') plt.legend(loc='upper right') plt.title('Training and Validation Loss') plt.show()

2.對結果進行預測
import os import json import torch from PIL import Image from torchvision import transforms import matplotlib.pyplot as plt img_path = "weather_photos/cloudy/cloudy1.jpg" classes = ['cloudy', 'rain', 'shine', 'sunrise'] data_transform = transforms.Compose([ transforms.Resize([224, 224]), # 將輸入圖片resize成統一尺寸 transforms.ToTensor(), # 將PIL Image或numpy.ndarray轉換為tensor,并歸一化到[0,1]之間 transforms.Normalize( # 標準化處理-->轉換為標準正太分布(高斯分布),使模型更容易收斂 mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]) # 其中 mean=[0.485,0.456,0.406]與std=[0.229,0.224,0.225] 從資料集中隨機抽樣計算得到的, ]) def main(): device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") img = Image.open(img_path) plt.imshow(img) # [N, C, H, W] img = data_transform(img) # expand batch dimension img = torch.unsqueeze(img, dim=0) model.eval() with torch.no_grad(): # predict class output = torch.squeeze(model(img.to(device))).cpu() predict = torch.softmax(output, dim=0) predict_cla = torch.argmax(predict).numpy() print(classes[predict_cla]) plt.show() if __name__ == '__main__': main()
預測結果如下:
3.總結
1.本次能主要對以下函式進行了學習
|
|
||
|
|
||
|
|
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/513650.html
標籤:Python
