本文簡要介紹python語言中 torch.range
的用法。
用法:
torch.range(start=0, end, step=1, *, out=None, dtype=None, layout=torch.strided, device=None, requires_grad=False) → Tensor
out(Tensor,可選的) -輸出張量。
dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。默認值:如果None
,使用全局默認值(參見torch.set_default_tensor_type()
)。如果未給出dtype
,則從其他輸入參數推斷數據類型。如果start
、end
或stop
中的任何一個是浮點數,則dtype
被推斷為默認 dtype,請參閱get_default_dtype()
。否則,dtype
被推斷為torch.int64
。layout(
torch.layout
, 可選的) -返回張量的所需布局。默認值:torch.strided
。device(
torch.device
, 可選的) -返回張量的所需設備。默認值:如果None
,使用當前設備作為默認張量類型(參見torch.set_default_tensor_type()
)。device
將是 CPU 張量類型的 CPU 和 CUDA 張量類型的當前 CUDA 設備。requires_grad(bool,可選的) -如果 autograd 應該在返回的張量上記錄操作。默認值:
False
。
返回大小為
start
到end
,步驟為step
。步長是張量中兩個值之間的差距。 的一維張量,其值從警告
此函數已棄用,並將在未來的版本中刪除,因為它的行為與 Python 的內置範圍不一致。相反,請使用
torch.arange()
,它會在 [start, end) 中生成值。例子:
>>> torch.range(1, 4) tensor([ 1., 2., 3., 4.]) >>> torch.range(1, 4, 0.5) tensor([ 1.0000, 1.5000, 2.0000, 2.5000, 3.0000, 3.5000, 4.0000])
參數:
關鍵字參數:
相關用法
- Python PyTorch rand_split_train_val用法及代碼示例
- Python PyTorch randn用法及代碼示例
- Python PyTorch random_split用法及代碼示例
- Python PyTorch random_structured用法及代碼示例
- Python PyTorch rand用法及代碼示例
- Python PyTorch randperm用法及代碼示例
- Python PyTorch randint用法及代碼示例
- Python PyTorch random_unstructured用法及代碼示例
- Python PyTorch rad2deg用法及代碼示例
- Python PyTorch ravel用法及代碼示例
- Python PyTorch renorm用法及代碼示例
- Python PyTorch rpc_sync用法及代碼示例
- Python PyTorch reshape用法及代碼示例
- Python PyTorch real用法及代碼示例
- Python PyTorch rsqrt用法及代碼示例
- Python PyTorch rfftn用法及代碼示例
- Python PyTorch rpc_async用法及代碼示例
- Python PyTorch repeat_interleave用法及代碼示例
- Python PyTorch remove用法及代碼示例
- Python PyTorch read_vec_flt_ark用法及代碼示例
- Python PyTorch rfft用法及代碼示例
- Python PyTorch register_kl用法及代碼示例
- Python PyTorch read_vec_int_ark用法及代碼示例
- Python PyTorch round用法及代碼示例
- Python PyTorch resolve_neg用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.range。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。