gpt4 book ai didi

pytorch - 什么是 Pytorch 中的 volatile 变量

转载 作者:行者123 更新时间:2023-12-03 20:08:29 24 4
gpt4 key购买 nike

Pytorch 中变量的 volatile 属性是什么?这是在 PyTorch 中定义变量的示例代码。

datatensor = Variable(data, volatile=True)

最佳答案

基本上,如果您仅进行推理并且不会运行反向传播以节省内存,则将网络的输入设置为 volatile。

来自 docs :

Volatile is recommended for purely inference mode, when you’re sure you won’t be even calling .backward(). It’s more efficient than any other autograd setting - it will use the absolute minimal amount of memory to evaluate the model. volatile also determines that requires_grad is False.



编辑: volatile 关键字是 deprecated从 pytorch 0.4.0 版开始

关于pytorch - 什么是 Pytorch 中的 volatile 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49837638/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com