Pytorch常见问题 发表于 2023-10-04 分类于 Pytorch 阅读次数: Pytorch的一些常见问题。 Pytorch常见问题 问题:训练阶段可以正常运行,验证阶段出现cuda out of memory的问题 解决方法:在调用模型进行验证或者预测时,加上with torch.no_grad 12with torch.no_grad(): # 加上这句 outputs = model.forward(data)