本文简要介绍python语言中 torch.gt
的用法。
用法:
torch.gt(input, other, *, out=None) → Tensor
out(Tensor,可选的) -输出张量。
一个布尔张量,在
input
大于other
时为 True,在其他地方为 False按元素计算 。
第二个参数可以是一个数字或张量,其形状可与第一个参数一起广播。
例子:
>>> torch.gt(torch.tensor([[1, 2], [3, 4]]), torch.tensor([[1, 1], [4, 4]])) tensor([[False, True], [False, False]])
参数:
关键字参数:
返回:
相关用法
- Python PyTorch gumbel_softmax用法及代码示例
- Python PyTorch get_tokenizer用法及代码示例
- Python PyTorch gammainc用法及代码示例
- Python PyTorch gradient用法及代码示例
- Python PyTorch gammaincc用法及代码示例
- Python PyTorch global_unstructured用法及代码示例
- Python PyTorch greedy_partition用法及代码示例
- Python PyTorch gammaln用法及代码示例
- Python PyTorch get_gradients用法及代码示例
- Python PyTorch get_ignored_functions用法及代码示例
- Python PyTorch get_default_dtype用法及代码示例
- Python PyTorch gather用法及代码示例
- Python PyTorch gcd用法及代码示例
- Python PyTorch get_graph_node_names用法及代码示例
- Python PyTorch get_testing_overrides用法及代码示例
- Python PyTorch generate_sp_model用法及代码示例
- Python PyTorch gather_object用法及代码示例
- 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.gt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。