本文簡要介紹python語言中 torch.tril_indices
的用法。
用法:
torch.tril_indices(row, col, offset=0, *, dtype=torch.long, device='cpu', layout=torch.strided) → Tensor
row(
int
) -二維矩陣中的行數。col(
int
) -二維矩陣中的列數。offset(
int
) -與主對角線的對角線偏移。默認值:如果未提供,則為 0。
dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。默認值:如果None
,torch.long
。device(
torch.device
, 可選的) -返回張量的所需設備。默認值:如果None
,使用當前設備作為默認張量類型(參見torch.set_default_tensor_type()
)。device
將是 CPU 張量類型的 CPU 和 CUDA 張量類型的當前 CUDA 設備。layout(
torch.layout
, 可選的) -目前僅支持torch.strided
。
返回 2-by-N 張量中
row
-by-col
矩陣的下三角部分的索引,其中第一行包含所有索引的行坐標,第二行包含列坐標。索引先按行排序,然後按列排序。矩陣的下三角部分定義為對角線上和下的元素。
參數
offset
控製要考慮的對角線。如果offset
= 0,則保留主對角線上下的所有元素。正值包括與主對角線相同數量的對角線,同樣,負值排除與主對角線下方相同數量的對角線。主對角線是 的索引集 ,其中 是矩陣的維度。注意
在CUDA上運行時,
row * col
必須小於 ,以防止計算時溢出。例子:
>>> a = torch.tril_indices(3, 3) >>> a tensor([[0, 1, 1, 2, 2, 2], [0, 0, 1, 0, 1, 2]]) >>> a = torch.tril_indices(4, 3, -1) >>> a tensor([[1, 2, 2, 3, 3, 3], [0, 0, 1, 0, 1, 2]]) >>> a = torch.tril_indices(4, 3, 1) >>> a tensor([[0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3], [0, 1, 0, 1, 2, 0, 1, 2, 0, 1, 2]])
參數:
關鍵字參數:
相關用法
- Python PyTorch tril用法及代碼示例
- Python PyTorch triu_indices用法及代碼示例
- Python PyTorch triangular_solve用法及代碼示例
- Python PyTorch triu用法及代碼示例
- Python PyTorch trunc用法及代碼示例
- Python PyTorch trace_module用法及代碼示例
- Python PyTorch transpose用法及代碼示例
- Python PyTorch trapezoid用法及代碼示例
- Python PyTorch trace用法及代碼示例
- Python PyTorch tensorinv用法及代碼示例
- Python PyTorch tensor用法及代碼示例
- Python PyTorch to_map_style_dataset用法及代碼示例
- Python PyTorch topk用法及代碼示例
- Python PyTorch tensorsolve用法及代碼示例
- Python PyTorch tile用法及代碼示例
- Python PyTorch tanh用法及代碼示例
- Python PyTorch take_along_dim用法及代碼示例
- Python PyTorch tensor_split用法及代碼示例
- Python PyTorch t用法及代碼示例
- Python PyTorch take用法及代碼示例
- Python PyTorch tensordot用法及代碼示例
- Python PyTorch tan用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.tril_indices。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。