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


Python PyTorch linspace用法及代碼示例


本文簡要介紹python語言中 torch.linspace 的用法。

用法:

torch.linspace(start, end, steps, *, out=None, dtype=None, layout=torch.strided, device=None, requires_grad=False) → Tensor

參數

  • start(float) -點集的起始值

  • end(float) -點集的結束值

  • steps(int) -構造張量的大小

關鍵字參數

  • out(Tensor,可選的) -輸出張量。

  • dtype(torch.dpython:類型,可選的) -執行計算的數據類型。默認值:如果為無,當 startend 都是實數時使用全局默認 dtype(參見 torch.get_default_dtype()),並且當兩者都是複數時使用相應的複數 dtype。

  • layout(torch.layout, 可選的) -返回張量的所需布局。默認值:torch.strided

  • device(torch.device, 可選的) -返回張量的所需設備。默認值:如果 None ,使用當前設備作為默認張量類型(參見 torch.set_default_tensor_type() )。 device 將是 CPU 張量類型的 CPU 和 CUDA 張量類型的當前 CUDA 設備。

  • requires_grad(bool,可選的) -如果 autograd 應該在返回的張量上記錄操作。默認值:False

創建一個大小為 steps 的一維張量,其值從 startend (含)均勻分布。也就是說,值為:

警告

不建議為steps 提供值。為了向後兼容,不提供 steps 的值將創建一個具有 100 個元素的張量。請注意,此行為未反映在記錄的函數簽名中,不應依賴。在未來的PyTorch 版本中,未能為steps 提供值將引發運行時錯誤。

例子:

>>> torch.linspace(3, 10, steps=5)
tensor([  3.0000,   4.7500,   6.5000,   8.2500,  10.0000])
>>> torch.linspace(-10, 10, steps=5)
tensor([-10.,  -5.,   0.,   5.,  10.])
>>> torch.linspace(start=-10, end=10, steps=5)
tensor([-10.,  -5.,   0.,   5.,  10.])
>>> torch.linspace(start=-10, end=10, steps=1)
tensor([-10.])

相關用法


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