當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pytorch ones()用法及代碼示例


PyTorch是由Facebook開發的開源機器學習庫。它用於深度神經網絡和自然語言處理。

函數torch.ones()返回一個由標量值1填充的張量,其形狀由變量參數size定義。

用法:torch.ones(size, out=None)

參數
size:定義輸出張量形狀的整數序列
out (Tensor, optional):輸出張量

返回類型:用標量值1填充的張量,其形狀與尺寸相同。



代碼1:

# Importing the PyTorch library 
import torch 
  
  
# Applying the ones function and 
# storing the resulting tensor in 't' 
a = torch.ones([3, 4]) 
print("a = ", a) 
  
b = torch.ones([1, 5]) 
print("b = ", b) 
  
c = torch.ones([5, 1]) 
print("c = ", c) 
  
d = torch.ones([3, 3, 2]) 
print("d = ", d)

輸出:

a =  tensor([[1., 1., 1., 1.],
        [1., 1., 1., 1.],
        [1., 1., 1., 1.]])
b =  tensor([[1., 1., 1., 1., 1.]])
c =  tensor([[1.],
        [1.],
        [1.],
        [1.],
        [1.]])
d =  tensor([[[1., 1.],
         [1., 1.],
         [1., 1.]],

        [[1., 1.],
         [1., 1.],
         [1., 1.]],

        [[1., 1.],
         [1., 1.],
         [1., 1.]]])


相關用法


注:本文由純淨天空篩選整理自sanskar27jain大神的英文原創作品 Python Pytorch ones() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。