[ 仅 API 调用方式不一致 ]torch.Tensor.is_inference

torch.Tensor.is_inference

torch.Tensor.is_inference()

paddle.Tensor.stop_gradient

paddle.Tensor.stop_gradient

两者功能一致,但调用方式不一致,具体如下:

转写示例

# PyTorch 写法
result = x.is_inference()

# Paddle 写法
result = x.stop_gradient