[ 仅 paddle 参数更多 ]torch.Tensor.fliplr¶
torch.Tensor.fliplr¶
torch.Tensor.fliplr()
参数映射¶
PyTorch | PaddlePaddle | 备注 |
---|---|---|
- | axis | 指定进行翻转的轴,PyTorch 无此参数,Paddle 中可以指定 axis=1 来对应 PyTorch。 |
转写示例¶
# torch 版本直接向左/右翻转张量
torch_x = torch.randn(3, 4)
torch_x.fliplr()
# paddle 版本直接向左/右翻转张量
paddle_x = paddle.randn([3, 4])
paddle_x.flip(axis=1)