PyTorch是由Facebook開發的開源機器學習庫。它用於深度神經網絡和自然語言處理。
函數torch.zeros()
返回一個由標量值0填充的張量,其形狀由變量參數size定義。
用法:torch.zeros(size, out=None)
參數:
size:定義輸出張量形狀的整數序列
out (Tensor, optional):輸出張量
返回類型:一個張量,其標量值為0,形狀與尺寸相同。
代碼1:
# Importing the PyTorch library
import torch
# Applying the zeros function and
# storing the resulting tensor in 't'
a = torch.zeros([3, 4])
print("a = ", a)
b = torch.zeros([1, 5])
print("b = ", b)
c = torch.zeros([5, 1])
print("c = ", c)
d = torch.zeros([3, 3, 2])
print("d = ", d)
輸出:
a = tensor([[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]]) b = tensor([[0., 0., 0., 0., 0.]]) c = tensor([[0.], [0.], [0.], [0.], [0.]]) d = tensor([[[0., 0.], [0., 0.], [0., 0.]], [[0., 0.], [0., 0.], [0., 0.]], [[0., 0.], [0., 0.], [0., 0.]]])
相關用法
- 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 ones()用法及代碼示例
- Python Pytorch arange()用法及代碼示例
- Python Pytorch linspace()用法及代碼示例
- Python Pytorch range()用法及代碼示例
- Python Pytorch logspace()用法及代碼示例
- Python Pytorch eye()用法及代碼示例
- Python Pytorch empty()用法及代碼示例
- Python Pytorch full()用法及代碼示例
- Python PyTorch floor()用法及代碼示例
- Python PyTorch fmod()用法及代碼示例
- Python PyTorch log()用法及代碼示例
注:本文由純淨天空篩選整理自sanskar27jain大神的英文原創作品 Python PyTorch zeros() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。