PyTorch中,.to(device)是一個非常重要的方法,用於將張量、模型等對象移動到指定的設備(如CPU或GPU)。 import torch import torch.nn as nn # 檢查可用設備 device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') print(