本文簡要介紹python語言中 torch.empty_like
的用法。
用法:
torch.empty_like(input, *, dtype=None, layout=None, device=None, requires_grad=False, memory_format=torch.preserve_format) → Tensor
input(Tensor) -
input
的大小將決定輸出張量的大小。dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。默認值:如果None
,則默認為input
的數據類型。layout(
torch.layout
, 可選的) -返回張量的所需布局。默認值:如果None
,則默認為input
的布局。device(
torch.device
, 可選的) -返回張量的所需設備。默認值:如果None
,則默認為input
的設備。requires_grad(bool,可選的) -如果 autograd 應該在返回的張量上記錄操作。默認值:
False
。memory_format(
torch.memory_format
, 可選的) -返回的張量所需的內存格式。默認值:torch.preserve_format
。
返回與
input
大小相同的未初始化張量。torch.empty_like(input)
等同於torch.empty(input.size(), dtype=input.dtype, layout=input.layout, device=input.device)
。例子:
>>> torch.empty((2,3), dtype=torch.int64) tensor([[ 9.4064e+13, 2.8000e+01, 9.3493e+13], [ 7.5751e+18, 7.1428e+18, 7.5955e+18]])
參數:
關鍵字參數:
相關用法
- Python PyTorch empty_strided用法及代碼示例
- Python PyTorch empty用法及代碼示例
- Python PyTorch embedding用法及代碼示例
- Python PyTorch emit_nvtx用法及代碼示例
- Python PyTorch embedding_bag用法及代碼示例
- Python PyTorch enable_grad用法及代碼示例
- Python PyTorch equal用法及代碼示例
- Python PyTorch eq用法及代碼示例
- Python PyTorch erfc用法及代碼示例
- Python PyTorch exp用法及代碼示例
- Python PyTorch expires用法及代碼示例
- Python PyTorch effect_names用法及代碼示例
- Python PyTorch entr用法及代碼示例
- Python PyTorch einsum用法及代碼示例
- Python PyTorch eigvals用法及代碼示例
- Python PyTorch eigvalsh用法及代碼示例
- Python PyTorch expm1用法及代碼示例
- Python PyTorch export用法及代碼示例
- Python PyTorch exp2用法及代碼示例
- Python PyTorch erfinv用法及代碼示例
- Python PyTorch eig用法及代碼示例
- Python PyTorch eigh用法及代碼示例
- Python PyTorch extract_archive用法及代碼示例
- Python PyTorch eye用法及代碼示例
- Python PyTorch eye_用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.empty_like。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。