导入相关包torch.nn.functional中包含relu(),maxpool2d()等 CNN 常用操作。 import torch import torch.nn as nn import torch.nn.functional as F import torch.optim as optim import torchvision import to…
一直对于model.eval()和torch.no_grad()有些疑惑 之前看博客说,只用torch.no_grad()即可 但是今天查资料,发现不是这样,而是两者都用,因为两者有着不同的作用 引用stackoverflow: Use both. They do different things, and have different scopes.wit…