torch.rad2deg¶ torch.rad2deg(input, *, out=None) → Tensor¶ 返回一个新张量,其中 input 的每个元素都从弧度角转换为度数角。 参数 input (Tensor) – 输入张量。 关键字参数 out (Tensor, 可选) – 输出张量。 示例 >>> 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]])