当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PyTorch nextafter用法及代码示例


本文简要介绍python语言中 torch.nextafter 的用法。

用法:

torch.nextafter(input, other, *, out=None) → Tensor

参数

  • input(Tensor) -第一个输入张量

  • other(Tensor) -第二个输入张量

关键字参数

out(Tensor,可选的) -输出张量。

input 之后的下一个浮点值返回到 other ,逐元素。

inputother 的形状必须是可广播的。

例子:

>>> eps = torch.finfo(torch.float32).eps
>>> torch.nextafter(torch.tensor([1.0, 2.0]), torch.tensor([2.0, 1.0])) == torch.tensor([eps + 1, 2 - eps])
tensor([True, True])

相关用法


注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.nextafter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。