本文簡要介紹python語言中 torch.eq
的用法。
用法:
torch.eq(input, other, *, out=None) → Tensor
out(Tensor,可選的) -輸出張量。
一個布爾張量,在
input
等於other
的情況下為 True,在其他地方為 False計算元素相等
第二個參數可以是一個數字或張量,其形狀可與第一個參數一起廣播。
例子:
>>> torch.eq(torch.tensor([[1, 2], [3, 4]]), torch.tensor([[1, 1], [4, 4]])) tensor([[ True, False], [False, True]])
參數:
關鍵字參數:
返回:
相關用法
- Python PyTorch equal用法及代碼示例
- Python PyTorch enable_grad用法及代碼示例
- 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用法及代碼示例
- Python PyTorch eye用法及代碼示例
- Python PyTorch eye_用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.eq。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。