本文簡要介紹python語言中 torch.cholesky_solve
的用法。
用法:
torch.cholesky_solve(input, input2, upper=False, *, out=None) → Tensor
out(Tensor,可選的) -
c
的輸出張量在給定 Cholesky 因子矩陣 的情況下,求解具有要反轉的半正定矩陣的線性方程組。
如果
upper
是False
,則 是下三角形並且返回c
使得:如果
upper
是True
或未提供,則 是上三角函數並返回c
,這樣:torch.cholesky_solve(b, u)
可以接受 2D 輸入b, u
或作為 2D 矩陣批次的輸入。如果輸入是批處理,則返回批處理輸出c
支持實值和complex-valued 輸入。對於complex-valued 輸入,上麵的轉置運算符是共軛轉置。
例子:
>>> a = torch.randn(3, 3) >>> a = torch.mm(a, a.t()) # make symmetric positive definite >>> u = torch.cholesky(a) >>> a tensor([[ 0.7747, -1.9549, 1.3086], [-1.9549, 6.7546, -5.4114], [ 1.3086, -5.4114, 4.8733]]) >>> b = torch.randn(3, 2) >>> b tensor([[-0.6355, 0.9891], [ 0.1974, 1.4706], [-0.4115, -0.6225]]) >>> torch.cholesky_solve(b, u) tensor([[ -8.1625, 19.6097], [ -5.8398, 14.2387], [ -4.3771, 10.4173]]) >>> torch.mm(a.inverse(), b) tensor([[ -8.1626, 19.6097], [ -5.8398, 14.2387], [ -4.3771, 10.4173]])
參數:
關鍵字參數:
相關用法
- Python PyTorch cholesky_ex用法及代碼示例
- Python PyTorch cholesky_inverse用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
- Python PyTorch chunk用法及代碼示例
- Python PyTorch chain_matmul用法及代碼示例
- Python PyTorch checkpoint_sequential用法及代碼示例
- Python PyTorch column_stack用法及代碼示例
- Python PyTorch cumprod用法及代碼示例
- Python PyTorch calculate_gain用法及代碼示例
- Python PyTorch cov用法及代碼示例
- Python PyTorch cos用法及代碼示例
- Python PyTorch compute_deltas用法及代碼示例
- Python PyTorch conv_transpose3d用法及代碼示例
- Python PyTorch combinations用法及代碼示例
- Python PyTorch conv2d用法及代碼示例
- Python PyTorch cummax用法及代碼示例
- Python PyTorch custom_from_mask用法及代碼示例
- Python PyTorch collect_all用法及代碼示例
- Python PyTorch convert用法及代碼示例
- Python PyTorch conv1d用法及代碼示例
- Python PyTorch cat用法及代碼示例
- Python PyTorch constant_用法及代碼示例
- Python PyTorch context用法及代碼示例
- Python PyTorch count_nonzero用法及代碼示例
- Python PyTorch cdist用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.cholesky_solve。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。