本文簡要介紹python語言中 torch.special.gammaincc
的用法。
用法:
torch.special.gammaincc(input, other, *, out=None) → Tensor
計算正則化的上不完全 gamma 函數:
其中 和 都是弱陽性,並且至少有一個是嚴格陽性。如果兩者都為零或其中一個為負,則 。上式中的 是伽馬函數,
相關函數請參見
torch.special.gammainc()
和torch.special.gammaln()
。支持廣播到通用形狀和浮點輸入。
注意
尚不支持相對於
input
的反向傳遞。請在 PyTorch 的 Github 上打開一個問題來請求它。例子:
>>> a1 = torch.tensor([4.0]) >>> a2 = torch.tensor([3.0, 4.0, 5.0]) >>> a = torch.special.gammaincc(a1, a2) tensor([0.6472, 0.4335, 0.2650]) >>> b = torch.special.gammainc(a1, a2) + torch.special.gammaincc(a1, a2) tensor([1., 1., 1.])
相關用法
- Python PyTorch gammainc用法及代碼示例
- Python PyTorch gammaln用法及代碼示例
- Python PyTorch gather用法及代碼示例
- Python PyTorch gather_object用法及代碼示例
- Python PyTorch gumbel_softmax用法及代碼示例
- Python PyTorch get_tokenizer用法及代碼示例
- Python PyTorch gradient用法及代碼示例
- Python PyTorch global_unstructured用法及代碼示例
- Python PyTorch greedy_partition用法及代碼示例
- Python PyTorch get_gradients用法及代碼示例
- Python PyTorch get_ignored_functions用法及代碼示例
- Python PyTorch get_default_dtype用法及代碼示例
- Python PyTorch gt用法及代碼示例
- Python PyTorch gcd用法及代碼示例
- Python PyTorch get_graph_node_names用法及代碼示例
- Python PyTorch get_testing_overrides用法及代碼示例
- Python PyTorch generate_sp_model用法及代碼示例
- Python PyTorch ge用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
- Python PyTorch vdot用法及代碼示例
- Python PyTorch ELU用法及代碼示例
- Python PyTorch ScaledDotProduct.__init__用法及代碼示例
- Python PyTorch saved_tensors_hooks用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.special.gammaincc。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。