torch.rad2deg
- torch.rad2deg(input, *, out=None) → Tensor
-
返回一个新的张量,将
input
中的每个元素从弧度转换为度数。示例:
>>> a = torch.tensor([[3.142, -3.142], [6.283, -6.283], [1.570, -1.570]]) >>> torch.rad2deg(a) tensor([[ 180.0233, -180.0233], [ 359.9894, -359.9894], [ 89.9544, -89.9544]])