与 PyTorch 的 torch.no_grad 等效的 LibTorch 是什么?
What is the LibTorch equivalent to PyTorch's torch.no_grad?
在 PyTorch 中测试网络时,可以使用 with torch.no_grad():
。什么是 Libtorch (C++) 等价物?
谢谢!
LibTorch 中的等价物是 torch::NoGradGuard no_grad
、see documentation。
在 PyTorch 中测试网络时,可以使用 with torch.no_grad():
。什么是 Libtorch (C++) 等价物?
谢谢!
LibTorch 中的等价物是 torch::NoGradGuard no_grad
、see documentation。