torch.Tensor.expm1_()
paddle.expm1_(x, name=None)
两者功能一致,但调用方式不一致,具体如下:
# PyTorch 写法 a.expm1_() # Paddle 写法 paddle.expm1_(a)