本文簡要介紹python語言中 torch.nn.init.eye_
的用法。
用法:
torch.nn.init.eye_(tensor)
tensor-一個二維
torch.Tensor
用單位矩陣填充二維輸入
Tensor
。保留Linear
層中輸入的標識,其中盡可能多地保留輸入。例子
>>> w = torch.empty(3, 5) >>> nn.init.eye_(w)
參數:
相關用法
- Python PyTorch eye用法及代碼示例
- Python PyTorch enable_grad用法及代碼示例
- Python PyTorch equal用法及代碼示例
- Python PyTorch eq用法及代碼示例
- Python PyTorch erfc用法及代碼示例
- Python PyTorch exp用法及代碼示例
- Python PyTorch empty_like用法及代碼示例
- Python PyTorch expires用法及代碼示例
- Python PyTorch effect_names用法及代碼示例
- Python PyTorch entr用法及代碼示例
- Python PyTorch einsum用法及代碼示例
- Python PyTorch embedding用法及代碼示例
- Python PyTorch eigvals用法及代碼示例
- Python PyTorch empty_strided用法及代碼示例
- Python PyTorch emit_nvtx用法及代碼示例
- Python PyTorch eigvalsh用法及代碼示例
- Python PyTorch expm1用法及代碼示例
- Python PyTorch export用法及代碼示例
- Python PyTorch exp2用法及代碼示例
- Python PyTorch embedding_bag用法及代碼示例
- Python PyTorch erfinv用法及代碼示例
- Python PyTorch eig用法及代碼示例
- Python PyTorch eigh用法及代碼示例
- Python PyTorch extract_archive用法及代碼示例
- Python PyTorch empty用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nn.init.eye_。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。