torch.ne(input, other, *, out=None)
paddle.not_equal(x, y, name=None)
PyTorch 相比 Paddle 支持更多其他参数,具体如下:
# PyTorch 写法 torch.ne(input, other,out=y) # Paddle 写法 paddle.assign(paddle.ne(input, other, y))