torch.func.functional_call¶
- torch.func.functional_call(module, parameter_and_buffer_dicts, args, kwargs=None, *, tie_weights=True, strict=False)¶
通过使用提供的参数和缓冲区替换模块参数和缓冲区,在模块上执行函数调用。
注意
如果模块具有活动参数化,则在
parameter_and_buffer_dicts
参数中传递一个名为常规参数名称的值将完全禁用参数化。如果要将参数化函数应用于传递的值,请将键设置为{submodule_name}.parametrizations.{parameter_name}.original
。注意
如果模块对参数/缓冲区执行就地操作,这些操作将反映在
parameter_and_buffer_dicts
输入中。示例
>>> a = {'foo': torch.zeros(())} >>> mod = Foo() # does self.foo = self.foo + 1 >>> print(mod.foo) # tensor(0.) >>> functional_call(mod, a, torch.ones(())) >>> print(mod.foo) # tensor(0.) >>> print(a['foo']) # tensor(1.)
注意
如果模块具有绑定权重,则 functional_call 是否尊重绑定由 tie_weights 标志确定。
示例
>>> a = {'foo': torch.zeros(())} >>> mod = Foo() # has both self.foo and self.foo_tied which are tied. Returns x + self.foo + self.foo_tied >>> print(mod.foo) # tensor(1.) >>> mod(torch.zeros(())) # tensor(2.) >>> functional_call(mod, a, torch.zeros(())) # tensor(0.) since it will change self.foo_tied too >>> functional_call(mod, a, torch.zeros(()), tie_weights=False) # tensor(1.)--self.foo_tied is not updated >>> new_a = {'foo': torch.zeros(()), 'foo_tied': torch.zeros(())} >>> functional_call(mod, new_a, torch.zeros()) # tensor(0.)
传递多个字典的示例
a = ({'weight': torch.ones(1, 1)}, {'buffer': torch.zeros(1)}) # two separate dictionaries mod = nn.Bar(1, 1) # return self.weight @ x + self.buffer print(mod.weight) # tensor(...) print(mod.buffer) # tensor(...) x = torch.randn((1, 1)) print(x) functional_call(mod, a, x) # same as x print(mod.weight) # same as before functional_call
这是一个在模型的参数上应用 grad 变换的示例。
import torch import torch.nn as nn from torch.func import functional_call, grad x = torch.randn(4, 3) t = torch.randn(4, 3) model = nn.Linear(3, 3) def compute_loss(params, x, t): y = functional_call(model, params, x) return nn.functional.mse_loss(y, t) grad_weights = grad(compute_loss)(dict(model.named_parameters()), x, t)
注意
如果用户不需要 grad 变换之外的 grad 跟踪,则可以分离所有参数以提高性能和内存使用率
示例
>>> detached_params = {k: v.detach() for k, v in model.named_parameters()} >>> grad_weights = grad(compute_loss)(detached_params, x, t) >>> grad_weights.grad_fn # None--it's not tracking gradients outside of grad
这意味着用户不能调用
grad_weight.backward()
。但是,如果他们在变换之外不需要自动微分跟踪,这将导致更少的内存使用量和更快的速度。- 参数
module (torch.nn.Module) – 要调用的模块
parameters_and_buffer_dicts (Dict[str, Tensor] or tuple of Dict[str, Tensor]) – 将在模块调用中使用的参数。如果给定一个字典元组,它们必须具有不同的键,以便所有字典都可以一起使用
args (Any or tuple) – 要传递给模块调用的参数。如果不是元组,则视为单个参数。
kwargs (dict) – 要传递给模块调用的关键字参数
tie_weights (bool, 可选) – 如果为 True,则原始模型中绑定的参数和缓冲区将在重新参数化的版本中被视为绑定。因此,如果为 True 并且为绑定参数和缓冲区传递了不同的值,则会出错。如果为 False,则不会尊重最初绑定的参数和缓冲区,除非为两个权重传递的值相同。默认值:True。
strict (bool, 可选) – 如果为 True,则传递的参数和缓冲区必须与原始模块中的参数和缓冲区匹配。因此,如果为 True 并且存在任何丢失或意外的键,则会出错。默认值:False。
- 返回值
调用
module
的结果。- 返回类型
Any