PyTorch是由Facebook開發的開源機器學習庫。它用於深度神經網絡和自然語言處理。
函數torch.eye()
返回a返回大小為n * m的2-D張量,對角線為1,其他位置為零。
用法:torch.eye(n, m, out=None)
參數:
n:行數
m:列數。默認值-n
out (Tensor, optional):輸出張量
返回類型:二維張量
代碼1:
# Importing the PyTorch library
import torch
# Applying the eye function and
# storing the resulting tensor in 'a'
a = torch.eye(3, 4)
print("a = ", a)
b = torch.eye(3, 3)
print("b = ", b)
c = torch.eye(5, 1)
print("c = ", c)
輸出:
a = tensor([[1., 0., 0., 0.], [0., 1., 0., 0.], [0., 0., 1., 0.]]) b = tensor([[1., 0., 0.], [0., 1., 0.], [0., 0., 1.]]) c = tensor([[1.], [0.], [0.], [0.], [0.]])
相關用法
- Python sympy.eye()用法及代碼示例
- Python tensorflow.eye()用法及代碼示例
- Python numpy.eye()用法及代碼示例
- Python numpy matrix eye()用法及代碼示例
- Python PyTorch sin()用法及代碼示例
- Python PyTorch sinh()用法及代碼示例
- Python PyTorch cosh()用法及代碼示例
- Python PyTorch tanh()用法及代碼示例
- Python PyTorch cos()用法及代碼示例
- Python PyTorch tan()用法及代碼示例
- Python PyTorch asin()用法及代碼示例
- Python PyTorch acos()用法及代碼示例
- Python PyTorch atan()用法及代碼示例
- Python PyTorch zeros()用法及代碼示例
- Python Pytorch ones()用法及代碼示例
- Python Pytorch arange()用法及代碼示例
- Python Pytorch linspace()用法及代碼示例
- Python Pytorch range()用法及代碼示例
注:本文由純淨天空篩選整理自sanskar27jain大神的英文原創作品 Python Pytorch eye() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。