當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python PyTorch Module.buffers用法及代碼示例


本文簡要介紹python語言中 torch.nn.Module.buffers 的用法。

用法:

buffers(recurse=True)

參數

recurse(bool) -如果為真,則產生此模塊和所有子模塊的緩衝區。否則,隻產生作為該模塊直接成員的緩衝區。

生成(Yield)

torch.Tensor - 模塊緩衝區

返回模塊緩衝區的迭代器。

例子:

>>> for buf in model.buffers():
>>>     print(type(buf), buf.size())
<class 'torch.Tensor'> (20L,)
<class 'torch.Tensor'> (20L, 1L, 5L, 5L)

相關用法


注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nn.Module.buffers。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。