diff --git a/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.special.sinc.md b/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.special.sinc.md deleted file mode 100644 index e92ceb49045..00000000000 --- a/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.special.sinc.md +++ /dev/null @@ -1,20 +0,0 @@ -## [ 组合替代实现 ]torch.special.sinc - -### [torch.special.sinc](https://docs.pytorch.org/docs/stable/special.html#torch.special.sinc) - -```python -torch.special.sinc(input, *, out=None) -``` - -Paddle 无此 API,需要组合实现。 - -### 转写示例 - -```python -# PyTorch 写法 -y = torch.sinc(a) - -# Paddle 写法 -import numpy -y = paddle.where(a==0, x=paddle.to_tensor([1], dtype=a.dtype), y=paddle.sin(numpy.pi*a)/(numpy.pi*a)) -``` diff --git a/docs/guides/model_convert/convert_from_pytorch/pytorch_api_mapping_cn.md b/docs/guides/model_convert/convert_from_pytorch/pytorch_api_mapping_cn.md index 1531e231f91..fad1507fb8c 100644 --- a/docs/guides/model_convert/convert_from_pytorch/pytorch_api_mapping_cn.md +++ b/docs/guides/model_convert/convert_from_pytorch/pytorch_api_mapping_cn.md @@ -10,7 +10,7 @@ | 序号 | 类别 | 简介 | | ---- | ---- | ---- | -| 1 |API 完全一致|此类 API 功能和使用方法一致,此类 API 无需转换,只需要 ``import paddle as torch``,或者将前缀 ``torch.``替换为 ``paddle.``即可。| +| 1 |API 完全一致|此类 API 使用方式完全一致,无需转换,只需在文件最上方插入一行 `import paddle as torch` 即可。(或者也可将代码里所有前缀 `torch.` 替换为 `paddle.`)| | 2 |仅 API 调用方式不一致|参数一致,但 API 调用方式不一致。此类 API 需要转换,但转换成本较低,只需要对 API 调用方式进行改写,无需处理 API 参数部分。包括:API 名称不同、API 路径不同、Tensor 类方法改成普通方法、Tensor 方法改成属性、Tensor 属性改成方法 等情况。| | 3 |仅参数名不一致|此类 API 功能相同,但部分参数名称不同| | 4 |paddle 参数更多|此类 API 在 PaddlePaddle 中提供了更多可选参数| @@ -26,7 +26,7 @@ ## 1. API 完全一致 **分类简介** -此类 API 功能和使用方法一致,此类 API 无需转换,只需要 ``import paddle as torch``,或者将前缀 ``torch.``替换为 ``paddle.``即可。 +此类 API 使用方式完全一致,无需转换,只需在文件最上方插入一行 `import paddle as torch` 即可。(或者也可将代码里所有前缀 `torch.` 替换为 `paddle.`) **转写示例** ```python @@ -96,397 +96,415 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) | 51 | [torch.view_as_real](https://pytorch.org/docs/stable/generated/torch.view_as_real.html?highlight=view_as_real#torch.view_as_real) | paddle.view_as_real | - | | 52 | [torch.view_as_complex](https://pytorch.org/docs/stable/generated/torch.view_as_complex.html?highlight=view_as_complex#torch.view_as_complex) | paddle.view_as_complex | - | | 53 | [torch.ger](https://pytorch.org/docs/stable/generated/torch.ger.html?highlight=ger#torch.ger) | paddle.ger | - | -| 54 | [torch.Tensor.mul_](https://pytorch.org/docs/stable/generated/torch.Tensor.mul_.html) | paddle.Tensor.mul_ | - | -| 55 | [torch.Tensor.swapaxes](https://pytorch.org/docs/stable/generated/torch.Tensor.swapaxes.html#torch.Tensor.swapaxes) | paddle.Tensor.swapaxes | - | -| 56 | [torch.Tensor.swapdims](https://pytorch.org/docs/stable/generated/torch.Tensor.swapdims.html#torch.Tensor.swapdims) | paddle.Tensor.swapdims | - | -| 57 | [torch.autograd.Function](https://pytorch.org/docs/stable/autograd.html#torch.autograd.Function) | paddle.autograd.Function | - | -| 58 | [torch.take_along_dim](https://pytorch.org/docs/stable/generated/torch.take_along_dim.html?highlight=torch+take_along_dim#torch.take_along_dim) | paddle.take_along_dim | - | -| 59 | [torch.Tensor.take_along_dim](https://pytorch.org/docs/stable/generated/torch.Tensor.take_along_dim.html?highlight=torch+tensor+take_along_dim#torch.Tensor.take_along_dim) | paddle.Tensor.take_along_dim | - | -| 60 | [torch.special.logsumexp](https://pytorch.org/docs/stable/special.html#torch.special.logsumexp) | paddle.special.logsumexp | - | -| 61 | [torch.argwhere](https://pytorch.org/docs/stable/generated/torch.argwhere.html#torch.argwhere) | paddle.argwhere | - | -| 62 | torch.concatenate | paddle.concatenate | - | -| 63 | torch.is_autocast_enabled | paddle.is_autocast_enabled | - | -| 64 | torch.get_autocast_gpu_dtype | paddle.get_autocast_gpu_dtype | - | -| 65 | [torch.cumsum](https://pytorch.org/docs/stable/generated/torch.cumsum.html?highlight=cumsum#torch.cumsum) | [paddle.cumsum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cumsum_cn.html#cumsum) | - | -| 66 | [torch.diff](https://pytorch.org/docs/stable/generated/torch.diff.html?highlight=diff#torch.diff) | [paddle.diff](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diff_cn.html#diff) | - | -| 67 | [torch.nn.functional.dropout1d](https://pytorch.org/docs/stable/generated/torch.nn.functional.dropout1d.html#torch.nn.functional.dropout1d) | paddle.nn.functional.dropout1d | - | -| 68 | [torch.nn.parameter.Parameter](https://pytorch.org/docs/stable/generated/torch.nn.parameter.Parameter.html?highlight=torch%20nn%20parameter#torch.nn.parameter.Parameter) | paddle.nn.parameter.Parameter | - | -| 69 | [torch.add](https://pytorch.org/docs/stable/generated/torch.add.html?highlight=add#torch.add) | [paddle.add](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/add_cn.html#add) | - | -| 70 | [torch.div](https://pytorch.org/docs/stable/generated/torch.div.html#torch.div) | paddle.div | - | -| 71 | torch.divide | [paddle.divide](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/divide_cn.html) | - | -| 72 | [torch.true_divide](https://pytorch.org/docs/stable/generated/torch.true_divide.html) | paddle.true_divide | - | -| 73 | [torch.Tensor.add](https://pytorch.org/docs/stable/generated/torch.Tensor.add.html#torch.Tensor.add) | [paddle.Tensor.add](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#add-y-name-none) | - | -| 74 | [torch.Tensor.add_](https://pytorch.org/docs/stable/generated/torch.Tensor.add_.html#torch.Tensor.add_) | [paddle.Tensor.add_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id3) | - | -| 75 | [torch.Tensor.div](https://pytorch.org/docs/stable/generated/torch.Tensor.div.html#torch.Tensor.div) | paddle.Tensor.div | - | -| 76 | [torch.Tensor.div_](https://pytorch.org/docs/stable/generated/torch.Tensor.div_.html) | paddle.Tensor.div_ | - | -| 77 | torch.Tensor.divide | [paddle.Tensor.divide](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#divide-y-name-none) | - | -| 78 | torch.Tensor.divide_ | paddle.Tensor.divide_ | - | -| 79 | [torch.Tensor.true_divide](https://pytorch.org/docs/stable/generated/torch.Tensor.true_divide.html#torch.Tensor.true_divide) | paddle.Tensor.true_divide | - | -| 80 | [torch.range](https://pytorch.org/docs/stable/generated/torch.range.html?highlight=range#torch.range) | paddle.range | - | -| 81 | [torch.arange](https://pytorch.org/docs/stable/generated/torch.arange.html?highlight=arange#torch.arange) | [paddle.arange](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/arange_cn.html) | - | -| 82 | [torch.randn](https://pytorch.org/docs/stable/generated/torch.randn.html?highlight=randn#torch.randn) | [paddle.randn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randn_cn.html#randn) | - | -| 83 | [torch.zeros](https://pytorch.org/docs/stable/generated/torch.zeros.html?highlight=zeros#torch.zeros) | [paddle.zeros](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/zeros_cn.html) | - | -| 84 | [torch.ones](https://pytorch.org/docs/stable/generated/torch.ones.html?highlight=ones#torch.ones) | [paddle.ones](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/ones_cn.html) | - | -| 85 | [torch.full](https://pytorch.org/docs/stable/generated/torch.full.html?highlight=ful#torch.full) | [paddle.full](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/full_cn.html) | - | -| 86 | [torch.empty](https://pytorch.org/docs/stable/generated/torch.empty.html?highlight=empty#torch.empty) | [paddle.empty](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/empty_cn.html) | - | -| 87 | [torch.zeros_like](https://pytorch.org/docs/stable/generated/torch.zeros_like.html?highlight=zeros_like#torch.zeros_like) | [paddle.zeros_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/zeros_like_cn.html) | - | -| 88 | [torch.ones_like](https://pytorch.org/docs/stable/generated/torch.ones_like.html?highlight=ones_like#torch.ones_like) | [paddle.ones_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/ones_like_cn.html) | - | -| 89 | [torch.full_like](https://pytorch.org/docs/stable/generated/torch.full_like.html?highlight=full_like#torch.full_like) | [paddle.full_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/full_like_cn.html#full-like) | - | -| 90 | [torch.empty_like](https://pytorch.org/docs/stable/generated/torch.empty_like.html?highlight=empty_like#torch.empty_like) | [paddle.empty_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/empty_like_cn.html) | - | -| 91 | [torch.Tensor.new_zeros](https://pytorch.org/docs/stable/generated/torch.Tensor.new_zeros.html#torch-tensor-new-zeros) | paddle.Tensor.new_zeros | - | -| 92 | [torch.Tensor.new_ones](https://pytorch.org/docs/stable/generated/torch.Tensor.new_ones.html#torch-tensor-new-ones) | paddle.Tensor.new_ones | - | -| 93 | [torch.Tensor.new_full](https://pytorch.org/docs/stable/generated/torch.Tensor.new_full.html#torch-tensor-new-full) | paddle.Tensor.new_full | - | -| 94 | [torch.Tensor.new_empty](https://pytorch.org/docs/stable/generated/torch.Tensor.new_empty.html#torch-tensor-new-empty) | paddle.Tensor.new_empty | - | -| 95 | [torch.eye](https://pytorch.org/docs/stable/generated/torch.eye.html?highlight=eye#torch.eye) | [paddle.eye](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/eye_cn.html) | - | -| 96 | [torch.permute](https://pytorch.org/docs/stable/generated/torch.permute.html?highlight=permute#torch.permute) | paddle.permute | - | -| 97 | [torch.Tensor.permute](https://pytorch.org/docs/stable/generated/torch.Tensor.permute.html) | paddle.Tensor.permute | - | -| 98 | [torch.repeat_interleave](https://pytorch.org/docs/stable/generated/torch.repeat_interleave.html#torch-repeat-interleave) | [paddle.repeat_interleave](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/repeat_interleave_cn.html#repeat-interleave) | - | -| 99 | [torch.Tensor.repeat_interleave](https://pytorch.org/docs/stable/generated/torch.Tensor.repeat_interleave.html#torch.Tensor.repeat_interleave) | [paddle.Tensor.repeat_interleave](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#repeat-interleave-repeats-axis-none-name-none) | - | -| 100 | [torch.Tensor.repeat](https://pytorch.org/docs/stable/generated/torch.Tensor.repeat.html) | paddle.Tensor.repeat | - | -| 101 | [torch.maximum](https://pytorch.org/docs/stable/generated/torch.maximum.html#torch.maximum) | [paddle.maximum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/maximum_cn.html) | - | -| 102 | [torch.minimum](https://pytorch.org/docs/stable/generated/torch.minimum.html#torch.minimum) | [paddle.minimum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/minimum_cn.html) | - | -| 103 | [torch.topk](https://pytorch.org/docs/stable/generated/torch.topk.html?highlight=topk#torch.topk) | [paddle.topk](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/topk_cn.html#paddle.topk) | - | -| 104 | [torch.sqrt](https://pytorch.org/docs/stable/generated/torch.sqrt.html?highlight=sqrt#torch.sqrt) | [paddle.sqrt](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sqrt_cn.html#sqrt) | - | -| 105 | [torch.amin](https://pytorch.org/docs/stable/generated/torch.amin.html) | [paddle.amin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amin_cn.html#amin) | - | -| 106 | [torch.amax](https://pytorch.org/docs/stable/generated/torch.amax.html) | [paddle.amax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amax_cn.html#amax) | - | -| 107 | [torch.as_tensor](https://pytorch.org/docs/stable/generated/torch.as_tensor.html#torch.as_tensor) | paddle.as_tensor | - | -| 108 | [torch.tensor](https://pytorch.org/docs/stable/generated/torch.tensor.html?highlight=tensor#torch.tensor) | paddle.tensor | - | -| 109 | [torch.Tensor.copy_](https://pytorch.org/docs/stable/generated/torch.Tensor.copy_.html#torch.Tensor.copy_) | paddle.Tensor.copy_ | - | -| 110 | [torch.Tensor.norm](https://pytorch.org/docs/stable/generated/torch.Tensor.norm.html#torch.Tensor.norm) | [paddle.Tensor.norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#norm-p-fro-axis-none-keepdim-false-name-none) | - | -| 111 | [torch.Tensor](https://pytorch.org/docs/stable/tensors.html) | paddle.Tensor | - | -| 112 | [torch.FloatTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.FloatTensor | - | -| 113 | [torch.DoubleTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.DoubleTensor | - | -| 114 | [torch.HalfTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.HalfTensor | - | -| 115 | torch.BFloat16Tensor | paddle.BFloat16Tensor | - | -| 116 | [torch.ByteTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.ByteTensor | - | -| 117 | torch.CharTensor | paddle.CharTensor | - | -| 118 | [torch.ShortTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.ShortTensor | - | -| 119 | [torch.IntTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.IntTensor | - | -| 120 | [torch.LongTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.LongTensor | - | -| 121 | [torch.BoolTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.BoolTensor | - | -| 122 | [torch.norm](https://pytorch.org/docs/stable/generated/torch.norm.html) | paddle.norm | - | -| 123 | [torch.linalg.norm](https://pytorch.org/docs/stable/generated/torch.linalg.norm.html#torch.linalg.norm) | [paddle.linalg.norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/norm_cn.html#norm) | - | -| 124 | [torch.multinomial](https://pytorch.org/docs/stable/generated/torch.multinomial.html#torch.multinomial) | [paddle.multinomial](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/multinomial_cn.html) | - | -| 125 | [torch.var](https://pytorch.org/docs/stable/generated/torch.var.html) | [paddle.var](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/var_cn.html#var) | - | -| 126 | [torch.rand_like](https://pytorch.org/docs/stable/generated/torch.rand_like.html#torch.rand_like) | paddle.rand_like | - | -| 127 | [torch.mean](https://pytorch.org/docs/stable/generated/torch.mean.html) | [paddle.mean](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/mean_cn.html#mean) | - | -| 128 | [torch.Tensor.mean](https://pytorch.org/docs/stable/generated/torch.Tensor.mean.html) | [paddle.Tensor.mean](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mean-axis-none-keepdim-false-name-none) | - | -| 129 | [torch.msort](https://pytorch.org/docs/stable/generated/torch.msort.html#torch.msort) | paddle.msort | - | -| 130 | [torch.Tensor.msort](https://pytorch.org/docs/stable/generated/torch.Tensor.msort.html#torch.Tensor.msort) | paddle.Tensor.msort | - | -| 131 | [torch.Tensor.ravel](https://pytorch.org/docs/stable/generated/torch.Tensor.ravel.html#torch.Tensor.ravel) | paddle.Tensor.ravel | - | -| 132 | [torch.ravel](https://pytorch.org/docs/stable/generated/torch.ravel.html?highlight=ravel#torch.ravel) | paddle.ravel | - | -| 133 | [torch.Tensor.scatter_add](https://pytorch.org/docs/stable/generated/torch.Tensor.scatter_add.html#torch.Tensor.scatter_add) | paddle.Tensor.scatter_add | - | -| 134 | [torch.scatter_add](https://pytorch.org/docs/stable/generated/torch.scatter_add.html#torch.scatter_add) | paddle.scatter_add | - | -| 135 | [torch.Tensor.scatter_add_](https://pytorch.org/docs/stable/generated/torch.Tensor.scatter_add_.html#torch.Tensor.scatter_add_) | paddle.Tensor.scatter_add_ | - | -| 136 | [torch.Tensor.tril](https://pytorch.org/docs/stable/generated/torch.Tensor.tril.html#torch.Tensor.tril) | paddle.Tensor.tril | - | -| 137 | [torch.tril](https://pytorch.org/docs/stable/generated/torch.tril.html?highlight=tril#torch.tril) | [paddle.tril](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tril_cn.html) | - | -| 138 | [torch.Tensor.triu](https://pytorch.org/docs/stable/generated/torch.Tensor.triu.html#torch.Tensor.triu) | paddle.Tensor.triu | - | -| 139 | [torch.triu](https://pytorch.org/docs/stable/generated/torch.triu.html?highlight=triu#torch.triu) | [paddle.triu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/triu_cn.html) | - | -| 140 | [torch.bmm](https://pytorch.org/docs/stable/generated/torch.bmm.html?highlight=bmm#torch.bmm) | [paddle.bmm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bmm_cn.html) | - | -| 141 | [torch.Tensor.bmm](https://pytorch.org/docs/stable/generated/torch.Tensor.bmm.html) | [paddle.Tensor.bmm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#bmm-y-name-none) | - | -| 142 | [torch.nn.GELU](https://pytorch.org/docs/stable/generated/torch.nn.GELU.html#torch.nn.GELU) | [paddle.nn.GELU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/GELU_cn.html) | - | -| 143 | [torch.broadcast_shapes](https://pytorch.org/docs/stable/generated/torch.broadcast_shapes.html#torch.broadcast_shapes) | paddle.broadcast_shapes | - | -| 144 | [torch.Tensor.scatter_reduce](https://pytorch.org/docs/stable/generated/torch.Tensor.scatter_reduce.html#torch-tensor-scatter-reduce) | paddle.Tensor.scatter_reduce | - | -| 145 | [torch.scatter_reduce](https://pytorch.org/docs/stable/generated/torch.scatter_reduce.html#torch-scatter-reduce) | paddle.scatter_reduce | - | -| 146 | [torch.nn.functional.silu](https://pytorch.org/docs/stable/generated/torch.nn.functional.silu.html) | [paddle.nn.functional.silu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/silu_cn.html#silu) | - | -| 147 | [torch.Tensor.softmax](https://pytorch.org/docs/stable/generated/torch.Tensor.softmax.html?highlight=softmax#torch.Tensor.softmax) | paddle.Tensor.softmax | - | -| 148 | [torch.special.softmax](https://pytorch.org/docs/stable/special.html#torch.special.softmax) | paddle.special.softmax | - | -| 149 | [torch.softmax](https://pytorch.org/docs/stable/generated/torch.softmax.html) | paddle.softmax | - | -| 150 | [torch.Tensor.clamp](https://pytorch.org/docs/stable/generated/torch.Tensor.clamp.html?highlight=clamp#torch.Tensor.clamp) | paddle.Tensor.clamp | - | -| 151 | [torch.Tensor.itemsize](https://pytorch.org/docs/stable/generated/torch.Tensor.itemsize.html) | paddle.Tensor.itemsize | - | -| 152 | [torch.get_default_dtype](https://pytorch.org/docs/stable/generated/torch.get_default_dtype.html#torch-get-default-dtype) | [paddle.get_default_dtype](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/get_default_dtype_cn.html#get-default-dtype) | - | -| 153 | [torch.einsum](https://pytorch.org/docs/stable/generated/torch.einsum.html#torch.einsum) | [paddle.einsum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/einsum_cn.html) | - | -| 154 | [torch.nn.Identity](https://pytorch.org/docs/stable/generated/torch.nn.Identity.html#identity) | [paddle.nn.Identity](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Identity_cn.html#cn-api-paddle-nn-layer-common-identity) | - | -| 155 | [torch.Tensor.ndim](https://pytorch.org/docs/stable/generated/torch.Tensor.ndim.html) | [paddle.Tensor.ndim](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#ndim) | - | -| 156 | [torch.Tensor.T](https://pytorch.org/docs/stable/tensors.html#torch.Tensor.T) | [paddle.Tensor.T](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | - | -| 157 | [torch.Tensor.abs](https://pytorch.org/docs/stable/generated/torch.Tensor.abs.html#torch.Tensor.abs) | [paddle.Tensor.abs](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#abs-name-none) | - | -| 158 | [torch.Tensor.cos](https://pytorch.org/docs/stable/generated/torch.Tensor.cos.html?highlight=cos#torch.Tensor.cos) | [paddle.Tensor.cos](paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#cos-name-none) | - | -| 159 | [torch.Tensor.detach](https://pytorch.org/docs/stable/generated/torch.Tensor.detach.html?highlight=detach#torch.Tensor.detach) | [paddle.Tensor.detach](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#detach) | - | -| 160 | [torch.Tensor.dim](https://pytorch.org/docs/stable/generated/torch.Tensor.dim.html?highlight=dim#torch.Tensor.dim) | [paddle.Tensor.dim](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#dim) | - | -| 161 | [torch.Tensor.fill_](https://pytorch.org/docs/stable/generated/torch.Tensor.fill_.html?highlight=fill_#torch.Tensor.fill_) | [paddle.Tensor.fill_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#fill-x-value-name-none) | - | -| 162 | [torch.Tensor.isnan](https://pytorch.org/docs/stable/generated/torch.Tensor.isnan.html) | [paddle.Tensor.isnan](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isnan-name-none) | - | -| 163 | [torch.Tensor.item](https://pytorch.org/docs/stable/generated/torch.Tensor.item.html#torch-tensor-item) | [paddle.Tensor.item](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#item-args) | - | -| 164 | [torch.Tensor.log](https://pytorch.org/docs/stable/generated/torch.Tensor.log.html) | [paddle.Tensor.log](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#log-name-none) | - | -| 165 | [torch.Tensor.masked_scatter](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_scatter.html?highlight=masked_scatter#torch.Tensor.masked_scatter) | [paddle.Tensor.masked_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#masked-scatter-mask-value-name-non) | - | -| 166 | [torch.Tensor.masked_fill_](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_fill_.html?highlight=masked_fill_#torch.Tensor.masked_fill_) | paddle.Tensor.masked_fill_ | - | -| 167 | [torch.Tensor.masked_fill](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_fill.html?highlight=masked_fill#torch.Tensor.masked_fill) | [paddle.Tensor.masked_fill](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#masked-fill-mask-value-name-non) | - | -| 168 | [torch.Tensor.nonzero](https://pytorch.org/docs/stable/generated/torch.Tensor.nonzero.html?highlight=nonzero#torch.Tensor.nonzero) | [paddle.Tensor.nonzero](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#nonzero-as-tuple-false) | - | -| 169 | [torch.Tensor.normal_](https://pytorch.org/docs/stable/generated/torch.Tensor.normal_.html#torch-tensor-normal) | paddle.Tensor.normal_ | - | -| 170 | [torch.Tensor.sigmoid](https://pytorch.org/docs/stable/generated/torch.Tensor.sigmoid) | paddle.Tensor.sigmoid | - | -| 171 | [torch.Tensor.sin](https://pytorch.org/docs/stable/generated/torch.Tensor.sin) | [paddle.Tensor.sin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sin-name-none) | - | -| 172 | [torch.Tensor.square](https://pytorch.org/docs/stable/generated/torch.Tensor.square.html#torch-tensor-square) | [paddle.Tensor.square](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#square-name-none) | - | -| 173 | [torch.Tensor.tolist](https://pytorch.org/docs/stable/generated/torch.Tensor.tolist.html#torch.Tensor.tolist) | [paddle.Tensor.tolist](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tolist) | - | -| 174 | [torch.Tensor.zero_](https://pytorch.org/docs/stable/generated/torch.Tensor.zero_.html#torch.Tensor.zero_) | [paddle.Tensor.zero_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#zero-x-name-none) | - | -| 175 | [torch.distributed.get_rank](https://pytorch.org/docs/stable/distributed.html#torch.distributed.get_rank) | [paddle.distributed.get_rank](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/get_rank_cn.html) | - | -| 176 | [torch.distributed.get_world_size](https://pytorch.org/docs/stable/distributed.html#torch.distributed.get_world_size) | [paddle.distributed.get_world_size](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/get_world_size_cn.html) | - | -| 177 | [torch.Tensor.shape](https://pytorch.org/docs/stable/generated/torch.Tensor.shape.html) | [paddle.Tensor.shape](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#shape) | - | -| 178 | [torch.float32](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.float32](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L28) | - | -| 179 | torch.long | paddle.long | - | -| 180 | [torch.int32](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.int32](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L25) | - | -| 181 | [torch.bfloat16](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.bfloat16](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L31) | - | -| 182 | [torch.int64](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.int64](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L26) | - | -| 183 | [torch.bool](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.bool](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L36) | - | -| 184 | [torch.uint8](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.uint8](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L22) | - | -| 185 | [torch.Tensor.abs_](https://pytorch.org/docs/stable/generated/torch.Tensor.abs_.html) | paddle.Tensor.abs_ | - | -| 186 | [torch.Tensor.acos](https://pytorch.org/docs/stable/generated/torch.Tensor.acos.html) | paddle.Tensor.acos | - | -| 187 | [torch.Tensor.acos_](https://pytorch.org/docs/stable/generated/torch.Tensor.acos_.html) | paddle.Tensor.acos_ | - | -| 188 | [torch.Tensor.acosh](https://pytorch.org/docs/stable/generated/torch.Tensor.acosh.html?highlight=acosh#torch.Tensor.acosh) | paddle.Tensor.acosh | - | -| 189 | [torch.Tensor.acosh_](https://pytorch.org/docs/stable/generated/torch.Tensor.acosh_.html) | paddle.Tensor.acosh_ | - | -| 190 | [torch.Tensor.angle](https://pytorch.org/docs/stable/generated/torch.Tensor.angle.html) | [paddle.Tensor.angle](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#angle-name-none) | - | -| 191 | [torch.Tensor.apply_](https://pytorch.org/docs/stable/generated/torch.Tensor.apply_.html) | paddle.Tensor.apply_ | - | -| 192 | [torch.Tensor.asin](https://pytorch.org/docs/stable/generated/torch.Tensor.asin.html) | [paddle.Tensor.asin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#asin-name-none) | - | -| 193 | [torch.Tensor.asin_](https://pytorch.org/docs/stable/generated/torch.Tensor.asin_.html) | paddle.Tensor.asin_ | - | -| 194 | [torch.Tensor.asinh](https://pytorch.org/docs/stable/generated/torch.Tensor.asinh) | paddle.Tensor.asinh | - | -| 195 | [torch.Tensor.asinh_](https://pytorch.org/docs/stable/generated/torch.Tensor.asinh_) | paddle.Tensor.asinh_ | - | -| 196 | [torch.Tensor.atan](https://pytorch.org/docs/stable/generated/torch.Tensor.atan.html) | [paddle.Tensor.atan](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#atan-name-none) | - | -| 197 | [torch.Tensor.atan_](https://pytorch.org/docs/stable/generated/torch.Tensor.atan_.html) | paddle.Tensor.atan_ | - | -| 198 | [torch.Tensor.atanh](https://pytorch.org/docs/stable/generated/torch.Tensor.atanh.html#torch.Tensor.atanh) | paddle.Tensor.atanh | - | -| 199 | [torch.Tensor.atanh_](https://pytorch.org/docs/stable/generated/torch.Tensor.atanh_.html#torch.Tensor.atanh_) | paddle.Tensor.atanh_ | - | -| 200 | [torch.Tensor.bincount](https://pytorch.org/docs/stable/generated/torch.Tensor.bincount.html) | [paddle.Tensor.bincount](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#bincount-weights-none-minlength-0) | - | -| 201 | [torch.Tensor.bitwise_not](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_not.html) | paddle.Tensor.bitwise_not | - | -| 202 | [torch.Tensor.bitwise_not_](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_not_.html) | paddle.Tensor.bitwise_not_ | - | -| 203 | [torch.Tensor.ceil](https://pytorch.org/docs/stable/generated/torch.Tensor.ceil.html) | [paddle.Tensor.ceil](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#ceil-name-none) | - | -| 204 | [torch.Tensor.ceil_](https://pytorch.org/docs/stable/generated/torch.Tensor.ceil_.html) | [paddle.Tensor.ceil_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id7) | - | -| 205 | [torch.Tensor.cholesky](https://pytorch.org/docs/stable/generated/torch.Tensor.cholesky.html) | [paddle.Tensor.cholesky](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cholesky-upper-false-name-none) | - | -| 206 | [torch.Tensor.cholesky_inverse](https://pytorch.org/docs/stable/generated/torch.cholesky_inverse.html#torch.cholesky_inverse) | [paddle.Tensor.cholesky_inverse](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | - | -| 207 | [torch.Tensor.clip](https://pytorch.org/docs/stable/generated/torch.Tensor.clip.html?highlight=clip#torch.Tensor.clip) | [paddle.Tensor.clip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#clip-min-none-max-none-name-none) | - | -| 208 | [torch.Tensor.clip_](https://pytorch.org/docs/stable/generated/torch.Tensor.clip_.html?highlight=clip_#torch.Tensor.clip_) | [paddle.Tensor.clip_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id6) | - | -| 209 | [torch.Tensor.coalesce](https://pytorch.org/docs/stable/generated/torch.Tensor.coalesce.html#torch-tensor-coalesce) | [paddle.Tensor.coalesce](https://www.paddlepaddle.org.cn/documentation/docs/en/develop/api/paddle/Tensor/coalesce_en.html) | - | -| 210 | [torch.Tensor.conj](https://pytorch.org/docs/stable/generated/torch.Tensor.conj.html?highlight=conj#torch.Tensor.conj) | [paddle.Tensor.conj](paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#conj-name-none) | - | -| 211 | [torch.Tensor.cos_](https://pytorch.org/docs/stable/generated/torch.Tensor.cos_.html) | paddle.Tensor.cos_ | - | -| 212 | [torch.Tensor.cosh](https://pytorch.org/docs/stable/generated/torch.Tensor.cosh.html?highlight=cosh#torch.Tensor.cosh) | [paddle.Tensor.cosh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cosh-name-none) | - | -| 213 | [torch.Tensor.cosh_](https://pytorch.org/docs/stable/generated/torch.Tensor.cosh_.html) | paddle.Tensor.cosh_ | - | -| 214 | [torch.Tensor.cumprod](https://pytorch.org/docs/stable/generated/torch.Tensor.cumprod.html?highlight=cumprod#torch.Tensor.cumprod) | [paddle.Tensor.cumprod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cumprod_cn.html#cumprod) | - | -| 215 | [torch.Tensor.cumprod_](https://pytorch.org/docs/stable/generated/torch.Tensor.cumprod_.html) | paddle.Tensor.cumprod_ | - | -| 216 | [torch.Tensor.data_ptr](https://pytorch.org/docs/stable/generated/torch.Tensor.data_ptr.html) | [paddle.Tensor.data_ptr](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | - | -| 217 | [torch.Tensor.deg2rad](https://pytorch.org/docs/stable/generated/torch.Tensor.deg2rad.html?highlight=deg2rad#torch.Tensor.deg2rad) | [paddle.Tensor.deg2rad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#deg2rad-x-name-none) | - | -| 218 | [torch.Tensor.dense_dim](https://pytorch.org/docs/stable/generated/torch.Tensor.dense_dim.html#torch.Tensor.dense_dim) | [paddle.Tensor.dense_dim](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | - | -| 219 | [torch.Tensor.detach_](https://pytorch.org/docs/stable/generated/torch.Tensor.detach_.html) | paddle.Tensor.detach_ | - | -| 220 | [torch.Tensor.diag_embed](https://pytorch.org/docs/stable/generated/torch.Tensor.diag_embed.html) | paddle.Tensor.diag_embed | - | -| 221 | [torch.Tensor.diagflat](https://pytorch.org/docs/stable/generated/torch.Tensor.diagflat.html?highlight=diagflat#torch.Tensor.diagflat) | paddle.Tensor.diagflat | - | -| 222 | [torch.Tensor.digamma](https://pytorch.org/docs/stable/generated/torch.Tensor.digamma.html?highlight=digamma#torch.Tensor.digamma) | [paddle.Tensor.digamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#digamma-name-none) | - | -| 223 | [torch.Tensor.digamma_](https://pytorch.org/docs/stable/generated/torch.Tensor.digamma_.html) | paddle.Tensor.digamma_ | - | -| 224 | [torch.Tensor.dtype](https://pytorch.org/docs/stable/generated/torch.Tensor.type.html#torch-tensor-type) | [paddle.Tensor.dtype](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#dtype) | - | -| 225 | [torch.Tensor.erf](https://pytorch.org/docs/stable/generated/torch.Tensor.erf.html?highlight=erf#torch.Tensor.erf) | [paddle.Tensor.erf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#erf-name-none) | - | -| 226 | [torch.Tensor.erfinv](https://pytorch.org/docs/stable/generated/torch.Tensor.erfinv.html?highlight=erfinv#torch.Tensor.erfinv) | [paddle.Tensor.erfinv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#erfinv-x-name-none) | - | -| 227 | [torch.Tensor.erfinv_](https://pytorch.org/docs/stable/generated/torch.Tensor.erfinv_.html?highlight=erfinv_#torch.Tensor.erfinv_) | paddle.Tensor.erfinv_ | - | -| 228 | [torch.Tensor.exp](https://pytorch.org/docs/stable/generated/torch.Tensor.exp.html?highlight=exp#torch.Tensor.exp) | [paddle.Tensor.exp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#exp-name-none) | - | -| 229 | [torch.Tensor.exp_](https://pytorch.org/docs/stable/generated/torch.Tensor.exp_.html?highlight=exp_#torch.Tensor.exp_) | [paddle.Tensor.exp_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id7) | - | -| 230 | [torch.Tensor.expm1](https://pytorch.org/docs/stable/generated/torch.Tensor.expm1.html#torch.Tensor.expm1) | paddle.Tensor.expm1 | - | -| 231 | [torch.Tensor.floor](https://pytorch.org/docs/stable/generated/torch.Tensor.floor.html?highlight=floor#torch.Tensor.floor) | [paddle.Tensor.floor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/floor_cn.html#floor) | - | -| 232 | [torch.Tensor.floor_](https://pytorch.org/docs/stable/generated/torch.Tensor.floor_.html?highlight=floor_#torch.Tensor.floor_) | [paddle.Tensor.floor_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id10) | - | -| 233 | [torch.Tensor.frac](https://pytorch.org/docs/stable/generated/torch.Tensor.frac.html?highlight=frac#torch.Tensor.frac) | [paddle.Tensor.frac](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#frac-name-none) | - | -| 234 | [torch.Tensor.frac_](https://pytorch.org/docs/stable/generated/torch.Tensor.frac_.html) | paddle.Tensor.frac_ | - | -| 235 | [torch.Tensor.frexp](https://pytorch.org/docs/stable/generated/torch.Tensor.frexp.html#torch-tensor-frexp) | [paddle.Tensor.frexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#frexp-x) | - | -| 236 | [torch.Tensor.grad](https://pytorch.org/docs/stable/generated/torch.Tensor.grad.html) | [paddle.Tensor.grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#grad) | - | -| 237 | [torch.Tensor.i0](https://pytorch.org/docs/stable/generated/torch.Tensor.i0.html?highlight=i0#torch.Tensor.i0) | [paddle.Tensor.i0](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#i0-x-name-none) | - | -| 238 | [torch.Tensor.i0_](https://pytorch.org/docs/stable/generated/torch.Tensor.i0_.html) | paddle.Tensor.i0_ | - | -| 239 | [torch.Tensor.indices](https://pytorch.org/docs/stable/generated/torch.Tensor.indices.html#torch.Tensor.indices) | [paddle.Tensor.indices](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sparse/Overview_cn.html) | - | -| 240 | [torch.Tensor.inverse](https://pytorch.org/docs/stable/generated/torch.Tensor.inverse.html) | paddle.Tensor.inverse | - | -| 241 | [torch.Tensor.is_complex](https://pytorch.org/docs/stable/generated/torch.Tensor.is_complex.html) | [paddle.Tensor.is_complex](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#is-complex) | - | -| 242 | [torch.Tensor.is_floating_point](https://pytorch.org/docs/stable/generated/torch.Tensor.is_floating_point.html) | [paddle.Tensor.is_floating_point](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#is-floating-point-x) | - | -| 243 | [torch.Tensor.is_leaf](https://pytorch.org/docs/stable/generated/torch.Tensor.is_leaf.html) | [paddle.Tensor.is_leaf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#is-leaf) | - | -| 244 | [torch.Tensor.isfinite](https://pytorch.org/docs/stable/generated/torch.Tensor.isfinite.html) | [paddle.Tensor.isfinite](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isfinite-name-none) | - | -| 245 | [torch.Tensor.isinf](https://pytorch.org/docs/stable/generated/torch.Tensor.isinf.html) | [paddle.Tensor.isinf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isinf-name-none) | - | -| 246 | [torch.Tensor.isneginf](https://pytorch.org/docs/stable/generated/torch.Tensor.isneginf.html#torch.Tensor.isneginf) | [paddle.Tensor.isneginf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isneginf-name-none) | - | -| 247 | [torch.Tensor.isposinf](https://pytorch.org/docs/stable/generated/torch.Tensor.isposinf.html#torch.Tensor.isposinf) | [paddle.Tensor.isposinf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isposinf-name-none) | - | -| 248 | [torch.Tensor.isreal](https://pytorch.org/docs/stable/generated/torch.Tensor.isreal.html#torch.Tensor.isreal) | [paddle.Tensor.isreal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isreal-name-none) | - | -| 249 | [torch.Tensor.istft](https://pytorch.org/docs/stable/generated/torch.Tensor.istft.html#torch.Tensor.istft) | paddle.Tensor.istft | - | -| 250 | [torch.Tensor.lgamma](https://pytorch.org/docs/stable/generated/torch.lgamma.html#torch.lgamma) | [paddle.Tensor.lgamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/lgamma_cn.html) | - | -| 251 | [torch.Tensor.lgamma_](https://pytorch.org/docs/stable/generated/torch.Tensor.lgamma_.html) | paddle.Tensor.lgamma_ | - | -| 252 | [torch.Tensor.log10](https://pytorch.org/docs/stable/generated/torch.Tensor.log10.html#torch.Tensor.log10) | [paddle.Tensor.log10](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#log10-name-none) | - | -| 253 | [torch.Tensor.log10_](https://pytorch.org/docs/stable/generated/torch.Tensor.log10_.html) | [paddle.Tensor.log10_](e) | - | -| 254 | [torch.Tensor.log1p](https://pytorch.org/docs/stable/generated/torch.Tensor.log1p.html#torch.Tensor.log1p) | [paddle.Tensor.log1p](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#log1p-name-none) | - | -| 255 | [torch.Tensor.log1p_](https://pytorch.org/docs/stable/generated/torch.Tensor.log1p_.html) | paddle.Tensor.log1p_ | - | -| 256 | [torch.Tensor.log2](https://pytorch.org/docs/stable/generated/torch.Tensor.log2.html#torch.Tensor.log2) | [paddle.Tensor.log2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#log2-name-none) | - | -| 257 | [torch.Tensor.log2_](https://pytorch.org/docs/stable/generated/torch.Tensor.log2_.html) | paddle.Tensor.log2_ | - | -| 258 | [torch.Tensor.log_](https://pytorch.org/docs/stable/generated/torch.Tensor.log_.html) | paddle.Tensor.log_ | - | -| 259 | [torch.Tensor.logit](https://pytorch.org/docs/stable/generated/torch.Tensor.logit.html) | [paddle.Tensor.logit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logit-eps-none-name-none) | - | -| 260 | [torch.Tensor.logit_](https://pytorch.org/docs/stable/generated/torch.Tensor.logit_.html) | [paddle.Tensor.logit_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logit_cn.html) | - | -| 261 | [torch.Tensor.lu](https://pytorch.org/docs/stable/generated/torch.Tensor.lu.html) | paddle.Tensor.lu | - | -| 262 | [torch.Tensor.mT](https://pytorch.org/docs/stable/tensors.html?#torch.Tensor.mT) | [paddle.Tensor.mT](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/base/dygraph/math_op_patch.py#L208) | - | -| 263 | [torch.Tensor.masked_scatter_](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_scatter_.html?highlight=masked_scatter#torch.Tensor.masked_scatter_) | paddle.Tensor.masked_scatter_ | - | -| 264 | [torch.Tensor.masked_select](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_select.html?highlight=masked_select#torch.Tensor.masked_select) | [paddle.Tensor.masked_select](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#masked-select-mask-name-none) | - | -| 265 | [torch.Tensor.matrix_power](https://pytorch.org/docs/stable/generated/torch.Tensor.matrix_power.html) | [paddle.Tensor.matrix_power](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#matrix-power-x-n-name-none) | - | -| 266 | [torch.Tensor.mm](https://pytorch.org/docs/stable/generated/torch.Tensor.mm.html) | [paddle.Tensor.mm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mm-mat2-name-none) | - | -| 267 | [torch.Tensor.moveaxis](https://pytorch.org/docs/stable/generated/torch.Tensor.moveaxis.html) | [paddle.Tensor.moveaxis](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/moveaxis_cn.html) | - | -| 268 | [torch.Tensor.mv](https://pytorch.org/docs/stable/generated/torch.Tensor.mv.html) | [paddle.Tensor.mv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mv-vec-name-none) | - | -| 269 | [torch.Tensor.nan_to_num](https://pytorch.org/docs/stable/generated/torch.Tensor.nan_to_num.html#torch.Tensor.nan_to_num) | [paddle.Tensor.nan_to_num](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#nan-to-num) | - | -| 270 | [torch.Tensor.nan_to_num_](https://pytorch.org/docs/stable/generated/torch.Tensor.nan_to_num_.html#torch.Tensor.nan_to_num_) | paddle.Tensor.nan_to_num_ | - | -| 271 | [torch.Tensor.ndimension](https://pytorch.org/docs/stable/generated/torch.Tensor.ndimension.html?highlight=ndimension#torch.Tensor.ndimension) | [paddle.Tensor.ndimension](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#ndimension) | - | -| 272 | [torch.Tensor.neg](https://pytorch.org/docs/stable/generated/torch.Tensor.neg.html?highlight=neg#torch.Tensor.neg) | [paddle.Tensor.neg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#neg-name-none) | - | -| 273 | [torch.Tensor.neg_](https://pytorch.org/docs/stable/generated/torch.Tensor.neg_.html) | paddle.Tensor.neg_ | - | -| 274 | [torch.Tensor.pin_memory](https://pytorch.org/docs/stable/generated/torch.Tensor.pin_memory.html?highlight=pin_mem#torch.Tensor.pin_memory) | [paddle.Tensor.pin_memory](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#pin-memory-y-name-none) | - | -| 275 | [torch.Tensor.polygamma](https://pytorch.org/docs/stable/generated/torch.Tensor.polygamma.html?highlight=tensor+polygamma#torch.Tensor.polygamma) | [paddle.Tensor.polygamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/polygamma_cn.html#polygamma) | - | -| 276 | [torch.Tensor.polygamma_](https://pytorch.org/docs/stable/generated/torch.Tensor.polygamma_.html) | paddle.Tensor.polygamma_ | - | -| 277 | [torch.Tensor.rad2deg](https://pytorch.org/docs/stable/generated/torch.Tensor.rad2deg.html#torch-tensor-rad2deg) | [paddle.Tensor.rad2deg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#rad2deg-x-name-none) | - | -| 278 | [torch.Tensor.reciprocal](https://pytorch.org/docs/stable/generated/torch.Tensor.reciprocal.html?highlight=torch+tensor+reciprocal#torch.Tensor.reciprocal) | paddle.Tensor.reciprocal | - | -| 279 | [torch.Tensor.reciprocal_](https://pytorch.org/docs/stable/generated/torch.Tensor.reciprocal_.html?highlight=torch+tensor+reciprocal_#torch.Tensor.reciprocal_) | [paddle.Tensor.reciprocal_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id11) | - | -| 280 | [torch.Tensor.register_hook](https://pytorch.org/docs/stable/generated/torch.Tensor.register_hook.html#torch-tensor-register-hook) | [paddle.Tensor.register_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#register-hook-hook) | - | -| 281 | [torch.Tensor.rsqrt](https://pytorch.org/docs/stable/generated/torch.Tensor.rsqrt) | [paddle.Tensor.rsqrt](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#rsqrt-name-none) | - | -| 282 | [torch.Tensor.rsqrt_](https://pytorch.org/docs/stable/generated/torch.Tensor.rsqrt_) | [paddle.Tensor.rsqrt_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id15) | - | -| 283 | [torch.Tensor.sgn](https://pytorch.org/docs/stable/generated/torch.Tensor.sgn.html#torch.Tensor.sgn) | [paddle.Tensor.sgn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sgn-name-none) | - | -| 284 | [torch.Tensor.sigmoid_](https://pytorch.org/docs/stable/generated/torch.Tensor.sigmoid_) | paddle.Tensor.sigmoid_ | - | -| 285 | [torch.Tensor.sign](https://pytorch.org/docs/stable/generated/torch.Tensor.sign) | [paddle.Tensor.sign](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sign-name-none) | - | -| 286 | [torch.Tensor.signbit](https://pytorch.org/docs/stable/generated/torch.Tensor.signbit.html#torch-signbit) | [paddle.Tensor.signbit](https://github.com/PaddlePaddle/Paddle/blob/9ce3a54f456011c664c70fbcd318f2e1af0a7d81/python/paddle/tensor/math.py#L7175) | - | -| 287 | [torch.Tensor.sin_](https://pytorch.org/docs/stable/generated/torch.Tensor.sin_.html) | paddle.Tensor.sin_ | - | -| 288 | [torch.Tensor.sinc](https://pytorch.org/docs/stable/generated/torch.Tensor.sinc.html#torch.Tensor.sinc) | [paddle.Tensor.sinc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sinc_cn.html#sinc) | - | -| 289 | [torch.Tensor.sinc_](https://pytorch.org/docs/stable/generated/torch.Tensor.sinc_.html#torch-tensor-sinc) | [paddle.Tensor.sinc_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sinc__cn.html#sinc) | - | -| 290 | [torch.Tensor.sinh](https://pytorch.org/docs/stable/generated/torch.Tensor.sinh.html?highlight=torch+tensor+sinh#torch.Tensor.sinh) | [paddle.Tensor.sinh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sinh-name-none) | - | -| 291 | [torch.Tensor.sinh_](https://pytorch.org/docs/stable/generated/torch.Tensor.sinh_.html) | paddle.Tensor.sinh_ | - | -| 292 | [torch.Tensor.sparse_dim](https://pytorch.org/docs/stable/generated/torch.Tensor.sparse_dim.html#torch.Tensor.sparse_dim) | [paddle.Tensor.sparse_dim](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | - | -| 293 | [torch.Tensor.sqrt](https://pytorch.org/docs/stable/generated/torch.sqrt.html) | [paddle.Tensor.sqrt](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sqrt-name-none) | - | -| 294 | [torch.Tensor.sqrt_](https://pytorch.org/docs/stable/generated/torch.Tensor.sqrt_.html?highlight=torch+tensor+sqrt_#torch.Tensor.sqrt_) | [paddle.Tensor.sqrt_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id18) | - | -| 295 | [torch.Tensor.t](https://pytorch.org/docs/stable/generated/torch.Tensor.t.html#torch.Tensor.t) | [paddle.Tensor.t](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#t-name-none) | - | -| 296 | [torch.Tensor.t_](https://pytorch.org/docs/stable/generated/torch.Tensor.t_.html#torch.Tensor.t_) | paddle.Tensor.t_ | - | -| 297 | [torch.Tensor.tan](https://pytorch.org/docs/stable/generated/torch.Tensor.tan.html#torch.Tensor.tan) | paddle.Tensor.tan | - | -| 298 | [torch.Tensor.tan_](https://pytorch.org/docs/stable/generated/torch.Tensor.tan_.html) | paddle.Tensor.tan_ | - | -| 299 | [torch.Tensor.tanh](https://pytorch.org/docs/stable/generated/torch.Tensor.tanh.html#torch.Tensor.tanh) | [paddle.Tensor.tanh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tanh-name-none) | - | -| 300 | [torch.Tensor.tanh_](https://pytorch.org/docs/stable/generated/torch.Tensor.tanh_.html#torch.Tensor.tanh_) | [paddle.Tensor.tanh_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id22) | - | -| 301 | [torch.Tensor.to_dense](https://pytorch.org/docs/stable/generated/torch.Tensor.to_dense.html#torch-tensor-to-dense) | [paddle.Tensor.to_dense](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor/to_dense_en.html#to-dense) | - | -| 302 | [torch.Tensor.tril_](https://pytorch.org/docs/stable/generated/torch.Tensor.tril_.html#torch.Tensor.tril_) | paddle.Tensor.tril_ | - | -| 303 | [torch.Tensor.triu_](https://pytorch.org/docs/stable/generated/torch.Tensor.triu_.html#torch.Tensor.triu_) | paddle.Tensor.triu_ | - | -| 304 | [torch.Tensor.trunc](https://pytorch.org/docs/stable/generated/torch.Tensor.trunc.html#torch.Tensor.trunc) | [paddle.Tensor.trunc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#trunc-name-none) | - | -| 305 | [torch.Tensor.trunc_](https://pytorch.org/docs/stable/generated/torch.Tensor.trunc_.html) | paddle.Tensor.trunc_ | - | -| 306 | [torch.Tensor.values](https://pytorch.org/docs/stable/generated/torch.Tensor.values.html?highlight=torch+tensor+values#torch.Tensor.values) | [paddle.Tensor.values](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sparse/Overview_cn.html) | - | -| 307 | torch.__version__ | paddle.__version__ | - | -| 308 | torch.__version__.split | [paddle.__version__.split](https://github.com/PaddlePaddle/Paddle/tree/develop) | - | -| 309 | [torch.diag_embed](https://pytorch.org/docs/stable/generated/torch.diag_embed.html) | [paddle.diag_embed](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/diag_embed_cn.html) | - | -| 310 | [torch.distributed.ReduceOp.MAX](https://pytorch.org/docs/stable/distributed.html#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp.MAX](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html#reduceop) | - | -| 311 | [torch.distributed.ReduceOp.MIN](https://pytorch.org/docs/stable/distributed.html#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp.MIN](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html#reduceop) | - | -| 312 | [torch.distributed.ReduceOp.SUM](https://pytorch.org/docs/stable/distributed.html#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp.SUM](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html#reduceop) | - | -| 313 | [torch.distributed.batch_isend_irecv](https://pytorch.org/docs/stable/distributed.html#torch.distributed.batch_isend_irecv) | [paddle.distributed.batch_isend_irecv](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/distributed/communication/batch_isend_irecv.py#L134) | - | -| 314 | [torch.distributed.get_backend](https://pytorch.org/docs/stable/distributed.html#torch.distributed.get_backend) | [paddle.distributed.get_backend](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/get_backend_cn.html#get-backend) | - | -| 315 | [torch.distributed.is_available](https://pytorch.org/docs/stable/distributed.html#torch.distributed.is_available) | [paddle.distributed.is_available](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/is_available_cn.html#cn-api-paddle-distributed-is-available) | - | -| 316 | [torch.distributed.is_initialized](https://pytorch.org/docs/stable/distributed.html#torch.distributed.is_initialized) | [paddle.distributed.is_initialized](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/is_initialized_cn.html#is-initialized) | - | -| 317 | [torch.e](https://github.com/pytorch/pytorch/blob/main/torch/__init__.py#L1815) | [paddle.e](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L787) | - | -| 318 | [torch.enable_grad](https://pytorch.org/docs/stable/generated/torch.enable_grad.html?highlight=enable_grad#torch.enable_grad) | [paddle.enable_grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/enable_grad.html#enable-grad) | - | -| 319 | [torch.inf](https://github.com/pytorch/pytorch/blob/main/torch/__init__.py#L1815) | [paddle.inf](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L784) | - | -| 320 | [torch.is_grad_enabled](https://pytorch.org/docs/stable/generated/torch.is_grad_enabled.html?highlight=torch+is_grad_enabled#torch.is_grad_enabled) | [paddle.is_grad_enabled](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/is_grad_enabled_cn.html#is-grad-enabled) | - | -| 321 | [torch.nan](https://github.com/pytorch/pytorch/blob/main/torch/__init__.py#L1815) | [paddle.nan](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L785) | - | -| 322 | [torch.newaxis](https://github.com/pytorch/pytorch/blob/main/torch/__init__.py#L1814) | [paddle.newaxis](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L783) | - | -| 323 | [torch.nn.LogSigmoid](https://pytorch.org/docs/stable/generated/torch.nn.LogSigmoid.html) | [paddle.nn.LogSigmoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/LogSigmoid_cn.html#logsigmoid) | - | -| 324 | [torch.nn.Sigmoid](https://pytorch.org/docs/stable/generated/torch.nn.Sigmoid.html) | [paddle.nn.Sigmoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Sigmoid_cn.html#sigmoid) | - | -| 325 | [torch.nn.Softplus](https://pytorch.org/docs/stable/generated/torch.nn.Softplus.html) | [paddle.nn.Softplus](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Softplus_cn.html) | - | -| 326 | [torch.nn.Softsign](https://pytorch.org/docs/stable/generated/torch.nn.Softsign.html) | [paddle.nn.Softsign](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Softsign_cn.html) | - | -| 327 | [torch.nn.Tanh](https://pytorch.org/docs/stable/generated/torch.nn.Tanh.html) | [paddle.nn.Tanh](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Tanh_cn.html) | - | -| 328 | [torch.nn.Tanhshrink](https://pytorch.org/docs/stable/generated/torch.nn.Tanhshrink.html) | [paddle.nn.Tanhshrink](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Tanhshrink_cn.html) | - | -| 329 | [torch.nn.TransformerDecoder](https://pytorch.org/docs/stable/generated/torch.nn.TransformerDecoder.html#transformerdecoder) | [paddle.nn.TransformerDecoder](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TransformerDecoder_cn.html) | - | -| 330 | [torch.nn.TripletMarginWithDistanceLoss](https://pytorch.org/docs/stable/generated/torch.nn.TripletMarginWithDistanceLoss.html) | [paddle.nn.TripletMarginWithDistanceLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/TripletMarginWithDistanceLoss_cn.html#tripletmarginwithdistanceloss) | - | -| 331 | [torch.nn.utils.parameters_to_vector](https://pytorch.org/docs/stable/generated/torch.nn.utils.parameters_to_vector.html#torch-nn-utils-parameters-to-vector) | [paddle.nn.utils.parameters_to_vector](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/parameters_to_vector_cn.html#parameters-to-vector) | - | -| 332 | [torch.nn.utils.vector_to_parameters](https://pytorch.org/docs/stable/generated/torch.nn.utils.vector_to_parameters.html#torch-nn-utils-vector-to-parameters) | [paddle.nn.utils.vector_to_parameters](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/vector_to_parameters_cn.html#vector-to-parameters) | - | -| 333 | [torch.pi](https://github.com/pytorch/pytorch) | [paddle.pi](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L786) | - | -| 334 | [torch.set_default_dtype](https://pytorch.org/docs/stable/generated/torch.set_default_dtype.html) | [paddle.set_default_dtype](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/set_default_dtype_cn.html) | - | -| 335 | [torch.t](https://pytorch.org/docs/stable/generated/torch.t.html) | [paddle.t](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/t_cn.html) | - | -| 336 | [torch.utils.cpp_extension.BuildExtension](https://pytorch.org/docs/stable/cpp_extension.html?highlight=cpp_extension#torch.utils.cpp_extension.BuildExtension) | paddle.utils.cpp_extension.BuildExtension | - | -| 337 | torch.utils.cpp_extension.BuildExtension.with_options | paddle.utils.cpp_extension.BuildExtension.with_options | - | -| 338 | [torch.nn.init.ones_](https://pytorch.org/docs/stable/nn.init.html?highlight=ones_#torch.nn.init.ones_) | paddle.nn.init.ones_ | - | -| 339 | [torch.Tensor.element_size](https://pytorch.org/docs/stable/generated/torch.Tensor.element_size.html?highlight=element_size#torch.Tensor.element_size) | [paddle.Tensor.element_size](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#element-size) | - | -| 340 | [torch.Tensor.view_as](https://pytorch.org/docs/stable/generated/torch.Tensor.view_as.html?highlight=view_as#torch.Tensor.view_as) | [paddle.Tensor.view_as](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#view-as-x-other-name-none) | - | -| 341 | torch.dtype | paddle.dtype | - | -| 342 | torch.Tensor.__and__ | paddle.Tensor.__and__ | - | -| 343 | torch.Tensor.__array__ | paddle.Tensor.__array__ | - | -| 344 | torch.Tensor.__bool__ | paddle.Tensor.__bool__ | - | -| 345 | torch.Tensor.__eq__ | paddle.Tensor.__eq__ | - | -| 346 | torch.Tensor.__format__ | paddle.Tensor.__format__ | - | -| 347 | torch.Tensor.__getitem__ | paddle.Tensor.__getitem__ | - | -| 348 | torch.Tensor.__index__ | paddle.Tensor.__index__ | - | -| 349 | torch.Tensor.__invert__ | paddle.Tensor.__invert__ | - | -| 350 | torch.Tensor.__len__ | paddle.Tensor.__len__ | - | -| 351 | torch.Tensor.__or__ | paddle.Tensor.__or__ | - | -| 352 | torch.Tensor.__rpow__ | paddle.Tensor.__rpow__ | - | -| 353 | torch.Tensor.__rsub__ | paddle.Tensor.__rsub__ | - | -| 354 | torch.Tensor.__rtruediv__ | paddle.Tensor.__rtruediv__ | - | -| 355 | torch.Tensor.__setitem__ | paddle.Tensor.__setitem__ | - | -| 356 | [torch.matmul](https://pytorch.org/docs/stable/generated/torch.matmul.html?highlight=matmul#torch.matmul) | [paddle.matmul](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/matmul_cn.html) | - | -| 357 | torch.linalg.matmul | paddle.linalg.matmul | - | -| 358 | [torch.Tensor.matmul](https://pytorch.org/docs/stable/generated/torch.Tensor.matmul.html) | [paddle.Tensor.matmul](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#matmul-y-transpose-x-false-transpose-y-false-name-none) | - | -| 359 | torch.Tensor.multiply | [paddle.Tensor.multiply](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#multiply-y-axis-1-name-none) | - | -| 360 | [torch.Tensor.amax](https://pytorch.org/docs/stable/generated/torch.Tensor.amax.html) | [paddle.Tensor.amax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#amax-axis-none-keepdim-false-name-none) | - | -| 361 | [torch.Tensor.amin](https://pytorch.org/docs/stable/generated/torch.Tensor.amin.html) | [paddle.Tensor.amin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#amin-axis-none-keepdim-false-name-none) | - | -| 362 | [torch.log2](https://pytorch.org/docs/stable/generated/torch.log2.html?highlight=log2#torch.log2) | [paddle.log2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/log2_cn.html#log2) | - | -| 363 | [torch.broadcast_to](https://pytorch.org/docs/stable/generated/torch.broadcast_to.html?highlight=broadcast_to#torch.broadcast_to) | [paddle.broadcast_to](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/broadcast_to_cn.html#broadcast-to) | - | -| 364 | [torch.nn.functional.embedding](https://pytorch.org/docs/stable/generated/torch.nn.functional.embedding.html) | [paddle.nn.functional.embedding](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/functional/embedding_cn.html#embedding) | - | -| 365 | [torch.no_grad](https://pytorch.org/docs/stable/generated/torch.no_grad.html) | [paddle.no_grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/no_grad_cn.html) | - | -| 366 | [torch.reshape](https://pytorch.org/docs/stable/generated/torch.reshape.html?highlight=reshape#torch.reshape) | [paddle.reshape](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/reshape_cn.html#reshape) | - | -| 367 | [torch.Tensor.bitwise_or_](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_or_.html) | paddle.Tensor.bitwise_or_ | - | -| 368 | [torch.Tensor.view](https://pytorch.org/docs/stable/generated/torch.Tensor.view.html?highlight=view#torch.Tensor.view) | [paddle.Tensor.view](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#view-x-shape-or-dtype-name-none) | - | -| 369 | [torch.unique_consecutive](https://pytorch.org/docs/stable/generated/torch.unique_consecutive.html?highlight=unique_consecutive#torch.unique_consecutive) | [paddle.unique_consecutive](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unique_consecutive_cn.html#unique-consecutive) | - | -| 370 | [torch.Tensor.cumsum](https://pytorch.org/docs/stable/generated/torch.Tensor.cumsum.html?highlight=cumsum#torch.Tensor.cumsum) | [paddle.Tensor.cumsum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cumsum-axis-none-dtype-none-name-none) | - | -| 371 | [torch.Tensor.expand](https://pytorch.org/docs/stable/generated/torch.Tensor.expand.html?highlight=expand#torch.Tensor.expand) | [paddle.Tensor.expand](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#expand-shape-name-none) | - | -| 372 | [torch.isfinite](https://pytorch.org/docs/stable/generated/torch.isfinite.html?highlight=isfinite#torch.isfinite) | [paddle.isfinite](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isfinite_cn.html#isfinite) | - | -| 373 | [torch.isinf](https://pytorch.org/docs/stable/generated/torch.isinf.html?highlight=isinf#torch.isinf) | [paddle.isinf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isinf_cn.html#isinf) | - | -| 374 | [torch.isnan](https://pytorch.org/docs/stable/generated/torch.isnan.html?highlight=isnan#torch.isnan) | [paddle.isnan](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isnan_cn.html#isnan) | - | -| 375 | [torch.flatten](https://pytorch.org/docs/stable/generated/torch.flatten.html?highlight=flatten#torch.flatten) | [paddle.flatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/flatten_cn.html#flatten) | - | -| 376 | [torch.Tensor.flatten](https://pytorch.org/docs/stable/generated/torch.Tensor.flatten.html?highlight=flatten#torch.Tensor.flatten) | [paddle.Tensor.flatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#flatten-start-axis-0-stop-axis-1-name-none) | - | -| 377 | [torch.roll](https://pytorch.org/docs/stable/generated/torch.roll.html?highlight=roll#torch.roll) | [paddle.roll](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/roll_cn.html#roll) | - | -| 378 | [torch.Tensor.sum](https://pytorch.org/docs/stable/generated/torch.Tensor.sum.html) | [paddle.Tensor.sum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sum-axis-none-dtype-none-keepdim-false-name-none) | - | -| 379 | [torch.sum](https://pytorch.org/docs/stable/generated/torch.sum.html?highlight=sum#torch.sum) | [paddle.sum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sum_cn.html#sum) | - | -| 380 | [torch.prod](https://pytorch.org/docs/stable/generated/torch.prod.html?highlight=prod#torch.prod) | [paddle.prod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/prod_cn.html#prod) | - | -| 381 | [torch.finfo](https://pytorch.org/docs/stable/type_info.html#torch-finfo) | [paddle.finfo](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/finfo_cn.html) | - | -| 382 | [torch.is_complex](https://pytorch.org/docs/stable/generated/torch.is_complex.html?highlight=is_complex#torch.is_complex) | [paddle.is_complex](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/is_complex_cn.html#is-complex) | - | -| 383 | torch.concat | [paddle.concat](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/concat_cn.html#concat) | - | -| 384 | [torch.nonzero](https://pytorch.org/docs/stable/generated/torch.nonzero.html#torch.nonzero) | [paddle.nonzero](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nonzero_cn.html#nonzero) | - | -| 385 | [torch.Tensor.pow](https://pytorch.org/docs/stable/generated/torch.Tensor.pow.html?highlight=pow#torch.Tensor.pow) | paddle.Tensor.pow | - | -| 386 | [torch.Tensor.prod](https://pytorch.org/docs/stable/generated/torch.prod.html#torch.prod) | [paddle.Tensor.prod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/prod_cn.html) | - | -| 387 | [torch.Tensor.reshape](https://pytorch.org/docs/stable/generated/torch.Tensor.reshape.html) | [paddle.Tensor.reshape](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#reshape-shape-name-none) | - | -| 388 | [torch.argsort](https://pytorch.org/docs/stable/generated/torch.argsort.html#torch.argsort) | [paddle.argsort](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/argsort_cn.html#argsort) | - | -| 389 | [torch.Tensor.argsort](https://pytorch.org/docs/stable/generated/torch.Tensor.argsort.html) | [paddle.Tensor.argsort](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#argsort-axis-1-descending-false-name-none) | - | -| 390 | [torch.Tensor.squeeze](https://pytorch.org/docs/stable/generated/torch.Tensor.squeeze.html#torch.Tensor.squeeze) | [paddle.Tensor.squeeze](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#squeeze-axis-none-name-none) | - | -| 391 | [torch.chunk](https://pytorch.org/docs/stable/generated/torch.chunk.html?highlight=chunk#torch.chunk) | [paddle.chunk](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/chunk_cn.html#chunk) | - | -| 392 | [torch.Tensor.chunk](https://pytorch.org/docs/stable/generated/torch.Tensor.chunk.html?highlight=chunk#torch.Tensor.chunk) | [paddle.Tensor.chunk](paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#chunk-chunks-axis-0-name-none) | - | -| 393 | [torch.any](https://pytorch.org/docs/stable/generated/torch.any.html?highlight=any#torch.any) | [paddle.any](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/any_cn.html#any) | - | -| 394 | [torch.nn.functional.one_hot](https://pytorch.org/docs/stable/generated/torch.nn.functional.one_hot.html?highlight=one_hot#torch.nn.functional.one_hot) | [paddle.nn.functional.one_hot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/one_hot_cn.html) | - | -| 395 | [torch.unbind](https://pytorch.org/docs/stable/generated/torch.unbind.html?highlight=unbind#torch.unbind) | [paddle.unbind](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unbind_cn.html#unbind) | - | -| 396 | torch.Tensor.unbindtorch.Tensor.expand_as | paddle.Tensor.unbindpaddle.Tensor.expand_as | - | -| 397 | torch.logsumexp | [paddle.logsumexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logsumexp_cn.html) | - | -| 398 | [torch.Tensor.logsumexp](https://pytorch.org/docs/stable/generated/torch.Tensor.logsumexp.html) | [paddle.Tensor.logsumexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logsumexp-axis-none-keepdim-false-name-none) | - | -| 399 | [torch.argmax](https://pytorch.org/docs/stable/generated/torch.argmax.html?highlight=argmax#torch.argmax) | [paddle.argmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/argmax_cn.html#argmax) | - | -| 400 | [torch.Tensor.argmax](https://pytorch.org/docs/stable/generated/torch.Tensor.argmax.html) | [paddle.Tensor.argmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#argmax-axis-none-keepdim-false-dtype-int64-name-none) | - | -| 401 | [torch.argmin](https://pytorch.org/docs/stable/generated/torch.argmin.html?highlight=argmin#torch.argmin) | [paddle.argmin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/argmin_cn.html#argmin) | - | -| 402 | [torch.Tensor.argmin](https://pytorch.org/docs/stable/generated/torch.Tensor.argmin.html) | [paddle.Tensor.argmin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#argmin-axis-none-keepdim-false-dtype-int64-name-none) | - | -| 403 | [torch.all](https://pytorch.org/docs/stable/generated/torch.all.html?highlight=all#torch.all) | [paddle.all](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/all_cn.html#all) | - | -| 404 | [torch.Tensor.all](https://pytorch.org/docs/stable/generated/torch.Tensor.all.html?highlight=torch+tensor+all#torch.Tensor.all) | [paddle.Tensor.all](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#all-axis-none-keepdim-false-name-none) | - | -| 405 | [torch.Tensor.any](https://pytorch.org/docs/stable/generated/torch.Tensor.any.html?highlight=torch+tensor+any#torch.Tensor.any) | [paddle.Tensor.any](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#any-axis-none-keepdim-false-name-none) | - | -| 406 | [torch.tensor_split](https://pytorch.org/docs/stable/generated/torch.tensor_split.html) | [paddle.tensor_split](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tensor_split_cn.html) | - | -| 407 | [torch.logical_not](https://pytorch.org/docs/stable/generated/torch.logical_not.html?highlight=logical_not#torch.logical_not) | [paddle.logical_not](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logical_not_cn.html#logical-not) | - | -| 408 | [torch.Tensor.logical_not](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_not.html) | [paddle.Tensor.logical_not](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logical-not-out-none-name-none) | - | -| 409 | [torch.logical_and](https://pytorch.org/docs/stable/generated/torch.logical_and.html?highlight=logical_and#torch.logical_and) | [paddle.logical_and](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logical_and_cn.html#logical-and) | - | -| 410 | [torch.Tensor.logical_and](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_and.html) | [paddle.Tensor.logical_and](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logical-and-y-out-none-name-none) | - | -| 411 | [torch.logical_or](https://pytorch.org/docs/stable/generated/torch.logical_or.html?highlight=logical_or#torch.logical_or) | [paddle.logical_or](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logical_or_cn.html#logical-or) | - | -| 412 | [torch.Tensor.logical_or](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_or.html) | [paddle.Tensor.logical_or](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logical-or-y-out-none-name-none) | - | -| 413 | [torch.logical_xor](https://pytorch.org/docs/stable/generated/torch.logical_xor.html?highlight=torch+logical_xor#torch.logical_xor) | [paddle.logical_xor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logical_xor_cn.html) | - | -| 414 | [torch.Tensor.logical_xor](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_xor.html) | paddle.Tensor.logical_xor | - | -| 415 | [torch.index_select](https://www.paddlepaddle.org.cn/documentation/docs/stable/develop/api/paddle/index_select_cn.html#index-select) | [paddle.index_select](https://www.paddlepaddle.org.cn/documentation/docs/stable/develop/api/paddle/index_select_cn.html#index-select) | - | -| 416 | [torch.Tensor.index_select](https://pytorch.org/docs/stable/generated/torch.Tensor.index_select.html) | [paddle.Tensor.index_select](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#index-select-index-axis-0-name-none) | - | -| 417 | [torch.dot](https://pytorch.org/docs/stable/generated/torch.dot.html?highlight=dot#torch.dot) | [paddle.dot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dot_cn.html#dot) | - | -| 418 | [torch.Tensor.dot](https://pytorch.org/docs/stable/generated/torch.Tensor.dot.html?highlight=dot#torch.Tensor.dot) | [paddle.Tensor.dot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#dot-y-name-none) | - | -| 419 | [torch.complex128](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.complex128](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L34) | - | -| 420 | [torch.complex64](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.complex64](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L33) | - | -| 421 | [torch.float64](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.float64](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L29) | - | -| 422 | [torch.float16](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.float16](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L30) | - | -| 423 | [torch.int16](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.int16](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L24) | - | -| 424 | [torch.int8](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.int8](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L23) | - | -| 425 | [torch.Tensor.narrow](https://pytorch.org/docs/stable/generated/torch.Tensor.narrow.html#torch.Tensor.narrow) | paddle.Tensor.narrow | - | -| 426 | [torch.narrow](https://pytorch.org/docs/stable/generated/torch.narrow.html?highlight=narrow#torch.narrow) | paddle.narrow | - | -| 427 | [torch.Tensor.type_as](https://pytorch.org/docs/stable/generated/torch.Tensor.type_as.html) | paddle.Tensor.type_as | - | -| 428 | [torch.nn.Sequential](https://pytorch.org/docs/stable/generated/torch.nn.Sequential.html#torch.nn.Sequential) | [paddle.nn.Sequential](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Sequential_cn.html) | - | -| 429 | [torch.transpose](https://pytorch.org/docs/stable/generated/torch.transpose.html?highlight=transpose#torch.transpose) | [paddle.transpose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/transpose_cn.html#transpose) | - | -| 430 | [torch.Tensor.transpose](https://pytorch.org/docs/stable/generated/torch.Tensor.transpose.html) | [paddle.Tensor.transpose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#transpose-perm-name-none) | - | -| 431 | [torch.unsqueeze](https://pytorch.org/docs/stable/generated/torch.unsqueeze.html?highlight=unsqueeze#torch.unsqueeze) | [paddle.unsqueeze](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unsqueeze_cn.html#unsqueeze) | - | -| 432 | [torch.Tensor.unsqueeze](https://pytorch.org/docs/stable/generated/torch.Tensor.unsqueeze.html#torch.Tensor.unsqueeze) | [paddle.Tensor.unsqueeze](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unsqueeze-axis-name-none) | - | -| 433 | torch.sigmoid | paddle.sigmoid | - | -| 434 | [torch.Tensor.topk](https://pytorch.org/docs/stable/generated/torch.Tensor.topk.html#torch.Tensor.topk) | [paddle.Tensor.topk](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#topk-k-axis-none-largest-true-sorted-true-name-none) | - | -| 435 | [torch.outer](https://pytorch.org/docs/stable/generated/torch.outer.html#torch.outer) | [paddle.outer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/outer_cn.html) | - | -| 436 | [torch.nn.functional.sigmoid](https://pytorch.org/docs/stable/generated/torch.nn.functional.sigmoid.html?highlight=sigmoid#torch.nn.functional.sigmoid) | [paddle.nn.functional.sigmoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/sigmoid_cn.html) | - | -| 437 | [torch.Tensor.requires_grad](https://docs.pytorch.org/docs/stable/generated/torch.Tensor.requires_grad.html#torch-tensor-requires-grad) | paddle.Tensor.requires_grad | - | -| 438 | [torch.Tensor.data](https://pytorch.org/docs/stable/tensors.html#torch-tensor) | [paddle.Tensor.data](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#data) | - | -| 439 | [torch.is_tensor](https://pytorch.org/docs/stable/generated/torch.is_tensor.html?highlight=is_tensor#torch.is_tensor) | [paddle.is_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/is_tensor_cn.html#is-tensor) | - | -| 440 | [torch.gather](https://pytorch.org/docs/stable/generated/torch.gather.html?highlight=gather#torch.gather) | paddle.gather | - | -| 441 | [torch.Tensor.gather](https://pytorch.org/docs/stable/generated/torch.Tensor.gather.html?highlight=gather#torch.Tensor.gather) | paddle.Tensor.gather | - | -| 442 | [torch.Tensor.scatter](https://pytorch.org/docs/stable/generated/torch.Tensor.scatter.html#torch.Tensor.scatter) | paddle.Tensor.scatter | - | -| 443 | [torch.Tensor.scatter_](https://pytorch.org/docs/stable/generated/torch.Tensor.scatter.html#torch.Tensor.scatter_) | paddle.Tensor.scatter_ | - | -| 444 | [torch.scatter](https://pytorch.org/docs/2.0/generated/torch.scatter.html?highlight=torch+scatter#torch.scatter) | paddle.scatter | - | +| 54 | [torch.Tensor.mul](https://pytorch.org/docs/stable/generated/torch.Tensor.mul.html) | paddle.Tensor.mul | - | +| 55 | [torch.Tensor.mul_](https://pytorch.org/docs/stable/generated/torch.Tensor.mul_.html) | paddle.Tensor.mul_ | - | +| 56 | [torch.Tensor.swapaxes](https://pytorch.org/docs/stable/generated/torch.Tensor.swapaxes.html#torch.Tensor.swapaxes) | paddle.Tensor.swapaxes | - | +| 57 | [torch.Tensor.swapdims](https://pytorch.org/docs/stable/generated/torch.Tensor.swapdims.html#torch.Tensor.swapdims) | paddle.Tensor.swapdims | - | +| 58 | [torch.autograd.Function](https://pytorch.org/docs/stable/autograd.html#torch.autograd.Function) | paddle.autograd.Function | - | +| 59 | [torch.take_along_dim](https://pytorch.org/docs/stable/generated/torch.take_along_dim.html?highlight=torch+take_along_dim#torch.take_along_dim) | paddle.take_along_dim | - | +| 60 | [torch.Tensor.take_along_dim](https://pytorch.org/docs/stable/generated/torch.Tensor.take_along_dim.html?highlight=torch+tensor+take_along_dim#torch.Tensor.take_along_dim) | paddle.Tensor.take_along_dim | - | +| 61 | [torch.special.logsumexp](https://pytorch.org/docs/stable/special.html#torch.special.logsumexp) | paddle.special.logsumexp | - | +| 62 | [torch.argwhere](https://pytorch.org/docs/stable/generated/torch.argwhere.html#torch.argwhere) | paddle.argwhere | - | +| 63 | torch.concatenate | paddle.concatenate | - | +| 64 | torch.is_autocast_enabled | paddle.is_autocast_enabled | - | +| 65 | torch.get_autocast_gpu_dtype | paddle.get_autocast_gpu_dtype | - | +| 66 | [torch.cumsum](https://pytorch.org/docs/stable/generated/torch.cumsum.html?highlight=cumsum#torch.cumsum) | [paddle.cumsum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cumsum_cn.html#cumsum) | - | +| 67 | [torch.diff](https://pytorch.org/docs/stable/generated/torch.diff.html?highlight=diff#torch.diff) | [paddle.diff](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diff_cn.html#diff) | - | +| 68 | [torch.nn.functional.dropout1d](https://pytorch.org/docs/stable/generated/torch.nn.functional.dropout1d.html#torch.nn.functional.dropout1d) | paddle.nn.functional.dropout1d | - | +| 69 | [torch.nn.parameter.Parameter](https://pytorch.org/docs/stable/generated/torch.nn.parameter.Parameter.html?highlight=torch%20nn%20parameter#torch.nn.parameter.Parameter) | paddle.nn.parameter.Parameter | - | +| 70 | [torch.add](https://pytorch.org/docs/stable/generated/torch.add.html?highlight=add#torch.add) | [paddle.add](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/add_cn.html#add) | - | +| 71 | [torch.div](https://pytorch.org/docs/stable/generated/torch.div.html#torch.div) | paddle.div | - | +| 72 | torch.divide | [paddle.divide](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/divide_cn.html) | - | +| 73 | [torch.true_divide](https://pytorch.org/docs/stable/generated/torch.true_divide.html) | paddle.true_divide | - | +| 74 | [torch.Tensor.add](https://pytorch.org/docs/stable/generated/torch.Tensor.add.html#torch.Tensor.add) | [paddle.Tensor.add](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#add-y-name-none) | - | +| 75 | [torch.Tensor.add_](https://pytorch.org/docs/stable/generated/torch.Tensor.add_.html#torch.Tensor.add_) | [paddle.Tensor.add_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id3) | - | +| 76 | [torch.Tensor.div](https://pytorch.org/docs/stable/generated/torch.Tensor.div.html#torch.Tensor.div) | paddle.Tensor.div | - | +| 77 | [torch.Tensor.div_](https://pytorch.org/docs/stable/generated/torch.Tensor.div_.html) | paddle.Tensor.div_ | - | +| 78 | torch.Tensor.divide | [paddle.Tensor.divide](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#divide-y-name-none) | - | +| 79 | torch.Tensor.divide_ | paddle.Tensor.divide_ | - | +| 80 | [torch.Tensor.true_divide](https://pytorch.org/docs/stable/generated/torch.Tensor.true_divide.html#torch.Tensor.true_divide) | paddle.Tensor.true_divide | - | +| 81 | [torch.Size](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | paddle.Size | - | +| 82 | [torch.Tensor.is_cuda](https://pytorch.org/docs/stable/generated/torch.Tensor.is_cuda.html?highlight=is_cuda#torch.Tensor.is_cuda) | paddle.Tensor.is_cuda | - | +| 83 | [torch.range](https://pytorch.org/docs/stable/generated/torch.range.html?highlight=range#torch.range) | paddle.range | - | +| 84 | [torch.arange](https://pytorch.org/docs/stable/generated/torch.arange.html?highlight=arange#torch.arange) | [paddle.arange](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/arange_cn.html) | - | +| 85 | [torch.randn](https://pytorch.org/docs/stable/generated/torch.randn.html?highlight=randn#torch.randn) | [paddle.randn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randn_cn.html#randn) | - | +| 86 | [torch.zeros](https://pytorch.org/docs/stable/generated/torch.zeros.html?highlight=zeros#torch.zeros) | [paddle.zeros](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/zeros_cn.html) | - | +| 87 | [torch.ones](https://pytorch.org/docs/stable/generated/torch.ones.html?highlight=ones#torch.ones) | [paddle.ones](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/ones_cn.html) | - | +| 88 | [torch.full](https://pytorch.org/docs/stable/generated/torch.full.html?highlight=ful#torch.full) | [paddle.full](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/full_cn.html) | - | +| 89 | [torch.empty](https://pytorch.org/docs/stable/generated/torch.empty.html?highlight=empty#torch.empty) | [paddle.empty](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/empty_cn.html) | - | +| 90 | [torch.zeros_like](https://pytorch.org/docs/stable/generated/torch.zeros_like.html?highlight=zeros_like#torch.zeros_like) | [paddle.zeros_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/zeros_like_cn.html) | - | +| 91 | [torch.ones_like](https://pytorch.org/docs/stable/generated/torch.ones_like.html?highlight=ones_like#torch.ones_like) | [paddle.ones_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/ones_like_cn.html) | - | +| 92 | [torch.full_like](https://pytorch.org/docs/stable/generated/torch.full_like.html?highlight=full_like#torch.full_like) | [paddle.full_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/full_like_cn.html#full-like) | - | +| 93 | [torch.empty_like](https://pytorch.org/docs/stable/generated/torch.empty_like.html?highlight=empty_like#torch.empty_like) | [paddle.empty_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/empty_like_cn.html) | - | +| 94 | [torch.Tensor.new_zeros](https://pytorch.org/docs/stable/generated/torch.Tensor.new_zeros.html#torch-tensor-new-zeros) | paddle.Tensor.new_zeros | - | +| 95 | [torch.Tensor.new_ones](https://pytorch.org/docs/stable/generated/torch.Tensor.new_ones.html#torch-tensor-new-ones) | paddle.Tensor.new_ones | - | +| 96 | [torch.Tensor.new_full](https://pytorch.org/docs/stable/generated/torch.Tensor.new_full.html#torch-tensor-new-full) | paddle.Tensor.new_full | - | +| 97 | [torch.Tensor.new_empty](https://pytorch.org/docs/stable/generated/torch.Tensor.new_empty.html#torch-tensor-new-empty) | paddle.Tensor.new_empty | - | +| 98 | [torch.eye](https://pytorch.org/docs/stable/generated/torch.eye.html?highlight=eye#torch.eye) | [paddle.eye](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/eye_cn.html) | - | +| 99 | [torch.permute](https://pytorch.org/docs/stable/generated/torch.permute.html?highlight=permute#torch.permute) | paddle.permute | - | +| 100 | [torch.Tensor.permute](https://pytorch.org/docs/stable/generated/torch.Tensor.permute.html) | paddle.Tensor.permute | - | +| 101 | [torch.repeat_interleave](https://pytorch.org/docs/stable/generated/torch.repeat_interleave.html#torch-repeat-interleave) | [paddle.repeat_interleave](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/repeat_interleave_cn.html#repeat-interleave) | - | +| 102 | [torch.Tensor.repeat_interleave](https://pytorch.org/docs/stable/generated/torch.Tensor.repeat_interleave.html#torch.Tensor.repeat_interleave) | [paddle.Tensor.repeat_interleave](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#repeat-interleave-repeats-axis-none-name-none) | - | +| 103 | [torch.Tensor.repeat](https://pytorch.org/docs/stable/generated/torch.Tensor.repeat.html) | paddle.Tensor.repeat | - | +| 104 | [torch.maximum](https://pytorch.org/docs/stable/generated/torch.maximum.html#torch.maximum) | [paddle.maximum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/maximum_cn.html) | - | +| 105 | [torch.minimum](https://pytorch.org/docs/stable/generated/torch.minimum.html#torch.minimum) | [paddle.minimum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/minimum_cn.html) | - | +| 106 | [torch.topk](https://pytorch.org/docs/stable/generated/torch.topk.html?highlight=topk#torch.topk) | [paddle.topk](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/topk_cn.html#paddle.topk) | - | +| 107 | [torch.sqrt](https://pytorch.org/docs/stable/generated/torch.sqrt.html?highlight=sqrt#torch.sqrt) | [paddle.sqrt](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sqrt_cn.html#sqrt) | - | +| 108 | [torch.amin](https://pytorch.org/docs/stable/generated/torch.amin.html) | [paddle.amin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amin_cn.html#amin) | - | +| 109 | [torch.amax](https://pytorch.org/docs/stable/generated/torch.amax.html) | [paddle.amax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amax_cn.html#amax) | - | +| 110 | [torch.Tensor.stride](https://pytorch.org/docs/stable/generated/torch.Tensor.stride.html#torch-tensor-stride) | paddle.Tensor.stride | - | +| 111 | [torch.Tensor.get_device](https://pytorch.org/docs/stable/generated/torch.Tensor.get_device.html?highlight=torch+tensor+get_device#torch.Tensor.get_device) | paddle.Tensor.get_device | - | +| 112 | torch.random.initial_seed | paddle.random.initial_seed | - | +| 113 | [torch.as_tensor](https://pytorch.org/docs/stable/generated/torch.as_tensor.html#torch.as_tensor) | paddle.as_tensor | - | +| 114 | [torch.tensor](https://pytorch.org/docs/stable/generated/torch.tensor.html?highlight=tensor#torch.tensor) | paddle.tensor | - | +| 115 | [torch.Tensor.copy_](https://pytorch.org/docs/stable/generated/torch.Tensor.copy_.html#torch.Tensor.copy_) | paddle.Tensor.copy_ | - | +| 116 | [torch.Tensor.norm](https://pytorch.org/docs/stable/generated/torch.Tensor.norm.html#torch.Tensor.norm) | [paddle.Tensor.norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#norm-p-fro-axis-none-keepdim-false-name-none) | - | +| 117 | [torch.Tensor](https://pytorch.org/docs/stable/tensors.html) | paddle.Tensor | - | +| 118 | [torch.FloatTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.FloatTensor | - | +| 119 | [torch.DoubleTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.DoubleTensor | - | +| 120 | [torch.HalfTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.HalfTensor | - | +| 121 | torch.BFloat16Tensor | paddle.BFloat16Tensor | - | +| 122 | [torch.ByteTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.ByteTensor | - | +| 123 | torch.CharTensor | paddle.CharTensor | - | +| 124 | [torch.ShortTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.ShortTensor | - | +| 125 | [torch.IntTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.IntTensor | - | +| 126 | [torch.LongTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.LongTensor | - | +| 127 | [torch.BoolTensor](https://pytorch.org/docs/stable/tensors.html) | paddle.BoolTensor | - | +| 128 | [torch.norm](https://pytorch.org/docs/stable/generated/torch.norm.html) | paddle.norm | - | +| 129 | [torch.linalg.norm](https://pytorch.org/docs/stable/generated/torch.linalg.norm.html#torch.linalg.norm) | [paddle.linalg.norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/norm_cn.html#norm) | - | +| 130 | [torch.Tensor.size](https://pytorch.org/docs/stable/generated/torch.Tensor.size.html#torch.Tensor.size) | [paddle.Tensor.size](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fluid/layers/size_cn.html#cn-api-fluid-layers-size) | - | +| 131 | [torch.linalg.vector_norm](https://pytorch.org/docs/stable/generated/torch.linalg.vector_norm.html#torch.linalg.vector_norm) | [paddle.linalg.vector_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/vector_norm_cn.html) | - | +| 132 | [torch.multinomial](https://pytorch.org/docs/stable/generated/torch.multinomial.html#torch.multinomial) | [paddle.multinomial](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/multinomial_cn.html) | - | +| 133 | [torch.var](https://pytorch.org/docs/stable/generated/torch.var.html) | [paddle.var](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/var_cn.html#var) | - | +| 134 | [torch.rand_like](https://pytorch.org/docs/stable/generated/torch.rand_like.html#torch.rand_like) | paddle.rand_like | - | +| 135 | [torch.mean](https://pytorch.org/docs/stable/generated/torch.mean.html) | [paddle.mean](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/mean_cn.html#mean) | - | +| 136 | [torch.Tensor.mean](https://pytorch.org/docs/stable/generated/torch.Tensor.mean.html) | [paddle.Tensor.mean](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mean-axis-none-keepdim-false-name-none) | - | +| 137 | [torch.msort](https://pytorch.org/docs/stable/generated/torch.msort.html#torch.msort) | paddle.msort | - | +| 138 | [torch.Tensor.msort](https://pytorch.org/docs/stable/generated/torch.Tensor.msort.html#torch.Tensor.msort) | paddle.Tensor.msort | - | +| 139 | [torch.Tensor.ravel](https://pytorch.org/docs/stable/generated/torch.Tensor.ravel.html#torch.Tensor.ravel) | paddle.Tensor.ravel | - | +| 140 | [torch.ravel](https://pytorch.org/docs/stable/generated/torch.ravel.html?highlight=ravel#torch.ravel) | paddle.ravel | - | +| 141 | [torch.Tensor.scatter_add](https://pytorch.org/docs/stable/generated/torch.Tensor.scatter_add.html#torch.Tensor.scatter_add) | paddle.Tensor.scatter_add | - | +| 142 | [torch.scatter_add](https://pytorch.org/docs/stable/generated/torch.scatter_add.html#torch.scatter_add) | paddle.scatter_add | - | +| 143 | [torch.Tensor.scatter_add_](https://pytorch.org/docs/stable/generated/torch.Tensor.scatter_add_.html#torch.Tensor.scatter_add_) | paddle.Tensor.scatter_add_ | - | +| 144 | [torch.Tensor.tril](https://pytorch.org/docs/stable/generated/torch.Tensor.tril.html#torch.Tensor.tril) | paddle.Tensor.tril | - | +| 145 | [torch.tril](https://pytorch.org/docs/stable/generated/torch.tril.html?highlight=tril#torch.tril) | [paddle.tril](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tril_cn.html) | - | +| 146 | [torch.Tensor.triu](https://pytorch.org/docs/stable/generated/torch.Tensor.triu.html#torch.Tensor.triu) | paddle.Tensor.triu | - | +| 147 | [torch.triu](https://pytorch.org/docs/stable/generated/torch.triu.html?highlight=triu#torch.triu) | [paddle.triu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/triu_cn.html) | - | +| 148 | [torch.bmm](https://pytorch.org/docs/stable/generated/torch.bmm.html?highlight=bmm#torch.bmm) | [paddle.bmm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bmm_cn.html) | - | +| 149 | [torch.Tensor.bmm](https://pytorch.org/docs/stable/generated/torch.Tensor.bmm.html) | [paddle.Tensor.bmm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#bmm-y-name-none) | - | +| 150 | [torch.nn.GELU](https://pytorch.org/docs/stable/generated/torch.nn.GELU.html#torch.nn.GELU) | [paddle.nn.GELU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/GELU_cn.html) | - | +| 151 | [torch.broadcast_shapes](https://pytorch.org/docs/stable/generated/torch.broadcast_shapes.html#torch.broadcast_shapes) | paddle.broadcast_shapes | - | +| 152 | [torch.Tensor.scatter_reduce](https://pytorch.org/docs/stable/generated/torch.Tensor.scatter_reduce.html#torch-tensor-scatter-reduce) | paddle.Tensor.scatter_reduce | - | +| 153 | [torch.scatter_reduce](https://pytorch.org/docs/stable/generated/torch.scatter_reduce.html#torch-scatter-reduce) | paddle.scatter_reduce | - | +| 154 | [torch.nn.functional.silu](https://pytorch.org/docs/stable/generated/torch.nn.functional.silu.html) | [paddle.nn.functional.silu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/silu_cn.html#silu) | - | +| 155 | [torch.Tensor.softmax](https://pytorch.org/docs/stable/generated/torch.Tensor.softmax.html?highlight=softmax#torch.Tensor.softmax) | paddle.Tensor.softmax | - | +| 156 | [torch.special.softmax](https://pytorch.org/docs/stable/special.html#torch.special.softmax) | paddle.special.softmax | - | +| 157 | [torch.softmax](https://pytorch.org/docs/stable/generated/torch.softmax.html) | paddle.softmax | - | +| 158 | [torch.Tensor.clamp](https://pytorch.org/docs/stable/generated/torch.Tensor.clamp.html?highlight=clamp#torch.Tensor.clamp) | paddle.Tensor.clamp | - | +| 159 | [torch.Tensor.itemsize](https://pytorch.org/docs/stable/generated/torch.Tensor.itemsize.html) | paddle.Tensor.itemsize | - | +| 160 | [torch.get_default_dtype](https://pytorch.org/docs/stable/generated/torch.get_default_dtype.html#torch-get-default-dtype) | [paddle.get_default_dtype](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/get_default_dtype_cn.html#get-default-dtype) | - | +| 161 | [torch.einsum](https://pytorch.org/docs/stable/generated/torch.einsum.html#torch.einsum) | [paddle.einsum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/einsum_cn.html) | - | +| 162 | [torch.nn.Identity](https://pytorch.org/docs/stable/generated/torch.nn.Identity.html#identity) | [paddle.nn.Identity](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Identity_cn.html#cn-api-paddle-nn-layer-common-identity) | - | +| 163 | [torch.Tensor.ndim](https://pytorch.org/docs/stable/generated/torch.Tensor.ndim.html) | [paddle.Tensor.ndim](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#ndim) | - | +| 164 | [torch.Tensor.T](https://pytorch.org/docs/stable/tensors.html#torch.Tensor.T) | [paddle.Tensor.T](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | - | +| 165 | [torch.Tensor.abs](https://pytorch.org/docs/stable/generated/torch.Tensor.abs.html#torch.Tensor.abs) | [paddle.Tensor.abs](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#abs-name-none) | - | +| 166 | [torch.Tensor.cos](https://pytorch.org/docs/stable/generated/torch.Tensor.cos.html?highlight=cos#torch.Tensor.cos) | [paddle.Tensor.cos](paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#cos-name-none) | - | +| 167 | [torch.Tensor.detach](https://pytorch.org/docs/stable/generated/torch.Tensor.detach.html?highlight=detach#torch.Tensor.detach) | [paddle.Tensor.detach](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#detach) | - | +| 168 | [torch.Tensor.dim](https://pytorch.org/docs/stable/generated/torch.Tensor.dim.html?highlight=dim#torch.Tensor.dim) | [paddle.Tensor.dim](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#dim) | - | +| 169 | [torch.Tensor.fill_](https://pytorch.org/docs/stable/generated/torch.Tensor.fill_.html?highlight=fill_#torch.Tensor.fill_) | [paddle.Tensor.fill_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#fill-x-value-name-none) | - | +| 170 | [torch.Tensor.isnan](https://pytorch.org/docs/stable/generated/torch.Tensor.isnan.html) | [paddle.Tensor.isnan](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isnan-name-none) | - | +| 171 | [torch.Tensor.item](https://pytorch.org/docs/stable/generated/torch.Tensor.item.html#torch-tensor-item) | [paddle.Tensor.item](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#item-args) | - | +| 172 | [torch.Tensor.log](https://pytorch.org/docs/stable/generated/torch.Tensor.log.html) | [paddle.Tensor.log](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#log-name-none) | - | +| 173 | [torch.Tensor.masked_scatter](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_scatter.html?highlight=masked_scatter#torch.Tensor.masked_scatter) | [paddle.Tensor.masked_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#masked-scatter-mask-value-name-non) | - | +| 174 | [torch.Tensor.masked_fill_](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_fill_.html?highlight=masked_fill_#torch.Tensor.masked_fill_) | paddle.Tensor.masked_fill_ | - | +| 175 | [torch.Tensor.masked_fill](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_fill.html?highlight=masked_fill#torch.Tensor.masked_fill) | [paddle.Tensor.masked_fill](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#masked-fill-mask-value-name-non) | - | +| 176 | [torch.Tensor.nonzero](https://pytorch.org/docs/stable/generated/torch.Tensor.nonzero.html?highlight=nonzero#torch.Tensor.nonzero) | [paddle.Tensor.nonzero](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#nonzero-as-tuple-false) | - | +| 177 | [torch.Tensor.normal_](https://pytorch.org/docs/stable/generated/torch.Tensor.normal_.html#torch-tensor-normal) | paddle.Tensor.normal_ | - | +| 178 | [torch.Tensor.sigmoid](https://pytorch.org/docs/stable/generated/torch.Tensor.sigmoid) | paddle.Tensor.sigmoid | - | +| 179 | [torch.Tensor.sin](https://pytorch.org/docs/stable/generated/torch.Tensor.sin) | [paddle.Tensor.sin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sin-name-none) | - | +| 180 | [torch.Tensor.square](https://pytorch.org/docs/stable/generated/torch.Tensor.square.html#torch-tensor-square) | [paddle.Tensor.square](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#square-name-none) | - | +| 181 | [torch.Tensor.tolist](https://pytorch.org/docs/stable/generated/torch.Tensor.tolist.html#torch.Tensor.tolist) | [paddle.Tensor.tolist](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tolist) | - | +| 182 | [torch.Tensor.zero_](https://pytorch.org/docs/stable/generated/torch.Tensor.zero_.html#torch.Tensor.zero_) | [paddle.Tensor.zero_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#zero-x-name-none) | - | +| 183 | [torch.distributed.get_rank](https://pytorch.org/docs/stable/distributed.html#torch.distributed.get_rank) | [paddle.distributed.get_rank](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/get_rank_cn.html) | - | +| 184 | [torch.distributed.get_world_size](https://pytorch.org/docs/stable/distributed.html#torch.distributed.get_world_size) | [paddle.distributed.get_world_size](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/get_world_size_cn.html) | - | +| 185 | [torch.Tensor.shape](https://pytorch.org/docs/stable/generated/torch.Tensor.shape.html) | [paddle.Tensor.shape](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#shape) | - | +| 186 | [torch.float32](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.float32](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L28) | - | +| 187 | torch.long | paddle.long | - | +| 188 | [torch.int32](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.int32](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L25) | - | +| 189 | [torch.bfloat16](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.bfloat16](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L31) | - | +| 190 | [torch.int64](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.int64](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L26) | - | +| 191 | [torch.bool](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.bool](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L36) | - | +| 192 | [torch.uint8](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.uint8](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L22) | - | +| 193 | [torch.Tensor.abs_](https://pytorch.org/docs/stable/generated/torch.Tensor.abs_.html) | paddle.Tensor.abs_ | - | +| 194 | [torch.Tensor.acos](https://pytorch.org/docs/stable/generated/torch.Tensor.acos.html) | paddle.Tensor.acos | - | +| 195 | [torch.Tensor.acos_](https://pytorch.org/docs/stable/generated/torch.Tensor.acos_.html) | paddle.Tensor.acos_ | - | +| 196 | [torch.Tensor.acosh](https://pytorch.org/docs/stable/generated/torch.Tensor.acosh.html?highlight=acosh#torch.Tensor.acosh) | paddle.Tensor.acosh | - | +| 197 | [torch.Tensor.acosh_](https://pytorch.org/docs/stable/generated/torch.Tensor.acosh_.html) | paddle.Tensor.acosh_ | - | +| 198 | [torch.Tensor.angle](https://pytorch.org/docs/stable/generated/torch.Tensor.angle.html) | [paddle.Tensor.angle](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#angle-name-none) | - | +| 199 | [torch.Tensor.apply_](https://pytorch.org/docs/stable/generated/torch.Tensor.apply_.html) | paddle.Tensor.apply_ | - | +| 200 | [torch.Tensor.asin](https://pytorch.org/docs/stable/generated/torch.Tensor.asin.html) | [paddle.Tensor.asin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#asin-name-none) | - | +| 201 | [torch.Tensor.asin_](https://pytorch.org/docs/stable/generated/torch.Tensor.asin_.html) | paddle.Tensor.asin_ | - | +| 202 | [torch.Tensor.asinh](https://pytorch.org/docs/stable/generated/torch.Tensor.asinh) | paddle.Tensor.asinh | - | +| 203 | [torch.Tensor.asinh_](https://pytorch.org/docs/stable/generated/torch.Tensor.asinh_) | paddle.Tensor.asinh_ | - | +| 204 | [torch.Tensor.atan](https://pytorch.org/docs/stable/generated/torch.Tensor.atan.html) | [paddle.Tensor.atan](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#atan-name-none) | - | +| 205 | [torch.Tensor.atan_](https://pytorch.org/docs/stable/generated/torch.Tensor.atan_.html) | paddle.Tensor.atan_ | - | +| 206 | [torch.Tensor.atanh](https://pytorch.org/docs/stable/generated/torch.Tensor.atanh.html#torch.Tensor.atanh) | paddle.Tensor.atanh | - | +| 207 | [torch.Tensor.atanh_](https://pytorch.org/docs/stable/generated/torch.Tensor.atanh_.html#torch.Tensor.atanh_) | paddle.Tensor.atanh_ | - | +| 208 | [torch.Tensor.bincount](https://pytorch.org/docs/stable/generated/torch.Tensor.bincount.html) | [paddle.Tensor.bincount](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#bincount-weights-none-minlength-0) | - | +| 209 | [torch.Tensor.bitwise_not](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_not.html) | paddle.Tensor.bitwise_not | - | +| 210 | [torch.Tensor.bitwise_not_](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_not_.html) | paddle.Tensor.bitwise_not_ | - | +| 211 | [torch.Tensor.ceil](https://pytorch.org/docs/stable/generated/torch.Tensor.ceil.html) | [paddle.Tensor.ceil](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#ceil-name-none) | - | +| 212 | [torch.Tensor.ceil_](https://pytorch.org/docs/stable/generated/torch.Tensor.ceil_.html) | [paddle.Tensor.ceil_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id7) | - | +| 213 | [torch.Tensor.cholesky](https://pytorch.org/docs/stable/generated/torch.Tensor.cholesky.html) | [paddle.Tensor.cholesky](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cholesky-upper-false-name-none) | - | +| 214 | [torch.Tensor.cholesky_inverse](https://pytorch.org/docs/stable/generated/torch.cholesky_inverse.html#torch.cholesky_inverse) | [paddle.Tensor.cholesky_inverse](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | - | +| 215 | [torch.Tensor.clip](https://pytorch.org/docs/stable/generated/torch.Tensor.clip.html?highlight=clip#torch.Tensor.clip) | [paddle.Tensor.clip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#clip-min-none-max-none-name-none) | - | +| 216 | [torch.Tensor.clip_](https://pytorch.org/docs/stable/generated/torch.Tensor.clip_.html?highlight=clip_#torch.Tensor.clip_) | [paddle.Tensor.clip_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id6) | - | +| 217 | [torch.Tensor.coalesce](https://pytorch.org/docs/stable/generated/torch.Tensor.coalesce.html#torch-tensor-coalesce) | [paddle.Tensor.coalesce](https://www.paddlepaddle.org.cn/documentation/docs/en/develop/api/paddle/Tensor/coalesce_en.html) | - | +| 218 | [torch.Tensor.conj](https://pytorch.org/docs/stable/generated/torch.Tensor.conj.html?highlight=conj#torch.Tensor.conj) | [paddle.Tensor.conj](paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#conj-name-none) | - | +| 219 | [torch.Tensor.cos_](https://pytorch.org/docs/stable/generated/torch.Tensor.cos_.html) | paddle.Tensor.cos_ | - | +| 220 | [torch.Tensor.cosh](https://pytorch.org/docs/stable/generated/torch.Tensor.cosh.html?highlight=cosh#torch.Tensor.cosh) | [paddle.Tensor.cosh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cosh-name-none) | - | +| 221 | [torch.Tensor.cosh_](https://pytorch.org/docs/stable/generated/torch.Tensor.cosh_.html) | paddle.Tensor.cosh_ | - | +| 222 | [torch.Tensor.cumprod](https://pytorch.org/docs/stable/generated/torch.Tensor.cumprod.html?highlight=cumprod#torch.Tensor.cumprod) | [paddle.Tensor.cumprod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cumprod_cn.html#cumprod) | - | +| 223 | [torch.Tensor.cumprod_](https://pytorch.org/docs/stable/generated/torch.Tensor.cumprod_.html) | paddle.Tensor.cumprod_ | - | +| 224 | [torch.Tensor.data_ptr](https://pytorch.org/docs/stable/generated/torch.Tensor.data_ptr.html) | [paddle.Tensor.data_ptr](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | - | +| 225 | [torch.Tensor.deg2rad](https://pytorch.org/docs/stable/generated/torch.Tensor.deg2rad.html?highlight=deg2rad#torch.Tensor.deg2rad) | [paddle.Tensor.deg2rad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#deg2rad-x-name-none) | - | +| 226 | [torch.Tensor.dense_dim](https://pytorch.org/docs/stable/generated/torch.Tensor.dense_dim.html#torch.Tensor.dense_dim) | [paddle.Tensor.dense_dim](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | - | +| 227 | [torch.Tensor.detach_](https://pytorch.org/docs/stable/generated/torch.Tensor.detach_.html) | paddle.Tensor.detach_ | - | +| 228 | [torch.Tensor.diag_embed](https://pytorch.org/docs/stable/generated/torch.Tensor.diag_embed.html) | paddle.Tensor.diag_embed | - | +| 229 | [torch.Tensor.diagflat](https://pytorch.org/docs/stable/generated/torch.Tensor.diagflat.html?highlight=diagflat#torch.Tensor.diagflat) | paddle.Tensor.diagflat | - | +| 230 | [torch.Tensor.digamma](https://pytorch.org/docs/stable/generated/torch.Tensor.digamma.html?highlight=digamma#torch.Tensor.digamma) | [paddle.Tensor.digamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#digamma-name-none) | - | +| 231 | [torch.Tensor.digamma_](https://pytorch.org/docs/stable/generated/torch.Tensor.digamma_.html) | paddle.Tensor.digamma_ | - | +| 232 | [torch.Tensor.dtype](https://pytorch.org/docs/stable/generated/torch.Tensor.type.html#torch-tensor-type) | [paddle.Tensor.dtype](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#dtype) | - | +| 233 | [torch.Tensor.erf](https://pytorch.org/docs/stable/generated/torch.Tensor.erf.html?highlight=erf#torch.Tensor.erf) | [paddle.Tensor.erf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#erf-name-none) | - | +| 234 | [torch.Tensor.erfinv](https://pytorch.org/docs/stable/generated/torch.Tensor.erfinv.html?highlight=erfinv#torch.Tensor.erfinv) | [paddle.Tensor.erfinv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#erfinv-x-name-none) | - | +| 235 | [torch.Tensor.erfinv_](https://pytorch.org/docs/stable/generated/torch.Tensor.erfinv_.html?highlight=erfinv_#torch.Tensor.erfinv_) | paddle.Tensor.erfinv_ | - | +| 236 | [torch.Tensor.exp](https://pytorch.org/docs/stable/generated/torch.Tensor.exp.html?highlight=exp#torch.Tensor.exp) | [paddle.Tensor.exp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#exp-name-none) | - | +| 237 | [torch.Tensor.exp_](https://pytorch.org/docs/stable/generated/torch.Tensor.exp_.html?highlight=exp_#torch.Tensor.exp_) | [paddle.Tensor.exp_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id7) | - | +| 238 | [torch.Tensor.expm1](https://pytorch.org/docs/stable/generated/torch.Tensor.expm1.html#torch.Tensor.expm1) | paddle.Tensor.expm1 | - | +| 239 | [torch.Tensor.floor](https://pytorch.org/docs/stable/generated/torch.Tensor.floor.html?highlight=floor#torch.Tensor.floor) | [paddle.Tensor.floor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/floor_cn.html#floor) | - | +| 240 | [torch.Tensor.floor_](https://pytorch.org/docs/stable/generated/torch.Tensor.floor_.html?highlight=floor_#torch.Tensor.floor_) | [paddle.Tensor.floor_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id10) | - | +| 241 | [torch.Tensor.frac](https://pytorch.org/docs/stable/generated/torch.Tensor.frac.html?highlight=frac#torch.Tensor.frac) | [paddle.Tensor.frac](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#frac-name-none) | - | +| 242 | [torch.Tensor.frac_](https://pytorch.org/docs/stable/generated/torch.Tensor.frac_.html) | paddle.Tensor.frac_ | - | +| 243 | [torch.Tensor.frexp](https://pytorch.org/docs/stable/generated/torch.Tensor.frexp.html#torch-tensor-frexp) | [paddle.Tensor.frexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#frexp-x) | - | +| 244 | [torch.Tensor.grad](https://pytorch.org/docs/stable/generated/torch.Tensor.grad.html) | [paddle.Tensor.grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#grad) | - | +| 245 | [torch.Tensor.i0](https://pytorch.org/docs/stable/generated/torch.Tensor.i0.html?highlight=i0#torch.Tensor.i0) | [paddle.Tensor.i0](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#i0-x-name-none) | - | +| 246 | [torch.Tensor.i0_](https://pytorch.org/docs/stable/generated/torch.Tensor.i0_.html) | paddle.Tensor.i0_ | - | +| 247 | [torch.Tensor.indices](https://pytorch.org/docs/stable/generated/torch.Tensor.indices.html#torch.Tensor.indices) | [paddle.Tensor.indices](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sparse/Overview_cn.html) | - | +| 248 | [torch.Tensor.inverse](https://pytorch.org/docs/stable/generated/torch.Tensor.inverse.html) | paddle.Tensor.inverse | - | +| 249 | [torch.Tensor.is_complex](https://pytorch.org/docs/stable/generated/torch.Tensor.is_complex.html) | [paddle.Tensor.is_complex](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#is-complex) | - | +| 250 | [torch.Tensor.is_floating_point](https://pytorch.org/docs/stable/generated/torch.Tensor.is_floating_point.html) | [paddle.Tensor.is_floating_point](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#is-floating-point-x) | - | +| 251 | [torch.Tensor.is_leaf](https://pytorch.org/docs/stable/generated/torch.Tensor.is_leaf.html) | [paddle.Tensor.is_leaf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#is-leaf) | - | +| 252 | [torch.Tensor.isfinite](https://pytorch.org/docs/stable/generated/torch.Tensor.isfinite.html) | [paddle.Tensor.isfinite](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isfinite-name-none) | - | +| 253 | [torch.Tensor.isinf](https://pytorch.org/docs/stable/generated/torch.Tensor.isinf.html) | [paddle.Tensor.isinf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isinf-name-none) | - | +| 254 | [torch.Tensor.isneginf](https://pytorch.org/docs/stable/generated/torch.Tensor.isneginf.html#torch.Tensor.isneginf) | [paddle.Tensor.isneginf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isneginf-name-none) | - | +| 255 | [torch.Tensor.isposinf](https://pytorch.org/docs/stable/generated/torch.Tensor.isposinf.html#torch.Tensor.isposinf) | [paddle.Tensor.isposinf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isposinf-name-none) | - | +| 256 | [torch.Tensor.isreal](https://pytorch.org/docs/stable/generated/torch.Tensor.isreal.html#torch.Tensor.isreal) | [paddle.Tensor.isreal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isreal-name-none) | - | +| 257 | [torch.Tensor.istft](https://pytorch.org/docs/stable/generated/torch.Tensor.istft.html#torch.Tensor.istft) | paddle.Tensor.istft | - | +| 258 | [torch.Tensor.lgamma](https://pytorch.org/docs/stable/generated/torch.lgamma.html#torch.lgamma) | [paddle.Tensor.lgamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/lgamma_cn.html) | - | +| 259 | [torch.Tensor.lgamma_](https://pytorch.org/docs/stable/generated/torch.Tensor.lgamma_.html) | paddle.Tensor.lgamma_ | - | +| 260 | [torch.Tensor.log10](https://pytorch.org/docs/stable/generated/torch.Tensor.log10.html#torch.Tensor.log10) | [paddle.Tensor.log10](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#log10-name-none) | - | +| 261 | [torch.Tensor.log10_](https://pytorch.org/docs/stable/generated/torch.Tensor.log10_.html) | [paddle.Tensor.log10_](e) | - | +| 262 | [torch.Tensor.log1p](https://pytorch.org/docs/stable/generated/torch.Tensor.log1p.html#torch.Tensor.log1p) | [paddle.Tensor.log1p](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#log1p-name-none) | - | +| 263 | [torch.Tensor.log1p_](https://pytorch.org/docs/stable/generated/torch.Tensor.log1p_.html) | paddle.Tensor.log1p_ | - | +| 264 | [torch.Tensor.log2](https://pytorch.org/docs/stable/generated/torch.Tensor.log2.html#torch.Tensor.log2) | [paddle.Tensor.log2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#log2-name-none) | - | +| 265 | [torch.Tensor.log2_](https://pytorch.org/docs/stable/generated/torch.Tensor.log2_.html) | paddle.Tensor.log2_ | - | +| 266 | [torch.Tensor.log_](https://pytorch.org/docs/stable/generated/torch.Tensor.log_.html) | paddle.Tensor.log_ | - | +| 267 | [torch.Tensor.logit](https://pytorch.org/docs/stable/generated/torch.Tensor.logit.html) | [paddle.Tensor.logit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logit-eps-none-name-none) | - | +| 268 | [torch.Tensor.logit_](https://pytorch.org/docs/stable/generated/torch.Tensor.logit_.html) | [paddle.Tensor.logit_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logit_cn.html) | - | +| 269 | [torch.Tensor.lu](https://pytorch.org/docs/stable/generated/torch.Tensor.lu.html) | paddle.Tensor.lu | - | +| 270 | [torch.Tensor.mT](https://pytorch.org/docs/stable/tensors.html?#torch.Tensor.mT) | [paddle.Tensor.mT](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/base/dygraph/math_op_patch.py#L208) | - | +| 271 | [torch.Tensor.masked_scatter_](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_scatter_.html?highlight=masked_scatter#torch.Tensor.masked_scatter_) | paddle.Tensor.masked_scatter_ | - | +| 272 | [torch.Tensor.masked_select](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_select.html?highlight=masked_select#torch.Tensor.masked_select) | [paddle.Tensor.masked_select](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#masked-select-mask-name-none) | - | +| 273 | [torch.Tensor.matrix_power](https://pytorch.org/docs/stable/generated/torch.Tensor.matrix_power.html) | [paddle.Tensor.matrix_power](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#matrix-power-x-n-name-none) | - | +| 274 | [torch.Tensor.mm](https://pytorch.org/docs/stable/generated/torch.Tensor.mm.html) | [paddle.Tensor.mm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mm-mat2-name-none) | - | +| 275 | [torch.Tensor.moveaxis](https://pytorch.org/docs/stable/generated/torch.Tensor.moveaxis.html) | [paddle.Tensor.moveaxis](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/moveaxis_cn.html) | - | +| 276 | [torch.Tensor.mv](https://pytorch.org/docs/stable/generated/torch.Tensor.mv.html) | [paddle.Tensor.mv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mv-vec-name-none) | - | +| 277 | [torch.Tensor.nan_to_num](https://pytorch.org/docs/stable/generated/torch.Tensor.nan_to_num.html#torch.Tensor.nan_to_num) | [paddle.Tensor.nan_to_num](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#nan-to-num) | - | +| 278 | [torch.Tensor.nan_to_num_](https://pytorch.org/docs/stable/generated/torch.Tensor.nan_to_num_.html#torch.Tensor.nan_to_num_) | paddle.Tensor.nan_to_num_ | - | +| 279 | [torch.Tensor.ndimension](https://pytorch.org/docs/stable/generated/torch.Tensor.ndimension.html?highlight=ndimension#torch.Tensor.ndimension) | [paddle.Tensor.ndimension](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#ndimension) | - | +| 280 | [torch.Tensor.neg](https://pytorch.org/docs/stable/generated/torch.Tensor.neg.html?highlight=neg#torch.Tensor.neg) | [paddle.Tensor.neg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#neg-name-none) | - | +| 281 | [torch.Tensor.neg_](https://pytorch.org/docs/stable/generated/torch.Tensor.neg_.html) | paddle.Tensor.neg_ | - | +| 282 | [torch.Tensor.pin_memory](https://pytorch.org/docs/stable/generated/torch.Tensor.pin_memory.html?highlight=pin_mem#torch.Tensor.pin_memory) | [paddle.Tensor.pin_memory](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#pin-memory-y-name-none) | - | +| 283 | [torch.Tensor.polygamma](https://pytorch.org/docs/stable/generated/torch.Tensor.polygamma.html?highlight=tensor+polygamma#torch.Tensor.polygamma) | [paddle.Tensor.polygamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/polygamma_cn.html#polygamma) | - | +| 284 | [torch.Tensor.polygamma_](https://pytorch.org/docs/stable/generated/torch.Tensor.polygamma_.html) | paddle.Tensor.polygamma_ | - | +| 285 | [torch.Tensor.rad2deg](https://pytorch.org/docs/stable/generated/torch.Tensor.rad2deg.html#torch-tensor-rad2deg) | [paddle.Tensor.rad2deg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#rad2deg-x-name-none) | - | +| 286 | [torch.Tensor.reciprocal](https://pytorch.org/docs/stable/generated/torch.Tensor.reciprocal.html?highlight=torch+tensor+reciprocal#torch.Tensor.reciprocal) | paddle.Tensor.reciprocal | - | +| 287 | [torch.Tensor.reciprocal_](https://pytorch.org/docs/stable/generated/torch.Tensor.reciprocal_.html?highlight=torch+tensor+reciprocal_#torch.Tensor.reciprocal_) | [paddle.Tensor.reciprocal_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id11) | - | +| 288 | [torch.Tensor.register_hook](https://pytorch.org/docs/stable/generated/torch.Tensor.register_hook.html#torch-tensor-register-hook) | [paddle.Tensor.register_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#register-hook-hook) | - | +| 289 | [torch.Tensor.rsqrt](https://pytorch.org/docs/stable/generated/torch.Tensor.rsqrt) | [paddle.Tensor.rsqrt](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#rsqrt-name-none) | - | +| 290 | [torch.Tensor.rsqrt_](https://pytorch.org/docs/stable/generated/torch.Tensor.rsqrt_) | [paddle.Tensor.rsqrt_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id15) | - | +| 291 | [torch.Tensor.sgn](https://pytorch.org/docs/stable/generated/torch.Tensor.sgn.html#torch.Tensor.sgn) | [paddle.Tensor.sgn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sgn-name-none) | - | +| 292 | [torch.Tensor.sigmoid_](https://pytorch.org/docs/stable/generated/torch.Tensor.sigmoid_) | paddle.Tensor.sigmoid_ | - | +| 293 | [torch.Tensor.sign](https://pytorch.org/docs/stable/generated/torch.Tensor.sign) | [paddle.Tensor.sign](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sign-name-none) | - | +| 294 | [torch.Tensor.signbit](https://pytorch.org/docs/stable/generated/torch.Tensor.signbit.html#torch-signbit) | [paddle.Tensor.signbit](https://github.com/PaddlePaddle/Paddle/blob/9ce3a54f456011c664c70fbcd318f2e1af0a7d81/python/paddle/tensor/math.py#L7175) | - | +| 295 | [torch.Tensor.sin_](https://pytorch.org/docs/stable/generated/torch.Tensor.sin_.html) | paddle.Tensor.sin_ | - | +| 296 | [torch.Tensor.sinc](https://pytorch.org/docs/stable/generated/torch.Tensor.sinc.html#torch.Tensor.sinc) | [paddle.Tensor.sinc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sinc_cn.html#sinc) | - | +| 297 | [torch.Tensor.sinc_](https://pytorch.org/docs/stable/generated/torch.Tensor.sinc_.html#torch-tensor-sinc) | [paddle.Tensor.sinc_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sinc__cn.html#sinc) | - | +| 298 | [torch.Tensor.sinh](https://pytorch.org/docs/stable/generated/torch.Tensor.sinh.html?highlight=torch+tensor+sinh#torch.Tensor.sinh) | [paddle.Tensor.sinh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sinh-name-none) | - | +| 299 | [torch.Tensor.sinh_](https://pytorch.org/docs/stable/generated/torch.Tensor.sinh_.html) | paddle.Tensor.sinh_ | - | +| 300 | [torch.Tensor.sparse_dim](https://pytorch.org/docs/stable/generated/torch.Tensor.sparse_dim.html#torch.Tensor.sparse_dim) | [paddle.Tensor.sparse_dim](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | - | +| 301 | [torch.Tensor.sqrt](https://pytorch.org/docs/stable/generated/torch.sqrt.html) | [paddle.Tensor.sqrt](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sqrt-name-none) | - | +| 302 | [torch.Tensor.sqrt_](https://pytorch.org/docs/stable/generated/torch.Tensor.sqrt_.html?highlight=torch+tensor+sqrt_#torch.Tensor.sqrt_) | [paddle.Tensor.sqrt_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id18) | - | +| 303 | [torch.Tensor.t](https://pytorch.org/docs/stable/generated/torch.Tensor.t.html#torch.Tensor.t) | [paddle.Tensor.t](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#t-name-none) | - | +| 304 | [torch.Tensor.t_](https://pytorch.org/docs/stable/generated/torch.Tensor.t_.html#torch.Tensor.t_) | paddle.Tensor.t_ | - | +| 305 | [torch.Tensor.tan](https://pytorch.org/docs/stable/generated/torch.Tensor.tan.html#torch.Tensor.tan) | paddle.Tensor.tan | - | +| 306 | [torch.Tensor.tan_](https://pytorch.org/docs/stable/generated/torch.Tensor.tan_.html) | paddle.Tensor.tan_ | - | +| 307 | [torch.Tensor.tanh](https://pytorch.org/docs/stable/generated/torch.Tensor.tanh.html#torch.Tensor.tanh) | [paddle.Tensor.tanh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tanh-name-none) | - | +| 308 | [torch.Tensor.tanh_](https://pytorch.org/docs/stable/generated/torch.Tensor.tanh_.html#torch.Tensor.tanh_) | [paddle.Tensor.tanh_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id22) | - | +| 309 | [torch.Tensor.to_dense](https://pytorch.org/docs/stable/generated/torch.Tensor.to_dense.html#torch-tensor-to-dense) | [paddle.Tensor.to_dense](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor/to_dense_en.html#to-dense) | - | +| 310 | [torch.Tensor.tril_](https://pytorch.org/docs/stable/generated/torch.Tensor.tril_.html#torch.Tensor.tril_) | paddle.Tensor.tril_ | - | +| 311 | [torch.Tensor.triu_](https://pytorch.org/docs/stable/generated/torch.Tensor.triu_.html#torch.Tensor.triu_) | paddle.Tensor.triu_ | - | +| 312 | [torch.Tensor.trunc](https://pytorch.org/docs/stable/generated/torch.Tensor.trunc.html#torch.Tensor.trunc) | [paddle.Tensor.trunc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#trunc-name-none) | - | +| 313 | [torch.Tensor.trunc_](https://pytorch.org/docs/stable/generated/torch.Tensor.trunc_.html) | paddle.Tensor.trunc_ | - | +| 314 | [torch.Tensor.values](https://pytorch.org/docs/stable/generated/torch.Tensor.values.html?highlight=torch+tensor+values#torch.Tensor.values) | [paddle.Tensor.values](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sparse/Overview_cn.html) | - | +| 315 | torch.__version__ | paddle.__version__ | - | +| 316 | torch.__version__.split | [paddle.__version__.split](https://github.com/PaddlePaddle/Paddle/tree/develop) | - | +| 317 | [torch.diag_embed](https://pytorch.org/docs/stable/generated/torch.diag_embed.html) | [paddle.diag_embed](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/diag_embed_cn.html) | - | +| 318 | [torch.distributed.ReduceOp.MAX](https://pytorch.org/docs/stable/distributed.html#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp.MAX](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html#reduceop) | - | +| 319 | [torch.distributed.ReduceOp.MIN](https://pytorch.org/docs/stable/distributed.html#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp.MIN](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html#reduceop) | - | +| 320 | [torch.distributed.ReduceOp.SUM](https://pytorch.org/docs/stable/distributed.html#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp.SUM](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html#reduceop) | - | +| 321 | [torch.distributed.batch_isend_irecv](https://pytorch.org/docs/stable/distributed.html#torch.distributed.batch_isend_irecv) | [paddle.distributed.batch_isend_irecv](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/distributed/communication/batch_isend_irecv.py#L134) | - | +| 322 | [torch.distributed.get_backend](https://pytorch.org/docs/stable/distributed.html#torch.distributed.get_backend) | [paddle.distributed.get_backend](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/get_backend_cn.html#get-backend) | - | +| 323 | [torch.distributed.is_available](https://pytorch.org/docs/stable/distributed.html#torch.distributed.is_available) | [paddle.distributed.is_available](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/is_available_cn.html#cn-api-paddle-distributed-is-available) | - | +| 324 | [torch.distributed.is_initialized](https://pytorch.org/docs/stable/distributed.html#torch.distributed.is_initialized) | [paddle.distributed.is_initialized](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/is_initialized_cn.html#is-initialized) | - | +| 325 | [torch.e](https://github.com/pytorch/pytorch/blob/main/torch/__init__.py#L1815) | [paddle.e](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L787) | - | +| 326 | [torch.enable_grad](https://pytorch.org/docs/stable/generated/torch.enable_grad.html?highlight=enable_grad#torch.enable_grad) | [paddle.enable_grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/enable_grad.html#enable-grad) | - | +| 327 | [torch.inf](https://github.com/pytorch/pytorch/blob/main/torch/__init__.py#L1815) | [paddle.inf](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L784) | - | +| 328 | [torch.is_grad_enabled](https://pytorch.org/docs/stable/generated/torch.is_grad_enabled.html?highlight=torch+is_grad_enabled#torch.is_grad_enabled) | [paddle.is_grad_enabled](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/is_grad_enabled_cn.html#is-grad-enabled) | - | +| 329 | [torch.nan](https://github.com/pytorch/pytorch/blob/main/torch/__init__.py#L1815) | [paddle.nan](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L785) | - | +| 330 | [torch.newaxis](https://github.com/pytorch/pytorch/blob/main/torch/__init__.py#L1814) | [paddle.newaxis](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L783) | - | +| 331 | [torch.nn.LogSigmoid](https://pytorch.org/docs/stable/generated/torch.nn.LogSigmoid.html) | [paddle.nn.LogSigmoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/LogSigmoid_cn.html#logsigmoid) | - | +| 332 | [torch.nn.Sigmoid](https://pytorch.org/docs/stable/generated/torch.nn.Sigmoid.html) | [paddle.nn.Sigmoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Sigmoid_cn.html#sigmoid) | - | +| 333 | [torch.nn.Softplus](https://pytorch.org/docs/stable/generated/torch.nn.Softplus.html) | [paddle.nn.Softplus](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Softplus_cn.html) | - | +| 334 | [torch.nn.Softsign](https://pytorch.org/docs/stable/generated/torch.nn.Softsign.html) | [paddle.nn.Softsign](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Softsign_cn.html) | - | +| 335 | [torch.nn.Tanh](https://pytorch.org/docs/stable/generated/torch.nn.Tanh.html) | [paddle.nn.Tanh](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Tanh_cn.html) | - | +| 336 | [torch.nn.Tanhshrink](https://pytorch.org/docs/stable/generated/torch.nn.Tanhshrink.html) | [paddle.nn.Tanhshrink](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/Tanhshrink_cn.html) | - | +| 337 | [torch.nn.TransformerDecoder](https://pytorch.org/docs/stable/generated/torch.nn.TransformerDecoder.html#transformerdecoder) | [paddle.nn.TransformerDecoder](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TransformerDecoder_cn.html) | - | +| 338 | [torch.nn.TripletMarginWithDistanceLoss](https://pytorch.org/docs/stable/generated/torch.nn.TripletMarginWithDistanceLoss.html) | [paddle.nn.TripletMarginWithDistanceLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/TripletMarginWithDistanceLoss_cn.html#tripletmarginwithdistanceloss) | - | +| 339 | [torch.nn.utils.parameters_to_vector](https://pytorch.org/docs/stable/generated/torch.nn.utils.parameters_to_vector.html#torch-nn-utils-parameters-to-vector) | [paddle.nn.utils.parameters_to_vector](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/parameters_to_vector_cn.html#parameters-to-vector) | - | +| 340 | [torch.nn.utils.vector_to_parameters](https://pytorch.org/docs/stable/generated/torch.nn.utils.vector_to_parameters.html#torch-nn-utils-vector-to-parameters) | [paddle.nn.utils.vector_to_parameters](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/vector_to_parameters_cn.html#vector-to-parameters) | - | +| 341 | [torch.pi](https://github.com/pytorch/pytorch) | [paddle.pi](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/__init__.py#L786) | - | +| 342 | [torch.set_default_dtype](https://pytorch.org/docs/stable/generated/torch.set_default_dtype.html) | [paddle.set_default_dtype](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/set_default_dtype_cn.html) | - | +| 343 | [torch.t](https://pytorch.org/docs/stable/generated/torch.t.html) | [paddle.t](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/t_cn.html) | - | +| 344 | [torch.utils.cpp_extension.BuildExtension](https://pytorch.org/docs/stable/cpp_extension.html?highlight=cpp_extension#torch.utils.cpp_extension.BuildExtension) | paddle.utils.cpp_extension.BuildExtension | - | +| 345 | torch.utils.cpp_extension.BuildExtension.with_options | paddle.utils.cpp_extension.BuildExtension.with_options | - | +| 346 | [torch.nn.init.ones_](https://pytorch.org/docs/stable/nn.init.html?highlight=ones_#torch.nn.init.ones_) | paddle.nn.init.ones_ | - | +| 347 | [torch.Tensor.element_size](https://pytorch.org/docs/stable/generated/torch.Tensor.element_size.html?highlight=element_size#torch.Tensor.element_size) | [paddle.Tensor.element_size](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#element-size) | - | +| 348 | [torch.Tensor.view_as](https://pytorch.org/docs/stable/generated/torch.Tensor.view_as.html?highlight=view_as#torch.Tensor.view_as) | [paddle.Tensor.view_as](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#view-as-x-other-name-none) | - | +| 349 | torch.dtype | paddle.dtype | - | +| 350 | torch.Tensor.__and__ | paddle.Tensor.__and__ | - | +| 351 | torch.Tensor.__array__ | paddle.Tensor.__array__ | - | +| 352 | torch.Tensor.__bool__ | paddle.Tensor.__bool__ | - | +| 353 | torch.Tensor.__eq__ | paddle.Tensor.__eq__ | - | +| 354 | torch.Tensor.__format__ | paddle.Tensor.__format__ | - | +| 355 | torch.Tensor.__getitem__ | paddle.Tensor.__getitem__ | - | +| 356 | torch.Tensor.__index__ | paddle.Tensor.__index__ | - | +| 357 | torch.Tensor.__invert__ | paddle.Tensor.__invert__ | - | +| 358 | torch.Tensor.__len__ | paddle.Tensor.__len__ | - | +| 359 | torch.Tensor.__or__ | paddle.Tensor.__or__ | - | +| 360 | torch.Tensor.__rpow__ | paddle.Tensor.__rpow__ | - | +| 361 | torch.Tensor.__rsub__ | paddle.Tensor.__rsub__ | - | +| 362 | torch.Tensor.__rtruediv__ | paddle.Tensor.__rtruediv__ | - | +| 363 | torch.Tensor.__setitem__ | paddle.Tensor.__setitem__ | - | +| 364 | [torch.matmul](https://pytorch.org/docs/stable/generated/torch.matmul.html?highlight=matmul#torch.matmul) | [paddle.matmul](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/matmul_cn.html) | - | +| 365 | torch.linalg.matmul | paddle.linalg.matmul | - | +| 366 | torch.mul_ | paddle.mul_ | - | +| 367 | torch.multiply_ | paddle.multiply_ | - | +| 368 | torch.Tensor.multiply | [paddle.Tensor.multiply](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#multiply-y-axis-1-name-none) | - | +| 369 | torch.Tensor.multiply_ | paddle.Tensor.multiply_ | - | +| 370 | [torch.Tensor.matmul](https://pytorch.org/docs/stable/generated/torch.Tensor.matmul.html) | [paddle.Tensor.matmul](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#matmul-y-transpose-x-false-transpose-y-false-name-none) | - | +| 371 | [torch.Tensor.amax](https://pytorch.org/docs/stable/generated/torch.Tensor.amax.html) | [paddle.Tensor.amax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#amax-axis-none-keepdim-false-name-none) | - | +| 372 | [torch.Tensor.amin](https://pytorch.org/docs/stable/generated/torch.Tensor.amin.html) | [paddle.Tensor.amin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#amin-axis-none-keepdim-false-name-none) | - | +| 373 | [torch.log2](https://pytorch.org/docs/stable/generated/torch.log2.html?highlight=log2#torch.log2) | [paddle.log2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/log2_cn.html#log2) | - | +| 374 | [torch.broadcast_to](https://pytorch.org/docs/stable/generated/torch.broadcast_to.html?highlight=broadcast_to#torch.broadcast_to) | [paddle.broadcast_to](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/broadcast_to_cn.html#broadcast-to) | - | +| 375 | [torch.nn.functional.embedding](https://pytorch.org/docs/stable/generated/torch.nn.functional.embedding.html) | [paddle.nn.functional.embedding](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/functional/embedding_cn.html#embedding) | - | +| 376 | [torch.no_grad](https://pytorch.org/docs/stable/generated/torch.no_grad.html) | [paddle.no_grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/no_grad_cn.html) | - | +| 377 | [torch.reshape](https://pytorch.org/docs/stable/generated/torch.reshape.html?highlight=reshape#torch.reshape) | [paddle.reshape](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/reshape_cn.html#reshape) | - | +| 378 | [torch.Tensor.bitwise_or_](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_or_.html) | paddle.Tensor.bitwise_or_ | - | +| 379 | [torch.Tensor.view](https://pytorch.org/docs/stable/generated/torch.Tensor.view.html?highlight=view#torch.Tensor.view) | [paddle.Tensor.view](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#view-x-shape-or-dtype-name-none) | - | +| 380 | [torch.unique_consecutive](https://pytorch.org/docs/stable/generated/torch.unique_consecutive.html?highlight=unique_consecutive#torch.unique_consecutive) | [paddle.unique_consecutive](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unique_consecutive_cn.html#unique-consecutive) | - | +| 381 | [torch.Tensor.cumsum](https://pytorch.org/docs/stable/generated/torch.Tensor.cumsum.html?highlight=cumsum#torch.Tensor.cumsum) | [paddle.Tensor.cumsum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cumsum-axis-none-dtype-none-name-none) | - | +| 382 | [torch.Tensor.expand](https://pytorch.org/docs/stable/generated/torch.Tensor.expand.html?highlight=expand#torch.Tensor.expand) | [paddle.Tensor.expand](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#expand-shape-name-none) | - | +| 383 | [torch.isfinite](https://pytorch.org/docs/stable/generated/torch.isfinite.html?highlight=isfinite#torch.isfinite) | [paddle.isfinite](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isfinite_cn.html#isfinite) | - | +| 384 | [torch.isinf](https://pytorch.org/docs/stable/generated/torch.isinf.html?highlight=isinf#torch.isinf) | [paddle.isinf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isinf_cn.html#isinf) | - | +| 385 | [torch.isnan](https://pytorch.org/docs/stable/generated/torch.isnan.html?highlight=isnan#torch.isnan) | [paddle.isnan](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isnan_cn.html#isnan) | - | +| 386 | [torch.flatten](https://pytorch.org/docs/stable/generated/torch.flatten.html?highlight=flatten#torch.flatten) | [paddle.flatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/flatten_cn.html#flatten) | - | +| 387 | [torch.Tensor.flatten](https://pytorch.org/docs/stable/generated/torch.Tensor.flatten.html?highlight=flatten#torch.Tensor.flatten) | [paddle.Tensor.flatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#flatten-start-axis-0-stop-axis-1-name-none) | - | +| 388 | [torch.roll](https://pytorch.org/docs/stable/generated/torch.roll.html?highlight=roll#torch.roll) | [paddle.roll](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/roll_cn.html#roll) | - | +| 389 | [torch.Tensor.sum](https://pytorch.org/docs/stable/generated/torch.Tensor.sum.html) | [paddle.Tensor.sum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#sum-axis-none-dtype-none-keepdim-false-name-none) | - | +| 390 | [torch.sum](https://pytorch.org/docs/stable/generated/torch.sum.html?highlight=sum#torch.sum) | [paddle.sum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sum_cn.html#sum) | - | +| 391 | [torch.prod](https://pytorch.org/docs/stable/generated/torch.prod.html?highlight=prod#torch.prod) | [paddle.prod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/prod_cn.html#prod) | - | +| 392 | [torch.ceil](https://pytorch.org/docs/stable/generated/torch.ceil.html#torch.ceil) | [paddle.ceil](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/ceil_cn.html) | - | +| 393 | [torch.floor_divide](https://pytorch.org/docs/stable/generated/torch.floor_divide.html?highlight=torch+floor_divide#torch.floor_divide) | [paddle.floor_divide](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/floor_divide_cn.html#floor-divide) | - | +| 394 | [torch.masked_select](https://pytorch.org/docs/stable/generated/torch.masked_select.html?highlight=masked_select#torch.masked_select) | [paddle.masked_select](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/masked_select_cn.html#masked-select) | - | +| 395 | [torch.finfo](https://pytorch.org/docs/stable/type_info.html#torch-finfo) | [paddle.finfo](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/finfo_cn.html) | - | +| 396 | [torch.is_complex](https://pytorch.org/docs/stable/generated/torch.is_complex.html?highlight=is_complex#torch.is_complex) | [paddle.is_complex](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/is_complex_cn.html#is-complex) | - | +| 397 | torch.concat | [paddle.concat](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/concat_cn.html#concat) | - | +| 398 | [torch.nonzero](https://pytorch.org/docs/stable/generated/torch.nonzero.html#torch.nonzero) | [paddle.nonzero](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nonzero_cn.html#nonzero) | - | +| 399 | [torch.Tensor.pow](https://pytorch.org/docs/stable/generated/torch.Tensor.pow.html?highlight=pow#torch.Tensor.pow) | paddle.Tensor.pow | - | +| 400 | [torch.Tensor.prod](https://pytorch.org/docs/stable/generated/torch.prod.html#torch.prod) | [paddle.Tensor.prod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/prod_cn.html) | - | +| 401 | [torch.Tensor.reshape](https://pytorch.org/docs/stable/generated/torch.Tensor.reshape.html) | [paddle.Tensor.reshape](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#reshape-shape-name-none) | - | +| 402 | [torch.argsort](https://pytorch.org/docs/stable/generated/torch.argsort.html#torch.argsort) | [paddle.argsort](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/argsort_cn.html#argsort) | - | +| 403 | [torch.Tensor.argsort](https://pytorch.org/docs/stable/generated/torch.Tensor.argsort.html) | [paddle.Tensor.argsort](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#argsort-axis-1-descending-false-name-none) | - | +| 404 | [torch.Tensor.squeeze](https://pytorch.org/docs/stable/generated/torch.Tensor.squeeze.html#torch.Tensor.squeeze) | [paddle.Tensor.squeeze](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#squeeze-axis-none-name-none) | - | +| 405 | [torch.chunk](https://pytorch.org/docs/stable/generated/torch.chunk.html?highlight=chunk#torch.chunk) | [paddle.chunk](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/chunk_cn.html#chunk) | - | +| 406 | [torch.Tensor.chunk](https://pytorch.org/docs/stable/generated/torch.Tensor.chunk.html?highlight=chunk#torch.Tensor.chunk) | [paddle.Tensor.chunk](paddlepaddle.org.cn/documentation/docs/zh/api/paddle/Tensor_cn.html#chunk-chunks-axis-0-name-none) | - | +| 407 | [torch.any](https://pytorch.org/docs/stable/generated/torch.any.html?highlight=any#torch.any) | [paddle.any](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/any_cn.html#any) | - | +| 408 | [torch.nn.functional.one_hot](https://pytorch.org/docs/stable/generated/torch.nn.functional.one_hot.html?highlight=one_hot#torch.nn.functional.one_hot) | [paddle.nn.functional.one_hot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/one_hot_cn.html) | - | +| 409 | [torch.unbind](https://pytorch.org/docs/stable/generated/torch.unbind.html?highlight=unbind#torch.unbind) | [paddle.unbind](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unbind_cn.html#unbind) | - | +| 410 | [torch.Tensor.unbind](https://pytorch.org/docs/stable/generated/torch.Tensor.unbind.html#torch.Tensor.unbind) | [paddle.Tensor.unbind](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unbind-axis-0) | - | +| 411 | [torch.is_tensor](https://pytorch.org/docs/stable/generated/torch.is_tensor.html?highlight=is_tensor#torch.is_tensor) | [paddle.is_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/is_tensor_cn.html#is-tensor) | - | +| 412 | [torch.Tensor.expand_as](https://pytorch.org/docs/stable/generated/torch.Tensor.expand_as.html?highlight=expand_as) | [paddle.Tensor.expand_as](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#expand-as-y-name-none) | - | +| 413 | torch.logsumexp | [paddle.logsumexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logsumexp_cn.html) | - | +| 414 | [torch.Tensor.logsumexp](https://pytorch.org/docs/stable/generated/torch.Tensor.logsumexp.html) | [paddle.Tensor.logsumexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logsumexp-axis-none-keepdim-false-name-none) | - | +| 415 | [torch.argmax](https://pytorch.org/docs/stable/generated/torch.argmax.html?highlight=argmax#torch.argmax) | [paddle.argmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/argmax_cn.html#argmax) | - | +| 416 | [torch.Tensor.argmax](https://pytorch.org/docs/stable/generated/torch.Tensor.argmax.html) | [paddle.Tensor.argmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#argmax-axis-none-keepdim-false-dtype-int64-name-none) | - | +| 417 | [torch.argmin](https://pytorch.org/docs/stable/generated/torch.argmin.html?highlight=argmin#torch.argmin) | [paddle.argmin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/argmin_cn.html#argmin) | - | +| 418 | [torch.Tensor.argmin](https://pytorch.org/docs/stable/generated/torch.Tensor.argmin.html) | [paddle.Tensor.argmin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#argmin-axis-none-keepdim-false-dtype-int64-name-none) | - | +| 419 | [torch.all](https://pytorch.org/docs/stable/generated/torch.all.html?highlight=all#torch.all) | [paddle.all](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/all_cn.html#all) | - | +| 420 | [torch.Tensor.all](https://pytorch.org/docs/stable/generated/torch.Tensor.all.html?highlight=torch+tensor+all#torch.Tensor.all) | [paddle.Tensor.all](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#all-axis-none-keepdim-false-name-none) | - | +| 421 | [torch.Tensor.any](https://pytorch.org/docs/stable/generated/torch.Tensor.any.html?highlight=torch+tensor+any#torch.Tensor.any) | [paddle.Tensor.any](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#any-axis-none-keepdim-false-name-none) | - | +| 422 | [torch.tensor_split](https://pytorch.org/docs/stable/generated/torch.tensor_split.html) | [paddle.tensor_split](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tensor_split_cn.html) | - | +| 423 | [torch.logical_not](https://pytorch.org/docs/stable/generated/torch.logical_not.html?highlight=logical_not#torch.logical_not) | [paddle.logical_not](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logical_not_cn.html#logical-not) | - | +| 424 | [torch.Tensor.logical_not](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_not.html) | [paddle.Tensor.logical_not](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logical-not-out-none-name-none) | - | +| 425 | [torch.logical_and](https://pytorch.org/docs/stable/generated/torch.logical_and.html?highlight=logical_and#torch.logical_and) | [paddle.logical_and](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logical_and_cn.html#logical-and) | - | +| 426 | [torch.Tensor.logical_and](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_and.html) | [paddle.Tensor.logical_and](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logical-and-y-out-none-name-none) | - | +| 427 | [torch.logical_or](https://pytorch.org/docs/stable/generated/torch.logical_or.html?highlight=logical_or#torch.logical_or) | [paddle.logical_or](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logical_or_cn.html#logical-or) | - | +| 428 | [torch.Tensor.logical_or](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_or.html) | [paddle.Tensor.logical_or](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#logical-or-y-out-none-name-none) | - | +| 429 | [torch.logical_xor](https://pytorch.org/docs/stable/generated/torch.logical_xor.html?highlight=torch+logical_xor#torch.logical_xor) | [paddle.logical_xor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logical_xor_cn.html) | - | +| 430 | [torch.Tensor.logical_xor](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_xor.html) | paddle.Tensor.logical_xor | - | +| 431 | [torch.index_select](https://www.paddlepaddle.org.cn/documentation/docs/stable/develop/api/paddle/index_select_cn.html#index-select) | [paddle.index_select](https://www.paddlepaddle.org.cn/documentation/docs/stable/develop/api/paddle/index_select_cn.html#index-select) | - | +| 432 | [torch.Tensor.index_select](https://pytorch.org/docs/stable/generated/torch.Tensor.index_select.html) | [paddle.Tensor.index_select](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#index-select-index-axis-0-name-none) | - | +| 433 | [torch.dot](https://pytorch.org/docs/stable/generated/torch.dot.html?highlight=dot#torch.dot) | [paddle.dot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dot_cn.html#dot) | - | +| 434 | [torch.Tensor.dot](https://pytorch.org/docs/stable/generated/torch.Tensor.dot.html?highlight=dot#torch.Tensor.dot) | [paddle.Tensor.dot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#dot-y-name-none) | - | +| 435 | [torch.complex128](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.complex128](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L34) | - | +| 436 | [torch.complex64](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.complex64](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L33) | - | +| 437 | [torch.float64](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.float64](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L29) | - | +| 438 | [torch.float16](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.float16](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L30) | - | +| 439 | [torch.int16](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.int16](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L24) | - | +| 440 | [torch.int8](https://github.com/pytorch/pytorch/tree/main/torch) | [paddle.int8](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/framework/dtype.pyi#L23) | - | +| 441 | [torch.Tensor.narrow](https://pytorch.org/docs/stable/generated/torch.Tensor.narrow.html#torch.Tensor.narrow) | paddle.Tensor.narrow | - | +| 442 | [torch.narrow](https://pytorch.org/docs/stable/generated/torch.narrow.html?highlight=narrow#torch.narrow) | paddle.narrow | - | +| 443 | [torch.Tensor.type_as](https://pytorch.org/docs/stable/generated/torch.Tensor.type_as.html) | paddle.Tensor.type_as | - | +| 444 | [torch.nn.Sequential](https://pytorch.org/docs/stable/generated/torch.nn.Sequential.html#torch.nn.Sequential) | [paddle.nn.Sequential](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Sequential_cn.html) | - | +| 445 | torch.torch.int32 | paddle.paddle.int32 | - | +| 446 | [torch.transpose](https://pytorch.org/docs/stable/generated/torch.transpose.html?highlight=transpose#torch.transpose) | [paddle.transpose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/transpose_cn.html#transpose) | - | +| 447 | [torch.Tensor.transpose](https://pytorch.org/docs/stable/generated/torch.Tensor.transpose.html) | [paddle.Tensor.transpose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#transpose-perm-name-none) | - | +| 448 | [torch.unsqueeze](https://pytorch.org/docs/stable/generated/torch.unsqueeze.html?highlight=unsqueeze#torch.unsqueeze) | [paddle.unsqueeze](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unsqueeze_cn.html#unsqueeze) | - | +| 449 | [torch.Tensor.unsqueeze](https://pytorch.org/docs/stable/generated/torch.Tensor.unsqueeze.html#torch.Tensor.unsqueeze) | [paddle.Tensor.unsqueeze](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unsqueeze-axis-name-none) | - | +| 450 | torch.sigmoid | paddle.sigmoid | - | +| 451 | [torch.Tensor.topk](https://pytorch.org/docs/stable/generated/torch.Tensor.topk.html#torch.Tensor.topk) | [paddle.Tensor.topk](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#topk-k-axis-none-largest-true-sorted-true-name-none) | - | +| 452 | [torch.outer](https://pytorch.org/docs/stable/generated/torch.outer.html#torch.outer) | [paddle.outer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/outer_cn.html) | - | +| 453 | [torch.nn.functional.sigmoid](https://pytorch.org/docs/stable/generated/torch.nn.functional.sigmoid.html?highlight=sigmoid#torch.nn.functional.sigmoid) | [paddle.nn.functional.sigmoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/sigmoid_cn.html) | - | +| 454 | [torch.Tensor.requires_grad](https://docs.pytorch.org/docs/stable/generated/torch.Tensor.requires_grad.html#torch-tensor-requires-grad) | paddle.Tensor.requires_grad | - | +| 455 | [torch.Tensor.data](https://pytorch.org/docs/stable/tensors.html#torch-tensor) | [paddle.Tensor.data](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#data) | - | +| 456 | [torch.Tensor.cpu](https://pytorch.org/docs/stable/generated/torch.Tensor.cpu.html?highlight=torch+tensor+cpu#torch.Tensor.cpu) | [paddle.Tensor.cpu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cpu) | - | +| 457 | [torch.gather](https://pytorch.org/docs/stable/generated/torch.gather.html?highlight=gather#torch.gather) | [paddle.gather](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/gather_cn.html#gather) | - | +| 458 | [torch.Tensor.gather](https://pytorch.org/docs/stable/generated/torch.Tensor.gather.html?highlight=gather#torch.Tensor.gather) | paddle.Tensor.gather | - | +| 459 | torch.Tensor.scatter | paddle.Tensor.scatter | - | +| 460 | torch.Tensor.scatter_ | paddle.Tensor.scatter_ | - | +| 461 | torch.scatter | paddle.scatter | - | + ## 2. 仅 API 调用方式不一致 **分类简介** @@ -507,100 +525,97 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) | 8 | [torch.Tensor.expm1_](https://pytorch.org/docs/stable/generated/torch.Tensor.expm1_.html) | paddle.expm1_ | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.expm1_.md) | | 9 | [torch.Tensor.fix](https://pytorch.org/docs/stable/generated/torch.Tensor.fix.html?highlight=fix#torch.Tensor.fix) | [paddle.Tensor.trunc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#trunc-name-none) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.fix.md) | | 10 | [torch.Tensor.fix_](https://pytorch.org/docs/stable/generated/torch.Tensor.fix_.html) | paddle.Tensor.trunc_ | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.fix_.md) | -| 11 | [torch.Tensor.get_device](https://pytorch.org/docs/stable/generated/torch.Tensor.get_device.html?highlight=torch+tensor+get_device#torch.Tensor.get_device) | paddle.Tensor.place.gpu_device_id | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.get_device.md) | -| 12 | [torch.Tensor.matrix_exp](https://pytorch.org/docs/stable/generated/torch.Tensor.matrix_exp.html#torch-tensor-matrix-exp) | [paddle.linalg.matrix_exp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_exp_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.matrix_exp.md) | -| 13 | [torch.Tensor.movedim](https://pytorch.org/docs/stable/generated/torch.Tensor.movedim.html) | [paddle.Tensor.moveaxis](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/moveaxis_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.movedim.md) | -| 14 | [torch.Tensor.mvlgamma](https://pytorch.org/docs/stable/generated/torch.Tensor.mvlgamma.html#torch-tensor-mvlgamma) | [paddle.Tensor.multigammaln](https://github.com/PaddlePaddle/Paddle/blob/be090bd0bc9ac7a8595296c316b3a6ed3dc60ba6/python/paddle/tensor/math.py#L5099) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.mvlgamma.md) | -| 15 | [torch.Tensor.mvlgamma_](https://pytorch.org/docs/stable/generated/torch.Tensor.mvlgamma_.html#torch-tensor-mvlgamma) | [paddle.Tensor.multigammaln_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/multigammaln__cn.html#multigammaln) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.mvlgamma_.md) | -| 16 | [torch.Tensor.negative](https://pytorch.org/docs/stable/generated/torch.negative.html#torch.negative) | [paddle.Tensor.neg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/neg_cn.html#cn-api-paddle-neg) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.negative.md) | -| 17 | [torch.Tensor.negative_](https://pytorch.org/docs/stable/generated/torch.Tensor.negative_.html) | paddle.Tensor.neg_ | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.negative_.md) | -| 18 | [torch.Tensor.positive](https://pytorch.org/docs/stable/generated/torch.Tensor.positive.html#torch.Tensor.positive) | [paddle.positive](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/positive_cn.html#positive) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.positive.md) | -| 19 | [torch.Tensor.retain_grad](https://pytorch.org/docs/stable/generated/torch.Tensor.retain_grad.html) | [paddle.Tensor.retain_grads](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Overview_cn.html#paddle) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.retain_grad.md) | -| 20 | [torch.Tensor.sparse_mask](https://pytorch.org/docs/stable/generated/torch.Tensor.sparse_mask.html) | [paddle.sparse.mask_as](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/sparse/mask_as_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.sparse_mask.md) | -| 21 | [torch.Tensor.square_](https://pytorch.org/docs/stable/generated/torch.Tensor.square_.html) | paddle.square_ | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.square_.md) | -| 22 | [torch.Tensor.to_sparse](https://pytorch.org/docs/stable/generated/torch.Tensor.to_sparse.html#torch.Tensor.to_sparse) | paddle.Tensor.to_sparse_coo | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.to_sparse.md) | -| 23 | [torch.autograd.Function.forward](https://pytorch.org/docs/stable/generated/torch.autograd.Function.forward.html#torch.autograd.Function.forward) | [paddle.autograd.PyLayer.forward](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayer_cn.html#forward-ctx-args-kwargs) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.Function.forward.md) | -| 24 | [torch.autograd.enable_grad](https://pytorch.org/docs/stable/generated/torch.enable_grad.html#enable-grad) | [paddle.enable_grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/enable_grad.html#enable-grad) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.enable_grad.md) | -| 25 | torch.autograd.function.FunctionCtx | [paddle.autograd.PyLayerContext](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayerContext_cn.html#pylayercontext) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.autograd.function.FunctionCtx.md) | -| 26 | [torch.autograd.function.FunctionCtx.save_for_backward](https://pytorch.org/docs/stable/generated/torch.autograd.function.FunctionCtx.save_for_backward.html#torch.autograd.function.FunctionCtx.save_for_backward) | [paddle.autograd.PyLayerContext.save_for_backward](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayerContext_cn.html#save-for-backward-tensors) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.function.FunctionCtx.save_for_backward.md) | -| 27 | [torch.autograd.function.FunctionCtx.set_materialize_grads](https://pytorch.org/docs/stable/generated/torch.autograd.function.FunctionCtx.set_materialize_grads.html#torch.autograd.function.FunctionCtx.set_materialize_grads) | [paddle.autograd.PyLayerContext.set_materialize_grads](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayerContext_cn.html#set-materialize-grads-self-value) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.function.FunctionCtx.set_materialize_grads.md) | -| 28 | [torch.autograd.grad_mode.set_grad_enabled](https://docs.pytorch.org/docs/stable/generated/torch.autograd.grad_mode.set_grad_enabled.html#torch.autograd.grad_mode.set_grad_enabled) | [paddle.set_grad_enabled](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/set_grad_enabled_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.grad_mode.set_grad_enabled.md) | -| 29 | [torch.autograd.graph.saved_tensors_hooks](https://pytorch.org/docs/stable/autograd.html?highlight=saved_tensors_hooks#torch.autograd.graph.saved_tensors_hooks) | [paddle.autograd.saved_tensors_hooks](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/saved_tensors_hooks_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.graph.saved_tensors_hooks.md) | -| 30 | [torch.backends.cuda.is_built](https://pytorch.org/docs/stable/backends.html?highlight=torch+backends+cudnn+is_available#torch.backends.cuda.is_built) | [paddle.device.is_compiled_with_cuda](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/is_compiled_with_cuda_cn.html#is-compiled-with-cuda) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.backends.cuda.is_built.md) | -| 31 | [torch.backends.cudnn.version](https://pytorch.org/docs/stable/generated/torch.backends.cudnn.version.html) | [paddle.device.get_cudnn_version](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/get_cudnn_version_cn.html#get-cudnn-version) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.backends.cudnn.version.md) | -| 32 | [torch.cpu.current_device](https://pytorch.org/docs/stable/generated/torch.cpu.current_device.html) | [paddle.get_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/get_device_cn.html#get-device) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.cpu.current_device.md) | -| 33 | [torch.cuda.Event](https://pytorch.org/docs/stable/generated/torch.cuda.Event.html#torch.cuda.Event) | [paddle.device.cuda.Event](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/Event_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.Event.md) | -| 34 | [torch.cuda.StreamContext](https://pytorch.org/docs/stable/generated/torch.cuda.StreamContext.html#torch.cuda.StreamContext) | [paddle.device.stream_guard](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/device/stream_guard_cn.html#stream-guard) | - | -| 35 | [torch.cuda.current_device](https://pytorch.org/docs/stable/generated/torch.cuda.current_device.html#torch.cuda.current_device) | [paddle.device.get_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/get_device_cn.html#get-device) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.current_device.md) | -| 36 | [torch.cuda.device_count](https://pytorch.org/docs/stable/generated/torch.cuda.device_count.html#torch.cuda.device_count) | [paddle.device.cuda.device_count](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/device_count_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.device_count.md) | -| 37 | [torch.cuda.empty_cache](https://pytorch.org/docs/stable/generated/torch.cuda.empty_cache.html#torch.cuda.empty_cache) | [paddle.device.cuda.empty_cache](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/empty_cache_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.empty_cache.md) | -| 38 | [torch.cuda.get_device_capability](https://pytorch.org/docs/stable/generated/torch.cuda.get_device_capability.html#torch.cuda.get_device_capability) | [paddle.device.cuda.get_device_capability](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/get_device_capability_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.get_device_capability.md) | -| 39 | [torch.cuda.get_device_name](https://pytorch.org/docs/stable/generated/torch.cuda.get_device_name.html) | [paddle.device.cuda.get_device_name](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/get_device_name_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.get_device_name.md) | -| 40 | [torch.cuda.is_bf16_supported](https://pytorch.org/docs/stable/cuda.html) | [paddle.amp.is_bfloat16_supported](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amp/is_bfloat16_supported_cn.html#is-bfloat16-supported) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.is_bf16_supported.md) | -| 41 | [torch.cuda.is_initialized](https://docs.pytorch.org/docs/stable/generated/torch.cuda.is_initialized.html#torch-cuda-is-initialized) | [paddle.is_compiled_with_cuda](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/base/framework.py#L980) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.is_initialized.md) | -| 42 | [torch.cuda.manual_seed_all](https://pytorch.org/docs/2.0/generated/torch.cuda.manual_seed_all.html#torch.cuda.manual_seed_all) | [paddle.seed](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/seed_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.manual_seed_all.md) | -| 43 | [torch.cuda.max_memory_allocated](https://pytorch.org/docs/stable/generated/torch.cuda.max_memory_allocated.html#torch.cuda.max_memory_allocated) | [paddle.device.cuda.max_memory_allocated](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/max_memory_allocated_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.max_memory_allocated.md) | -| 44 | [torch.cuda.max_memory_reserved](https://pytorch.org/docs/stable/generated/torch.cuda.max_memory_reserved.html#torch.cuda.max_memory_reserved) | [paddle.device.cuda.max_memory_reserved](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/max_memory_reserved_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.max_memory_reserved.md) | -| 45 | [torch.cuda.memory_allocated](https://pytorch.org/docs/stable/generated/torch.cuda.memory_allocated.html#torch.cuda.memory_allocated) | [paddle.device.cuda.memory_allocated](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/memory_allocated_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.memory_allocated.md) | -| 46 | [torch.cuda.memory_reserved](https://pytorch.org/docs/stable/generated/torch.cuda.memory_reserved.html#torch.cuda.memory_reserved) | [paddle.device.cuda.memory_reserved](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/memory_reserved_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.memory_reserved.md) | -| 47 | [torch.cuda.nvtx.range_pop](https://pytorch.org/docs/stable/generated/torch.cuda.nvtx.range_pop.html#torch.cuda.nvtx.range_pop) | [paddle.framework.core.nvprof_nvtx_pop](https://github.com/PaddlePaddle/Paddle/blob/645dfb4040a15712cea9ccfed4dcb0655aeeb0ea/paddle/fluid/pybind/pybind.cc#L2468) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.nvtx.range_pop.md) | -| 48 | [torch.cuda.reset_max_memory_allocated](https://pytorch.org/docs/stable/generated/torch.cuda.reset_max_memory_allocated.html#torch.cuda.reset_max_memory_allocated) | [paddle.device.cuda.reset_max_memory_allocated](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/reset_max_memory_allocated_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.reset_max_memory_allocated.md) | -| 49 | [torch.cuda.reset_max_memory_cached](https://docs.pytorch.org/docs/stable/generated/torch.cuda.reset_max_memory_cached.html#torch-cuda-reset-max-memory-cached) | [paddle.device.cuda.reset_max_memory_reserved](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/reset_max_memory_reserved_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.reset_max_memory_cached.md) | -| 50 | [torch.cuda.set_stream](https://pytorch.org/docs/stable/generated/torch.cuda.set_stream.html#torch.cuda.set_stream) | [paddle.device.set_stream](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/device/set_stream_cn.html#set-stream) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.set_stream.md) | -| 51 | [torch.cuda.stream](https://pytorch.org/docs/stable/generated/torch.cuda.stream.html) | [paddle.device.stream_guard](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/stream_guard_cn.html#stream-guard) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.stream.md) | -| 52 | [torch.distributed.ReduceOp.PRODUCT](https://pytorch.org/docs/stable/distributed.html#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp.PROD](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html#reduceop) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.distributed.ReduceOp.PRODUCT.md) | -| 53 | [torch.distributed.is_nccl_available](https://pytorch.org/docs/stable/distributed.html#torch.distributed.is_nccl_available) | [paddle.core.is_compiled_with_nccl](https://github.com/PaddlePaddle/Paddle/blob/61de6003525166856157b6220205fe53df638376/python/paddle/jit/sot/utils/paddle_api_config.py#L159) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/distributed/torch.distributed.is_nccl_available.md) | -| 54 | [torch.distributions.constraints.Constraint](https://pytorch.org/docs/stable/distributions.html#module-torch.distributions.constraints) | [paddle.distribution.constraint.Constraint](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/distribution/constraint.py) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/distributions/torch.distributions.constraints.Constraint.md) | -| 55 | [torch.distributions.distribution.Distribution.log_prob](https://pytorch.org/docs/stable/distributions.html#torch.distributions.distribution.Distribution.log_prob) | [paddle.distribution.Distribution.log_prob](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Distribution_cn.html#log-prob-value) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/distributions/torch.distributions.distribution.Distribution.log_prob.md) | -| 56 | [torch.distributions.kl.kl_divergence](https://pytorch.org/docs/stable/distributions.html?highlight=torch+distributions+kl+kl_divergence#torch.distributions.kl.kl_divergence) | [paddle.distribution.kl_divergence](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/kl_divergence_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/distributions/torch.distributions.kl.kl_divergence.md) | -| 57 | [torch.get_default_device](https://pytorch.org/docs/stable/generated/torch.get_default_device.html#torch-get-default-device) | [paddle.device.get_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/get_device_cn.html#get-device) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.get_default_device.md) | -| 58 | [torch.manual_seed](https://pytorch.org/docs/stable/generated/torch.manual_seed.html#torch-manual-seed) | [paddle.seed](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/seed_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.manual_seed.md) | -| 59 | [torch.nn.AdaptiveAvgPool1d](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveAvgPool1d.html) | [paddle.nn.AdaptiveAvgPool1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/AdaptiveAvgPool1D_cn.html#adaptiveavgpool1d) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.AdaptiveAvgPool1d.md) | -| 60 | [torch.nn.HuberLoss](https://pytorch.org/docs/stable/generated/torch.nn.HuberLoss.html#torch.nn.HuberLoss) | [paddle.nn.SmoothL1Loss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SmoothL1Loss_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.HuberLoss.md) | -| 61 | [torch.nn.Module.apply](https://pytorch.org/docs/stable/generated/torch.nn.Module.html?highlight=torch+nn+module+apply#torch.nn.Module.apply) | [paddle.nn.Layer.apply](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.apply.md) | -| 62 | [torch.nn.Module.children](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.children) | [paddle.nn.Layer.children](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#children) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.children.md) | -| 63 | [torch.nn.Module.eval](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.eval) | [paddle.nn.Layer.eval](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#eval) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.eval.md) | -| 64 | [torch.nn.Module.named_children](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.named_children) | [paddle.nn.Layer.named_children](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#named-children) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.named_children.md) | -| 65 | [torch.nn.Module.train](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.train) | [paddle.nn.Layer.train](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#train) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.train.md) | -| 66 | [torch.optim.Optimizer.add_param_group](https://pytorch.org/docs/stable/generated/torch.optim.Optimizer.add_param_group.html?highlight=torch+optim+optimizer+add_param_group#torch.optim.Optimizer.add_param_group) | paddle.optimizer.Optimizer._add_param_group | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.optim.Optimizer.add_param_group.md) | -| 67 | [torch.optim.Optimizer.load_state_dict](https://pytorch.org/docs/stable/generated/torch.optim.Optimizer.load_state_dict.html#torch.optim.Optimizer.load_state_dict) | [paddle.optimizer.Optimizer.load_state_dict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Optimizer_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/optimizer/torch.optim.Optimizer.load_state_dict.md) | -| 68 | [torch.optim.Optimizer.state_dict](https://pytorch.org/docs/stable/generated/torch.optim.Optimizer.state_dict.html?highlight=torch+optim+optimizer+state_dict#torch.optim.Optimizer.state_dict) | [paddle.optimizer.Optimizer.state_dict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Optimizer_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/optimizer/torch.optim.Optimizer.state_dict.md) | -| 69 | torch.utils.cpp_extension.CUDA_HOME | paddle.utils.cpp_extension.cpp_extension.CUDA_HOME | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.cpp_extension.CUDA_HOME.md) | -| 70 | [torch.utils.data.ChainDataset](https://pytorch.org/docs/stable/data.html#torch.utils.data.ChainDataset) | [paddle.io.ChainDataset](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/ChainDataset_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.ChainDataset.md) | -| 71 | [torch.utils.data.ConcatDataset](https://pytorch.org/docs/stable/data.html#torch.utils.data.ConcatDataset) | [paddle.io.ConcatDataset](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/ConcatDataset_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.ConcatDataset.md) | -| 72 | [torch.utils.data.Dataset](https://pytorch.org/docs/stable/data.html?highlight=torch%20utils%20data%20dataset#torch.utils.data.Dataset) | [paddle.io.Dataset](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/io/Dataset_cn.html#dataset) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.Dataset.md) | -| 73 | [torch.utils.data.IterableDataset](https://pytorch.org/docs/stable/data.html#torch.utils.data.IterableDataset) | [paddle.io.IterableDataset](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/IterableDataset_cn.html#iterabledataset) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.IterableDataset.md) | -| 74 | [torch.utils.data.Sampler](https://pytorch.org/docs/stable/data.html#torch.utils.data.Sampler) | [paddle.io.Sampler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/Sampler_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.Sampler.md) | -| 75 | [torch.utils.data.SequentialSampler](https://pytorch.org/docs/stable/generated/torch.utils.data.SequentialSampler.html) | [paddle.io.SequenceSampler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/SequenceSampler_cn.html#sequencesampler) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.utils.data.SequentialSampler.md) | -| 76 | [torch.utils.data.Subset](https://pytorch.org/docs/stable/data.html#torch.utils.data.Subset) | [paddle.io.Subset](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/Subset_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.Subset.md) | -| 77 | [torch.utils.data.get_worker_info](https://pytorch.org/docs/stable/data.html#torch.utils.data.get_worker_info) | [paddle.io.get_worker_info](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/get_worker_info_cn.html#get-worker-info) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.get_worker_info.md) | -| 78 | [torch.utils.data.random_split](https://pytorch.org/docs/stable/data.html?highlight=torch+utils+data+random_split#torch.utils.data.random_split) | [paddle.io.random_split](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/random_split_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.random_split.md) | -| 79 | [torchvision.ops.RoIPool](https://pytorch.org/vision/main/generated/torchvision.ops.RoIPool.html) | [paddle.vision.ops.RoIPool](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/ops/RoIPool_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.ops.RoIPool.md) | -| 80 | [torchvision.transforms.Compose](https://pytorch.org/vision/main/generated/torchvision.transforms.Compose.html) | [paddle.vision.transforms.Compose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/Compose_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.Compose.md) | -| 81 | [torchvision.transforms.InterpolationMode.BICUBIC](https://pytorch.org/vision/stable/index.html) | 'bicubic' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.BICUBIC.md) | -| 82 | [torchvision.transforms.InterpolationMode.BILINEAR](https://pytorch.org/vision/stable/index.html) | 'bilinear' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.BILINEAR.md) | -| 83 | [torchvision.transforms.InterpolationMode.BOX](https://pytorch.org/vision/stable/index.html) | 'box' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.BOX.md) | -| 84 | [torchvision.transforms.InterpolationMode.HAMMING](https://pytorch.org/vision/stable/index.html) | 'hamming' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.HAMMING.md) | -| 85 | [torchvision.transforms.InterpolationMode.LANCZOS](https://pytorch.org/vision/stable/index.html) | 'lanczos' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.LANCZOS.md) | -| 86 | [torchvision.transforms.InterpolationMode.NEAREST](https://pytorch.org/vision/stable/index.html) | 'nearest' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.NEAREST.md) | -| 87 | [torchvision.transforms.InterpolationMode.NEAREST_EXACT](https://pytorch.org/vision/stable/index.html) | 'nearest_exact' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.NEAREST_EXACT.md) | -| 88 | [torchvision.transforms.functional.adjust_brightness](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.adjust_brightness.html) | [paddle.vision.transforms.adjust_brightness](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/adjust_brightness_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.adjust_brightness.md) | -| 89 | [torchvision.transforms.functional.adjust_contrast](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.adjust_contrast.html) | [paddle.vision.transforms.adjust_contrast](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/adjust_contrast_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.adjust_contrast.md) | -| 90 | [torchvision.transforms.functional.adjust_hue](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.adjust_hue.html) | [paddle.vision.transforms.adjust_hue](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/adjust_hue_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.adjust_hue.md) | -| 91 | [torchvision.transforms.functional.center_crop](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.center_crop.html) | [paddle.vision.transforms.center_crop](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/center_crop_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.center_crop.md) | -| 92 | [torchvision.transforms.functional.crop](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.crop.html) | [paddle.vision.transforms.crop](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/crop_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.crop.md) | -| 93 | [torchvision.transforms.functional.erase](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.erase.html?highlight=erase#torchvision.transforms.functional.erase) | [paddle.vision.transforms.erase](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/erase_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.erase.md) | -| 94 | [torchvision.transforms.functional.hflip](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.hflip.html) | [paddle.vision.transforms.hflip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/hflip_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.hflip.md) | -| 95 | [torchvision.transforms.functional.pad](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.pad.html) | [paddle.vision.transforms.pad](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/transforms/pad_cn.html) | - | -| 96 | [torchvision.transforms.functional.to_grayscale](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.to_grayscale.html?highlight=to_grayscale#torchvision.transforms.functional.to_grayscale) | [paddle.vision.transforms.to_grayscale](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/to_grayscale_cn.html#to-grayscale) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.to_grayscale.md) | -| 97 | [torchvision.transforms.functional.vflip](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.vflip.html) | [paddle.vision.transforms.vflip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/vflip_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.vflip.md) | +| 11 | [torch.Tensor.matrix_exp](https://pytorch.org/docs/stable/generated/torch.Tensor.matrix_exp.html#torch-tensor-matrix-exp) | [paddle.linalg.matrix_exp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_exp_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.matrix_exp.md) | +| 12 | [torch.Tensor.movedim](https://pytorch.org/docs/stable/generated/torch.Tensor.movedim.html) | [paddle.Tensor.moveaxis](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/moveaxis_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.movedim.md) | +| 13 | [torch.Tensor.mvlgamma](https://pytorch.org/docs/stable/generated/torch.Tensor.mvlgamma.html#torch-tensor-mvlgamma) | [paddle.Tensor.multigammaln](https://github.com/PaddlePaddle/Paddle/blob/be090bd0bc9ac7a8595296c316b3a6ed3dc60ba6/python/paddle/tensor/math.py#L5099) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.mvlgamma.md) | +| 14 | [torch.Tensor.mvlgamma_](https://pytorch.org/docs/stable/generated/torch.Tensor.mvlgamma_.html#torch-tensor-mvlgamma) | [paddle.Tensor.multigammaln_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/multigammaln__cn.html#multigammaln) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.mvlgamma_.md) | +| 15 | [torch.Tensor.negative](https://pytorch.org/docs/stable/generated/torch.negative.html#torch.negative) | [paddle.Tensor.neg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/neg_cn.html#cn-api-paddle-neg) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.negative.md) | +| 16 | [torch.Tensor.negative_](https://pytorch.org/docs/stable/generated/torch.Tensor.negative_.html) | paddle.Tensor.neg_ | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.negative_.md) | +| 17 | [torch.Tensor.positive](https://pytorch.org/docs/stable/generated/torch.Tensor.positive.html#torch.Tensor.positive) | [paddle.positive](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/positive_cn.html#positive) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.positive.md) | +| 18 | [torch.Tensor.retain_grad](https://pytorch.org/docs/stable/generated/torch.Tensor.retain_grad.html) | [paddle.Tensor.retain_grads](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Overview_cn.html#paddle) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.retain_grad.md) | +| 19 | [torch.Tensor.sparse_mask](https://pytorch.org/docs/stable/generated/torch.Tensor.sparse_mask.html) | [paddle.sparse.mask_as](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/sparse/mask_as_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.sparse_mask.md) | +| 20 | [torch.Tensor.square_](https://pytorch.org/docs/stable/generated/torch.Tensor.square_.html) | paddle.square_ | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.square_.md) | +| 21 | [torch.Tensor.to_sparse](https://pytorch.org/docs/stable/generated/torch.Tensor.to_sparse.html#torch.Tensor.to_sparse) | paddle.Tensor.to_sparse_coo | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/Tensor/torch.Tensor.to_sparse.md) | +| 22 | [torch.autograd.Function.forward](https://pytorch.org/docs/stable/generated/torch.autograd.Function.forward.html#torch.autograd.Function.forward) | [paddle.autograd.PyLayer.forward](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayer_cn.html#forward-ctx-args-kwargs) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.Function.forward.md) | +| 23 | [torch.autograd.enable_grad](https://pytorch.org/docs/stable/generated/torch.enable_grad.html#enable-grad) | [paddle.enable_grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/enable_grad.html#enable-grad) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.enable_grad.md) | +| 24 | torch.autograd.function.FunctionCtx | [paddle.autograd.PyLayerContext](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayerContext_cn.html#pylayercontext) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.autograd.function.FunctionCtx.md) | +| 25 | [torch.autograd.function.FunctionCtx.save_for_backward](https://pytorch.org/docs/stable/generated/torch.autograd.function.FunctionCtx.save_for_backward.html#torch.autograd.function.FunctionCtx.save_for_backward) | [paddle.autograd.PyLayerContext.save_for_backward](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayerContext_cn.html#save-for-backward-tensors) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.function.FunctionCtx.save_for_backward.md) | +| 26 | [torch.autograd.function.FunctionCtx.set_materialize_grads](https://pytorch.org/docs/stable/generated/torch.autograd.function.FunctionCtx.set_materialize_grads.html#torch.autograd.function.FunctionCtx.set_materialize_grads) | [paddle.autograd.PyLayerContext.set_materialize_grads](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayerContext_cn.html#set-materialize-grads-self-value) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.function.FunctionCtx.set_materialize_grads.md) | +| 27 | [torch.autograd.grad_mode.set_grad_enabled](https://docs.pytorch.org/docs/stable/generated/torch.autograd.grad_mode.set_grad_enabled.html#torch.autograd.grad_mode.set_grad_enabled) | [paddle.set_grad_enabled](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/set_grad_enabled_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.grad_mode.set_grad_enabled.md) | +| 28 | [torch.autograd.graph.saved_tensors_hooks](https://pytorch.org/docs/stable/autograd.html?highlight=saved_tensors_hooks#torch.autograd.graph.saved_tensors_hooks) | [paddle.autograd.saved_tensors_hooks](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/saved_tensors_hooks_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.autograd.graph.saved_tensors_hooks.md) | +| 29 | [torch.backends.cuda.is_built](https://pytorch.org/docs/stable/backends.html?highlight=torch+backends+cudnn+is_available#torch.backends.cuda.is_built) | [paddle.device.is_compiled_with_cuda](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/is_compiled_with_cuda_cn.html#is-compiled-with-cuda) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.backends.cuda.is_built.md) | +| 30 | [torch.backends.cudnn.version](https://pytorch.org/docs/stable/generated/torch.backends.cudnn.version.html) | [paddle.device.get_cudnn_version](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/get_cudnn_version_cn.html#get-cudnn-version) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.backends.cudnn.version.md) | +| 31 | [torch.cpu.current_device](https://pytorch.org/docs/stable/generated/torch.cpu.current_device.html) | [paddle.get_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/get_device_cn.html#get-device) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.cpu.current_device.md) | +| 32 | [torch.cuda.Event](https://pytorch.org/docs/stable/generated/torch.cuda.Event.html#torch.cuda.Event) | [paddle.device.cuda.Event](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/Event_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.Event.md) | +| 33 | [torch.cuda.StreamContext](https://pytorch.org/docs/stable/generated/torch.cuda.StreamContext.html#torch.cuda.StreamContext) | [paddle.device.stream_guard](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/device/stream_guard_cn.html#stream-guard) | - | +| 34 | [torch.cuda.current_device](https://pytorch.org/docs/stable/generated/torch.cuda.current_device.html#torch.cuda.current_device) | [paddle.device.get_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/get_device_cn.html#get-device) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.current_device.md) | +| 35 | [torch.cuda.device_count](https://pytorch.org/docs/stable/generated/torch.cuda.device_count.html#torch.cuda.device_count) | [paddle.device.cuda.device_count](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/device_count_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.device_count.md) | +| 36 | [torch.cuda.empty_cache](https://pytorch.org/docs/stable/generated/torch.cuda.empty_cache.html#torch.cuda.empty_cache) | [paddle.device.cuda.empty_cache](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/empty_cache_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.empty_cache.md) | +| 37 | [torch.cuda.get_device_capability](https://pytorch.org/docs/stable/generated/torch.cuda.get_device_capability.html#torch.cuda.get_device_capability) | [paddle.device.cuda.get_device_capability](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/get_device_capability_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.get_device_capability.md) | +| 38 | [torch.cuda.get_device_name](https://pytorch.org/docs/stable/generated/torch.cuda.get_device_name.html) | [paddle.device.cuda.get_device_name](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/get_device_name_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.get_device_name.md) | +| 39 | [torch.cuda.is_bf16_supported](https://pytorch.org/docs/stable/cuda.html) | [paddle.amp.is_bfloat16_supported](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amp/is_bfloat16_supported_cn.html#is-bfloat16-supported) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.is_bf16_supported.md) | +| 40 | [torch.cuda.is_initialized](https://docs.pytorch.org/docs/stable/generated/torch.cuda.is_initialized.html#torch-cuda-is-initialized) | [paddle.is_compiled_with_cuda](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/base/framework.py#L980) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.is_initialized.md) | +| 41 | [torch.cuda.manual_seed_all](https://pytorch.org/docs/2.0/generated/torch.cuda.manual_seed_all.html#torch.cuda.manual_seed_all) | [paddle.seed](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/seed_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.manual_seed_all.md) | +| 42 | [torch.cuda.max_memory_allocated](https://pytorch.org/docs/stable/generated/torch.cuda.max_memory_allocated.html#torch.cuda.max_memory_allocated) | [paddle.device.cuda.max_memory_allocated](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/max_memory_allocated_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.max_memory_allocated.md) | +| 43 | [torch.cuda.max_memory_reserved](https://pytorch.org/docs/stable/generated/torch.cuda.max_memory_reserved.html#torch.cuda.max_memory_reserved) | [paddle.device.cuda.max_memory_reserved](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/max_memory_reserved_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.max_memory_reserved.md) | +| 44 | [torch.cuda.memory_allocated](https://pytorch.org/docs/stable/generated/torch.cuda.memory_allocated.html#torch.cuda.memory_allocated) | [paddle.device.cuda.memory_allocated](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/memory_allocated_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.memory_allocated.md) | +| 45 | [torch.cuda.memory_reserved](https://pytorch.org/docs/stable/generated/torch.cuda.memory_reserved.html#torch.cuda.memory_reserved) | [paddle.device.cuda.memory_reserved](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/memory_reserved_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.memory_reserved.md) | +| 46 | [torch.cuda.nvtx.range_pop](https://pytorch.org/docs/stable/generated/torch.cuda.nvtx.range_pop.html#torch.cuda.nvtx.range_pop) | [paddle.framework.core.nvprof_nvtx_pop](https://github.com/PaddlePaddle/Paddle/blob/645dfb4040a15712cea9ccfed4dcb0655aeeb0ea/paddle/fluid/pybind/pybind.cc#L2468) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.nvtx.range_pop.md) | +| 47 | [torch.cuda.reset_max_memory_allocated](https://pytorch.org/docs/stable/generated/torch.cuda.reset_max_memory_allocated.html#torch.cuda.reset_max_memory_allocated) | [paddle.device.cuda.reset_max_memory_allocated](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/reset_max_memory_allocated_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.reset_max_memory_allocated.md) | +| 48 | [torch.cuda.reset_max_memory_cached](https://docs.pytorch.org/docs/stable/generated/torch.cuda.reset_max_memory_cached.html#torch-cuda-reset-max-memory-cached) | [paddle.device.cuda.reset_max_memory_reserved](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/reset_max_memory_reserved_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.reset_max_memory_cached.md) | +| 49 | [torch.cuda.set_stream](https://pytorch.org/docs/stable/generated/torch.cuda.set_stream.html#torch.cuda.set_stream) | [paddle.device.set_stream](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/device/set_stream_cn.html#set-stream) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.set_stream.md) | +| 50 | [torch.cuda.stream](https://pytorch.org/docs/stable/generated/torch.cuda.stream.html) | [paddle.device.stream_guard](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/stream_guard_cn.html#stream-guard) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/cuda/torch.cuda.stream.md) | +| 51 | [torch.distributed.ReduceOp.PRODUCT](https://pytorch.org/docs/stable/distributed.html#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp.PROD](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html#reduceop) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.distributed.ReduceOp.PRODUCT.md) | +| 52 | [torch.distributed.is_nccl_available](https://pytorch.org/docs/stable/distributed.html#torch.distributed.is_nccl_available) | [paddle.core.is_compiled_with_nccl](https://github.com/PaddlePaddle/Paddle/blob/61de6003525166856157b6220205fe53df638376/python/paddle/jit/sot/utils/paddle_api_config.py#L159) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/distributed/torch.distributed.is_nccl_available.md) | +| 53 | [torch.distributions.constraints.Constraint](https://pytorch.org/docs/stable/distributions.html#module-torch.distributions.constraints) | [paddle.distribution.constraint.Constraint](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/distribution/constraint.py) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/distributions/torch.distributions.constraints.Constraint.md) | +| 54 | [torch.distributions.distribution.Distribution.log_prob](https://pytorch.org/docs/stable/distributions.html#torch.distributions.distribution.Distribution.log_prob) | [paddle.distribution.Distribution.log_prob](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Distribution_cn.html#log-prob-value) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/distributions/torch.distributions.distribution.Distribution.log_prob.md) | +| 55 | [torch.distributions.kl.kl_divergence](https://pytorch.org/docs/stable/distributions.html?highlight=torch+distributions+kl+kl_divergence#torch.distributions.kl.kl_divergence) | [paddle.distribution.kl_divergence](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/kl_divergence_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/distributions/torch.distributions.kl.kl_divergence.md) | +| 56 | [torch.get_default_device](https://pytorch.org/docs/stable/generated/torch.get_default_device.html#torch-get-default-device) | [paddle.device.get_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/get_device_cn.html#get-device) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.get_default_device.md) | +| 57 | [torch.manual_seed](https://pytorch.org/docs/stable/generated/torch.manual_seed.html#torch-manual-seed) | [paddle.seed](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/seed_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.manual_seed.md) | +| 58 | [torch.nn.AdaptiveAvgPool1d](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveAvgPool1d.html) | [paddle.nn.AdaptiveAvgPool1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/AdaptiveAvgPool1D_cn.html#adaptiveavgpool1d) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.AdaptiveAvgPool1d.md) | +| 59 | [torch.nn.HuberLoss](https://pytorch.org/docs/stable/generated/torch.nn.HuberLoss.html#torch.nn.HuberLoss) | [paddle.nn.SmoothL1Loss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SmoothL1Loss_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.HuberLoss.md) | +| 60 | [torch.nn.Module.apply](https://pytorch.org/docs/stable/generated/torch.nn.Module.html?highlight=torch+nn+module+apply#torch.nn.Module.apply) | [paddle.nn.Layer.apply](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.apply.md) | +| 61 | [torch.nn.Module.children](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.children) | [paddle.nn.Layer.children](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#children) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.children.md) | +| 62 | [torch.nn.Module.eval](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.eval) | [paddle.nn.Layer.eval](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#eval) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.eval.md) | +| 63 | [torch.nn.Module.named_children](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.named_children) | [paddle.nn.Layer.named_children](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#named-children) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.named_children.md) | +| 64 | [torch.nn.Module.train](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.train) | [paddle.nn.Layer.train](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#train) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/nn/torch.nn.Module.train.md) | +| 65 | [torch.optim.Optimizer.add_param_group](https://pytorch.org/docs/stable/generated/torch.optim.Optimizer.add_param_group.html?highlight=torch+optim+optimizer+add_param_group#torch.optim.Optimizer.add_param_group) | paddle.optimizer.Optimizer._add_param_group | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/others/torch.optim.Optimizer.add_param_group.md) | +| 66 | [torch.optim.Optimizer.load_state_dict](https://pytorch.org/docs/stable/generated/torch.optim.Optimizer.load_state_dict.html#torch.optim.Optimizer.load_state_dict) | [paddle.optimizer.Optimizer.load_state_dict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Optimizer_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/optimizer/torch.optim.Optimizer.load_state_dict.md) | +| 67 | [torch.optim.Optimizer.state_dict](https://pytorch.org/docs/stable/generated/torch.optim.Optimizer.state_dict.html?highlight=torch+optim+optimizer+state_dict#torch.optim.Optimizer.state_dict) | [paddle.optimizer.Optimizer.state_dict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Optimizer_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/optimizer/torch.optim.Optimizer.state_dict.md) | +| 68 | torch.utils.cpp_extension.CUDA_HOME | paddle.utils.cpp_extension.cpp_extension.CUDA_HOME | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.cpp_extension.CUDA_HOME.md) | +| 69 | [torch.utils.data.ChainDataset](https://pytorch.org/docs/stable/data.html#torch.utils.data.ChainDataset) | [paddle.io.ChainDataset](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/ChainDataset_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.ChainDataset.md) | +| 70 | [torch.utils.data.ConcatDataset](https://pytorch.org/docs/stable/data.html#torch.utils.data.ConcatDataset) | [paddle.io.ConcatDataset](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/ConcatDataset_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.ConcatDataset.md) | +| 71 | [torch.utils.data.Dataset](https://pytorch.org/docs/stable/data.html?highlight=torch%20utils%20data%20dataset#torch.utils.data.Dataset) | [paddle.io.Dataset](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/io/Dataset_cn.html#dataset) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.Dataset.md) | +| 72 | [torch.utils.data.IterableDataset](https://pytorch.org/docs/stable/data.html#torch.utils.data.IterableDataset) | [paddle.io.IterableDataset](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/IterableDataset_cn.html#iterabledataset) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.IterableDataset.md) | +| 73 | [torch.utils.data.Sampler](https://pytorch.org/docs/stable/data.html#torch.utils.data.Sampler) | [paddle.io.Sampler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/Sampler_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.Sampler.md) | +| 74 | [torch.utils.data.SequentialSampler](https://pytorch.org/docs/stable/generated/torch.utils.data.SequentialSampler.html) | [paddle.io.SequenceSampler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/SequenceSampler_cn.html#sequencesampler) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/torch/torch.utils.data.SequentialSampler.md) | +| 75 | [torch.utils.data.Subset](https://pytorch.org/docs/stable/data.html#torch.utils.data.Subset) | [paddle.io.Subset](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/Subset_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.Subset.md) | +| 76 | [torch.utils.data.get_worker_info](https://pytorch.org/docs/stable/data.html#torch.utils.data.get_worker_info) | [paddle.io.get_worker_info](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/get_worker_info_cn.html#get-worker-info) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.get_worker_info.md) | +| 77 | [torch.utils.data.random_split](https://pytorch.org/docs/stable/data.html?highlight=torch+utils+data+random_split#torch.utils.data.random_split) | [paddle.io.random_split](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/random_split_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference/utils/torch.utils.data.random_split.md) | +| 78 | [torchvision.ops.RoIPool](https://pytorch.org/vision/main/generated/torchvision.ops.RoIPool.html) | [paddle.vision.ops.RoIPool](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/ops/RoIPool_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.ops.RoIPool.md) | +| 79 | [torchvision.transforms.Compose](https://pytorch.org/vision/main/generated/torchvision.transforms.Compose.html) | [paddle.vision.transforms.Compose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/Compose_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.Compose.md) | +| 80 | [torchvision.transforms.InterpolationMode.BICUBIC](https://pytorch.org/vision/stable/index.html) | 'bicubic' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.BICUBIC.md) | +| 81 | [torchvision.transforms.InterpolationMode.BILINEAR](https://pytorch.org/vision/stable/index.html) | 'bilinear' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.BILINEAR.md) | +| 82 | [torchvision.transforms.InterpolationMode.BOX](https://pytorch.org/vision/stable/index.html) | 'box' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.BOX.md) | +| 83 | [torchvision.transforms.InterpolationMode.HAMMING](https://pytorch.org/vision/stable/index.html) | 'hamming' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.HAMMING.md) | +| 84 | [torchvision.transforms.InterpolationMode.LANCZOS](https://pytorch.org/vision/stable/index.html) | 'lanczos' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.LANCZOS.md) | +| 85 | [torchvision.transforms.InterpolationMode.NEAREST](https://pytorch.org/vision/stable/index.html) | 'nearest' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.NEAREST.md) | +| 86 | [torchvision.transforms.InterpolationMode.NEAREST_EXACT](https://pytorch.org/vision/stable/index.html) | 'nearest_exact' | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.InterpolationMode.NEAREST_EXACT.md) | +| 87 | [torchvision.transforms.functional.adjust_brightness](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.adjust_brightness.html) | [paddle.vision.transforms.adjust_brightness](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/adjust_brightness_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.adjust_brightness.md) | +| 88 | [torchvision.transforms.functional.adjust_contrast](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.adjust_contrast.html) | [paddle.vision.transforms.adjust_contrast](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/adjust_contrast_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.adjust_contrast.md) | +| 89 | [torchvision.transforms.functional.adjust_hue](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.adjust_hue.html) | [paddle.vision.transforms.adjust_hue](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/adjust_hue_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.adjust_hue.md) | +| 90 | [torchvision.transforms.functional.center_crop](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.center_crop.html) | [paddle.vision.transforms.center_crop](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/center_crop_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.center_crop.md) | +| 91 | [torchvision.transforms.functional.crop](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.crop.html) | [paddle.vision.transforms.crop](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/crop_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.crop.md) | +| 92 | [torchvision.transforms.functional.erase](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.erase.html?highlight=erase#torchvision.transforms.functional.erase) | [paddle.vision.transforms.erase](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/erase_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.erase.md) | +| 93 | [torchvision.transforms.functional.hflip](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.hflip.html) | [paddle.vision.transforms.hflip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/hflip_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.hflip.md) | +| 94 | [torchvision.transforms.functional.pad](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.pad.html) | [paddle.vision.transforms.pad](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/transforms/pad_cn.html) | - | +| 95 | [torchvision.transforms.functional.to_grayscale](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.to_grayscale.html?highlight=to_grayscale#torchvision.transforms.functional.to_grayscale) | [paddle.vision.transforms.to_grayscale](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/to_grayscale_cn.html#to-grayscale) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.to_grayscale.md) | +| 96 | [torchvision.transforms.functional.vflip](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.vflip.html) | [paddle.vision.transforms.vflip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/vflip_cn.html) | [差异对比](https://github.com/PaddlePaddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/api_difference_third_party/torchvision/torchvision.transforms.functional.vflip.md) | ## 3. 仅参数名不一致 **分类简介** -此类 API 功能相同,但部分参数名称不同 - - +此类 API 功能相同,但部分参数名称不同。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| @@ -680,33 +695,33 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) | 74 | [torch.Tensor.cumsum_](https://pytorch.org/docs/stable/generated/torch.Tensor.cumsum_.html) | paddle.Tensor.cumsum_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.cumsum_.md) | | 75 | [torch.Tensor.mode](https://pytorch.org/docs/stable/generated/torch.Tensor.mode.html) | [paddle.Tensor.mode](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mode-axis-1-keepdim-false-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.mode.md) | | 76 | [torch.Tensor.fmin](https://pytorch.org/docs/stable/generated/torch.Tensor.fmin.html?highlight=fmin#torch.Tensor.fmin) | [paddle.Tensor.fmin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fmin_cn.html#fmin) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.fmin.md) | -| 77 | [torch.Tensor.expand_as](https://pytorch.org/docs/stable/generated/torch.Tensor.expand_as.html?highlight=expand_as) | [paddle.Tensor.expand_as](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#expand-as-y-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.expand_as.md) | -| 78 | [torch.Tensor.lerp_](https://pytorch.org/docs/stable/generated/torch.Tensor.lerp_.html) | [paddle.Tensor.lerp_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#lerp-x-y-weight-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lerp_.md) | -| 79 | [torch.Tensor.nanquantile](https://pytorch.org/docs/stable/generated/torch.nanquantile.html#torch.nanquantile) | [paddle.Tensor.nanquantile](https://github.com/PaddlePaddle/Paddle/pull/41343) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.nanquantile.md) | -| 80 | [torch.Tensor.igammac](https://pytorch.org/docs/stable/generated/torch.Tensor.igammac.html#torch.Tensor.igammac) | [paddle.Tensor.gammaincc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/gammaincc_cn.html#gammaincc) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.igammac.md) | -| 81 | [torch.Tensor.index_put](https://pytorch.org/docs/stable/generated/torch.Tensor.index_put.html?highlight=index_put#torch.Tensor.index_put) | [paddle.Tensor.index_put](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/index_put_cn.html#index-put) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.index_put.md) | -| 82 | [torch.Tensor.select_scatter](https://pytorch.org/docs/stable/generated/torch.Tensor.select_scatter.html#torch-select-scatter) | [paddle.Tensor.select_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.select_scatter.md) | -| 83 | [torch.Tensor.logaddexp](https://pytorch.org/docs/stable/generated/torch.Tensor.logaddexp.html#torch.Tensor.logaddexp) | [paddle.Tensor.logaddexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.logaddexp.md) | -| 84 | [torch.Tensor.logical_and_](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_and_.html) | paddle.Tensor.logical_and_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.logical_and_.md) | -| 85 | [torch.Tensor.renorm_](https://pytorch.org/docs/stable/generated/torch.Tensor.renorm_.html#torch-tensor-renorm_) | paddle.Tensor.renorm_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.renorm_.md) | -| 86 | [torch.Tensor.fmax](https://pytorch.org/docs/stable/generated/torch.Tensor.fmax.html?highlight=fmax#torch.Tensor.fmax) | [paddle.Tensor.fmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fmax_cn.html#fmax) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.fmax.md) | -| 87 | [torch.Tensor.tensor_split](https://pytorch.org/docs/stable/generated/torch.Tensor.tensor_split.html) | [paddle.Tensor.tensor_split](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor_split-num_or_indices-axis-0-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.tensor_split.md) | -| 88 | [torch.Tensor.nansum](https://pytorch.org/docs/stable/generated/torch.Tensor.nansum.html?highlight=nansum#torch.Tensor.nansum) | paddle.Tensor.nansum | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.nansum.md) | -| 89 | [torch.Tensor.std](https://pytorch.org/docs/stable/generated/torch.Tensor.std.html?highlight=torch+tensor+std#torch.Tensor.std) | [paddle.Tensor.std](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#std-axis-none-unbiased-true-keepdim-false-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.std.md) | -| 90 | [torch.Tensor.bitwise_xor_](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_xor_.html) | paddle.Tensor.bitwise_xor_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.bitwise_xor_.md) | -| 91 | [torch.Tensor.diag](https://pytorch.org/docs/stable/generated/torch.Tensor.diag.html?highlight=diag#torch.Tensor.diag) | [paddle.Tensor.diag](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diag_cn.html#diag) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.diag.md) | -| 92 | [torch.Tensor.squeeze_](https://pytorch.org/docs/stable/generated/torch.Tensor.squeeze_.html#torch-tensor-squeeze) | [paddle.Tensor.squeeze_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id19) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.squeeze_.md) | -| 93 | [torch.Tensor.unflatten](https://pytorch.org/docs/stable/generated/torch.Tensor.unflatten.html#torch.Tensor.unflatten) | [paddle.Tensor.unflatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unflatten-axis-shape-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.unflatten.md) | -| 94 | [torch.Tensor.baddbmm_](https://pytorch.org/docs/stable/generated/torch.Tensor.baddbmm_.html#torch.Tensor.baddbmm_) | [paddle.Tensor.baddbmm_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.baddbmm_.md) | -| 95 | [torch.Tensor.unfold](https://pytorch.org/docs/stable/generated/torch.Tensor.unfold.html?highlight=unfold#torch.Tensor.unfold) | [paddle.Tensor.unfold](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unfold-x-axis-size-step-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.unfold.md) | -| 96 | [torch.Tensor.addmm_](https://pytorch.org/docs/stable/generated/torch.Tensor.addmm_.html) | paddle.Tensor.addmm_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addmm_.md) | -| 97 | [torch.Tensor.vsplit](https://pytorch.org/docs/stable/generated/torch.Tensor.vsplit.html) | [paddle.Tensor.vsplit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#vsplit-num_or_indices-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.vsplit.md) | -| 98 | [torch.Tensor.bitwise_xor](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_xor.html) | paddle.Tensor.bitwise_xor | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.bitwise_xor.md) | -| 99 | [torch.Tensor.cross](https://pytorch.org/docs/stable/generated/torch.Tensor.cross.html?highlight=cross#torch.Tensor.cross) | [paddle.Tensor.cross](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cross-y-axis-none-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.cross.md) | -| 100 | [torch.Tensor.ger](https://pytorch.org/docs/stable/generated/torch.Tensor.ger.html?highlight=torch+tensor+ger#torch.Tensor.ger) | paddle.Tensor.outer | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.ger.md) | -| 101 | [torch.Tensor.isclose](https://pytorch.org/docs/stable/generated/torch.Tensor.isclose.html) | [paddle.Tensor.isclose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isclose-x-y-rtol-1e-05-atol-1e-08-equal-nan-false-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.isclose.md) | -| 102 | [torch.Tensor.lerp](https://pytorch.org/docs/stable/generated/torch.Tensor.lerp.html) | [paddle.Tensor.lerp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#lerp-x-y-weight-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lerp.md) | -| 103 | [torch.Tensor.addmm](https://pytorch.org/docs/stable/generated/torch.Tensor.addmm.html) | paddle.Tensor.addmm | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addmm.md) | +| 77 | [torch.Tensor.lerp_](https://pytorch.org/docs/stable/generated/torch.Tensor.lerp_.html) | [paddle.Tensor.lerp_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#lerp-x-y-weight-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lerp_.md) | +| 78 | [torch.Tensor.nanquantile](https://pytorch.org/docs/stable/generated/torch.nanquantile.html#torch.nanquantile) | [paddle.Tensor.nanquantile](https://github.com/PaddlePaddle/Paddle/pull/41343) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.nanquantile.md) | +| 79 | [torch.Tensor.igammac](https://pytorch.org/docs/stable/generated/torch.Tensor.igammac.html#torch.Tensor.igammac) | [paddle.Tensor.gammaincc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/gammaincc_cn.html#gammaincc) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.igammac.md) | +| 80 | [torch.Tensor.index_put](https://pytorch.org/docs/stable/generated/torch.Tensor.index_put.html?highlight=index_put#torch.Tensor.index_put) | [paddle.Tensor.index_put](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/index_put_cn.html#index-put) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.index_put.md) | +| 81 | [torch.Tensor.select_scatter](https://pytorch.org/docs/stable/generated/torch.Tensor.select_scatter.html#torch-select-scatter) | [paddle.Tensor.select_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.select_scatter.md) | +| 82 | [torch.Tensor.logaddexp](https://pytorch.org/docs/stable/generated/torch.Tensor.logaddexp.html#torch.Tensor.logaddexp) | [paddle.Tensor.logaddexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.logaddexp.md) | +| 83 | [torch.Tensor.logical_and_](https://pytorch.org/docs/stable/generated/torch.Tensor.logical_and_.html) | paddle.Tensor.logical_and_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.logical_and_.md) | +| 84 | [torch.Tensor.renorm_](https://pytorch.org/docs/stable/generated/torch.Tensor.renorm_.html#torch-tensor-renorm_) | paddle.Tensor.renorm_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.renorm_.md) | +| 85 | [torch.Tensor.fmax](https://pytorch.org/docs/stable/generated/torch.Tensor.fmax.html?highlight=fmax#torch.Tensor.fmax) | [paddle.Tensor.fmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fmax_cn.html#fmax) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.fmax.md) | +| 86 | [torch.Tensor.tensor_split](https://pytorch.org/docs/stable/generated/torch.Tensor.tensor_split.html) | [paddle.Tensor.tensor_split](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor_split-num_or_indices-axis-0-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.tensor_split.md) | +| 87 | [torch.Tensor.nansum](https://pytorch.org/docs/stable/generated/torch.Tensor.nansum.html?highlight=nansum#torch.Tensor.nansum) | paddle.Tensor.nansum | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.nansum.md) | +| 88 | [torch.Tensor.std](https://pytorch.org/docs/stable/generated/torch.Tensor.std.html?highlight=torch+tensor+std#torch.Tensor.std) | [paddle.Tensor.std](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#std-axis-none-unbiased-true-keepdim-false-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.std.md) | +| 89 | [torch.Tensor.bitwise_xor_](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_xor_.html) | paddle.Tensor.bitwise_xor_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.bitwise_xor_.md) | +| 90 | [torch.Tensor.diag](https://pytorch.org/docs/stable/generated/torch.Tensor.diag.html?highlight=diag#torch.Tensor.diag) | [paddle.Tensor.diag](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diag_cn.html#diag) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.diag.md) | +| 91 | [torch.Tensor.squeeze_](https://pytorch.org/docs/stable/generated/torch.Tensor.squeeze_.html#torch-tensor-squeeze) | [paddle.Tensor.squeeze_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#id19) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.squeeze_.md) | +| 92 | [torch.Tensor.unflatten](https://pytorch.org/docs/stable/generated/torch.Tensor.unflatten.html#torch.Tensor.unflatten) | [paddle.Tensor.unflatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unflatten-axis-shape-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.unflatten.md) | +| 93 | [torch.Tensor.baddbmm_](https://pytorch.org/docs/stable/generated/torch.Tensor.baddbmm_.html#torch.Tensor.baddbmm_) | [paddle.Tensor.baddbmm_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.baddbmm_.md) | +| 94 | [torch.Tensor.unfold](https://pytorch.org/docs/stable/generated/torch.Tensor.unfold.html?highlight=unfold#torch.Tensor.unfold) | [paddle.Tensor.unfold](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unfold-x-axis-size-step-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.unfold.md) | +| 95 | [torch.Tensor.addmm_](https://pytorch.org/docs/stable/generated/torch.Tensor.addmm_.html) | paddle.Tensor.addmm_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addmm_.md) | +| 96 | [torch.Tensor.vsplit](https://pytorch.org/docs/stable/generated/torch.Tensor.vsplit.html) | [paddle.Tensor.vsplit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#vsplit-num_or_indices-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.vsplit.md) | +| 97 | [torch.Tensor.bitwise_xor](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_xor.html) | paddle.Tensor.bitwise_xor | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.bitwise_xor.md) | +| 98 | [torch.Tensor.cross](https://pytorch.org/docs/stable/generated/torch.Tensor.cross.html?highlight=cross#torch.Tensor.cross) | [paddle.Tensor.cross](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cross-y-axis-none-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.cross.md) | +| 99 | [torch.Tensor.ger](https://pytorch.org/docs/stable/generated/torch.Tensor.ger.html?highlight=torch+tensor+ger#torch.Tensor.ger) | paddle.Tensor.outer | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.ger.md) | +| 100 | [torch.Tensor.isclose](https://pytorch.org/docs/stable/generated/torch.Tensor.isclose.html) | [paddle.Tensor.isclose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#isclose-x-y-rtol-1e-05-atol-1e-08-equal-nan-false-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.isclose.md) | +| 101 | [torch.Tensor.lerp](https://pytorch.org/docs/stable/generated/torch.Tensor.lerp.html) | [paddle.Tensor.lerp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#lerp-x-y-weight-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lerp.md) | +| 102 | [torch.Tensor.addmm](https://pytorch.org/docs/stable/generated/torch.Tensor.addmm.html) | paddle.Tensor.addmm | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addmm.md) | +| 103 | torch.Tensor.igammac\_ | - | - | | 104 | [torch.Tensor.orgqr](https://pytorch.org/docs/stable/generated/torch.Tensor.orgqr.html#torch.Tensor.orgqr) | [paddle.Tensor.householder_product](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/householder_product_cn.html#householder-product) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.orgqr.md) | | 105 | [torch.Tensor.hypot](https://pytorch.org/docs/stable/generated/torch.Tensor.hypot.html#torch.Tensor.hypot) | [paddle.Tensor.hypot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hypot_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.hypot.md) | | 106 | [torch.Tensor.igamma](https://pytorch.org/docs/stable/generated/torch.Tensor.igamma.html#torch.Tensor.igamma) | [paddle.Tensor.gammainc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/gammainc_cn.html#gammainc) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.igamma.md) | @@ -716,129 +731,127 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) | 110 | [torch.Tensor.ormqr](https://pytorch.org/docs/stable/generated/torch.Tensor.orgqr.html#torch.Tensor.orgqr) | [paddle.linalg.ormqr](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/linalg/ormqr_cn.html#ormqr) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.ormqr.md) | | 111 | [torch.Tensor.roll](https://pytorch.org/docs/stable/generated/torch.Tensor.roll.html?highlight=torch+tensor+roll#torch.Tensor.roll) | [paddle.Tensor.roll](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/roll_cn.html#roll) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.roll.md) | | 112 | [torch.Tensor.bitwise_and_](https://pytorch.org/docs/stable/generated/torch.Tensor.bitwise_and_.html) | paddle.Tensor.bitwise_and_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.bitwise_and_.md) | -| 113 | [torch.Tensor.unbind](https://pytorch.org/docs/stable/generated/torch.Tensor.unbind.html#torch.Tensor.unbind) | [paddle.Tensor.unbind](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unbind-axis-0) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.unbind.md) | -| 114 | [torch.Tensor.lcm](https://pytorch.org/docs/stable/generated/torch.Tensor.lcm.html) | paddle.Tensor.lcm | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lcm.md) | -| 115 | [torch.Tensor.maximum](https://pytorch.org/docs/stable/generated/torch.Tensor.maximum.html#torch.Tensor.maximum) | [paddle.Tensor.maximum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#maximum-y-axis-1-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.maximum.md) | -| 116 | [torch.Tensor.cholesky_solve](https://pytorch.org/docs/stable/generated/torch.Tensor.cholesky_solve.html#torch-tensor-cholesky-solve) | paddle.Tensor.cholesky_solve | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.cholesky_solve.md) | -| 117 | [torch.linalg.lstsq](https://pytorch.org/docs/stable/generated/torch.linalg.lstsq.html?highlight=lstsq#torch.linalg.lstsq) | [paddle.linalg.lstsq](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lstsq_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lstsq.md) | -| 118 | [torch.linalg.matrix_exp](https://pytorch.org/docs/stable/generated/torch.linalg.matrix_exp.html#torch.linalg.matrix_exp) | [paddle.linalg.matrix_exp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_exp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.matrix_exp.md) | -| 119 | [torch.autograd.function.FunctionCtx.mark_non_differentiable](https://pytorch.org/docs/stable/generated/torch.autograd.function.FunctionCtx.mark_non_differentiable.html#torch.autograd.function.FunctionCtx.mark_non_differentiable) | [paddle.autograd.PyLayerContext.mark_non_differentiable](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayerContext_cn.html#mark-non-differentiable-self-tensors) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.function.FunctionCtx.mark_non_differentiable.md) | -| 120 | [torch.special.log_softmax](https://pytorch.org/docs/stable/special.html#torch.special.log_softmax) | [paddle.nn.functional.log_softmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/log_softmax_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.log_softmax.md) | -| 121 | [torch.profiler.schedule](https://pytorch.org/docs/stable/profiler.html#torch.profiler.schedule) | [paddle.profiler.make_scheduler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/profiler/make_scheduler_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.profiler.schedule.md) | -| 122 | [torch.diagonal_scatter](https://pytorch.org/docs/stable/generated/torch.diagonal_scatter.html?highlight=diagonal_scatter#torch.diagonal_scatter) | [paddle.diagonal_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diagonal_scatter_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.diagonal_scatter.md) | -| 123 | [torch.imag](https://pytorch.org/docs/stable/generated/torch.imag.html?highlight=imag#torch.imag) | [paddle.imag](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/imag_cn.html#imag) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.imag.md) | -| 124 | [torch.trapezoid](https://pytorch.org/docs/stable/generated/torch.trapezoid.html#torch.trapezoid) | [paddle.trapezoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/trapezoid_cn.html#trapezoid) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.trapezoid.md) | -| 125 | [torch.cholesky_solve](https://pytorch.org/docs/stable/generated/torch.cholesky_solve.html?highlight=cholesky#torch.cholesky_solve) | [paddle.linalg.cholesky_solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_solve_cn.html#cholesky-solve) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cholesky_solve.md) | -| 126 | [torch.vsplit](https://pytorch.org/docs/stable/generated/torch.vsplit.html#torch.vsplit) | [paddle.vsplit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vsplit_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.vsplit.md) | -| 127 | [torch.isreal](https://pytorch.org/docs/stable/generated/torch.isreal.html#torch-isreal) | [paddle.isreal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isreal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isreal.md) | -| 128 | [torch.pca_lowrank](https://pytorch.org/docs/stable/generated/torch.pca_lowrank.html#torch.pca_lowrank) | [paddle.linalg.pca_lowrank](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/pca_lowrank_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.pca_lowrank.md) | -| 129 | [torch.unflatten](https://pytorch.org/docs/stable/generated/torch.unflatten.html#torch.unflatten) | [paddle.unflatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unflatten_cn.html#unflatten) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.unflatten.md) | -| 130 | [torch.feature_alpha_dropout](https://pytorch.org/docs/stable/jit_builtin_functions.html) | [paddle.nn.functional.feature_alpha_dropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/functional/feature_alpha_dropout_cn.html#feature_alpha-dropout) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.feature_alpha_dropout.md) | -| 131 | [torch.flip](https://pytorch.org/docs/stable/generated/torch.flip.html?highlight=flip#torch.flip) | [paddle.flip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/flip_cn.html#flip) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.flip.md) | -| 132 | [torch.corrcoef](https://pytorch.org/docs/stable/generated/torch.corrcoef.html?highlight=corrcoef#torch.corrcoef) | [paddle.linalg.corrcoef](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/corrcoef_cn.html#corrcoef) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.corrcoef.md) | -| 133 | [torch.det](https://pytorch.org/docs/stable/generated/torch.det.html?highlight=det#torch.det) | [paddle.linalg.det](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/det_cn.html#det) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.det.md) | -| 134 | [torch.abs_](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-tensor-methods) | [paddle.abs_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/abs_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.abs_.md) | -| 135 | [torch.isin](https://pytorch.org/docs/stable/generated/torch.isin.html#torch.isin) | [paddle.isin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isin_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isin.md) | -| 136 | [torch.hsplit](https://pytorch.org/docs/stable/generated/torch.hsplit.html#torch.hsplit) | [paddle.hsplit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hsplit_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hsplit.md) | -| 137 | [torch.svd_lowrank](https://pytorch.org/docs/stable/generated/torch.svd_lowrank.html?highlight=torch+svd_lowrank#torch.svd_lowrank) | [paddle.linalg.svd_lowrank](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/svd_lowrank_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.svd_lowrank.md) | -| 138 | [torch.max_pool3d](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | [paddle.nn.functional.max_pool3d](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/max_pool3d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.max_pool3d.md) | -| 139 | [torch.take](https://pytorch.org/docs/stable/generated/torch.take.html?highlight=torch+take#torch.take) | [paddle.take](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/take_cn.html#take) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.take.md) | -| 140 | [torch.kron](https://pytorch.org/docs/stable/generated/torch.kron.html#torch-kron) | [paddle.kron](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/kron_cn.html#kron) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.kron.md) | -| 141 | [torch.allclose](https://pytorch.org/docs/stable/generated/torch.allclose.html?highlight=allclose#torch.allclose) | [paddle.allclose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/allclose_cn.html#allclose) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.allclose.md) | -| 142 | [torch.bitwise_or](https://pytorch.org/docs/stable/generated/torch.bitwise_or.html#torch-bitwise-or) | [paddle.bitwise_or](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bitwise_or_cn.html#bitwise-or) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bitwise_or.md) | -| 143 | [torch.is_floating_point](https://pytorch.org/docs/stable/generated/torch.is_floating_point.html?highlight=is_floating_point#torch.is_floating_point) | [paddle.is_floating_point](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/is_floating_point_cn.html#is-floating-point) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.is_floating_point.md) | -| 144 | [torch.bitwise_not](https://pytorch.org/docs/stable/generated/torch.bitwise_not.html?highlight=bitwise_not#torch.bitwise_not) | [paddle.bitwise_not](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bitwise_not_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bitwise_not.md) | -| 145 | [torch.istft](https://pytorch.org/docs/stable/generated/torch.istft.html?highlight=istft#torch.istft) | [paddle.signal.istft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/signal/istft_cn.html#istft) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.istft.md) | -| 146 | [torch.dsplit](https://pytorch.org/docs/stable/generated/torch.dsplit.html#torch.dsplit) | [paddle.dsplit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dsplit_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.dsplit.md) | -| 147 | [torch.cumulative_trapezoid](https://pytorch.org/docs/stable/generated/torch.cumulative_trapezoid.html#torch.cumulative_trapezoid) | [paddle.cumulative_trapezoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cumulative_trapezoid_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cumulative_trapezoid.md) | -| 148 | [torch.tan](https://pytorch.org/docs/stable/generated/torch.tan.html) | [paddle.tan](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/tan_cn.html#tan) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.tan.md) | -| 149 | [torch.isclose](https://pytorch.org/docs/stable/generated/torch.isclose.html?highlight=isclose#torch.isclose) | [paddle.isclose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isclose_cn.html#isclose) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isclose.md) | -| 150 | [torch.vander](https://pytorch.org/docs/stable/generated/torch.vander.html?highlight=vander#torch.vander) | [paddle.vander](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vander_cn.html#vander) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.vander.md) | -| 151 | torch.relu | [paddle.nn.functional.relu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/relu_cn.html#relu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.relu.md) | -| 152 | [torch.bincount](https://pytorch.org/docs/stable/generated/torch.bincount.html?highlight=bincount#torch.bincount) | [paddle.bincount](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bincount_cn.html#bincount) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bincount.md) | -| 153 | [torch.index_fill](https://pytorch.org/docs/stable/generated/torch.Tensor.index_fill.html#torch.Tensor.index_fill) | [paddle.index_fill](https://github.com/PaddlePaddle/Paddle/blob/1e3761d119643af19cb6f8a031a77f315d782409/python/paddle/tensor/manipulation.py#L5900) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.index_fill.md) | -| 154 | [torch.real](https://pytorch.org/docs/stable/generated/torch.real.html?highlight=real#torch.real) | [paddle.real](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/real_cn.html#real) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.real.md) | -| 155 | [torch.vstack](https://pytorch.org/docs/stable/generated/torch.vstack.html#torch.vstack) | [paddle.vstack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vstack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.vstack.md) | -| 156 | [torch.tile](https://pytorch.org/docs/stable/generated/torch.tile.html?highlight=tile#torch.tile) | [paddle.tile](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tile_cn.html#tile) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.tile.md) | -| 157 | [torch.row_stack](https://pytorch.org/docs/stable/generated/torch.row_stack.html#torch.row_stack) | [paddle.row_stack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/row_stack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.row_stack.md) | -| 158 | [torch.Tensor.atan2](https://pytorch.org/docs/stable/generated/torch.atan2.html#torch.atan2) | [paddle.Tensor.atan2](https://www.paddlepaddle.org.cn/documentation/docs/en/develop/api/paddle/Tensor_en.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.Tensor.atan2.md) | -| 159 | [torch.hstack](https://pytorch.org/docs/stable/generated/torch.hstack.html#torch.hstack) | [paddle.hstack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hstack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hstack.md) | -| 160 | [torch.from_dlpack](https://pytorch.org/docs/stable/generated/torch.from_dlpack.html?highlight=from_dlpack#torch.from_dlpack) | [paddle.utils.dlpack.from_dlpack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/dlpack/from_dlpack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.from_dlpack.md) | -| 161 | [torch.diagonal](https://pytorch.org/docs/stable/generated/torch.diagonal.html?highlight=diagonal#torch.diagonal) | [paddle.diagonal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diagonal_cn.html#diagonal) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.diagonal.md) | -| 162 | [torch.histogramdd](https://pytorch.org/docs/stable/generated/torch.histogramdd.html#torch-histogramdd) | [paddle.histogramdd](https://github.com/PaddlePaddle/Paddle/blob/a19227d9ee0e351363a4bb27b50b1becbec58a6c/python/paddle/tensor/linalg.py#L3875) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.histogramdd.md) | -| 163 | [torch.dist](https://pytorch.org/docs/stable/generated/torch.dist.html?highlight=dist#torch.dist) | [paddle.dist](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dist_cn.html#dist) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.dist.md) | -| 164 | [torch.bitwise_and](https://pytorch.org/docs/stable/generated/torch.bitwise_and.html#torch.bitwise_and) | [paddle.bitwise_and](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bitwise_and_cn.html#bitwise-and) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bitwise_and.md) | -| 165 | [torch.rot90](https://pytorch.org/docs/stable/generated/torch.rot90.html?highlight=torch+rot90#torch.rot90) | [paddle.rot90](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/rot90_cn.html#rot90) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.rot90.md) | -| 166 | [torch.squeeze](https://pytorch.org/docs/stable/generated/torch.squeeze.html?highlight=squeeze#torch.squeeze) | [paddle.squeeze](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/squeeze_cn.html#squeeze) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.squeeze.md) | -| 167 | [torch.masked_fill](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_fill.html#torch.Tensor.masked_fill) | [paddle.masked_fill](https://github.com/PaddlePaddle/Paddle/blob/1e3761d119643af19cb6f8a031a77f315d782409/python/paddle/tensor/manipulation.py#L5111) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.masked_fill.md) | -| 168 | [torch.celu](https://pytorch.org/docs/stable/generated/torch.nn.functional.celu.html#torch.nn.functional.celu) | [paddle.nn.functional.celu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/celu_cn.html#celu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.celu.md) | -| 169 | [torch.diagflat](https://pytorch.org/docs/stable/generated/torch.diagflat.html?highlight=diagflat#torch.diagflat) | [paddle.diagflat](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diagflat_cn.html#diagflat) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.diagflat.md) | -| 170 | [torch.movedim](https://pytorch.org/docs/stable/generated/torch.movedim.html?highlight=movedim#torch.movedim) | [paddle.moveaxis](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/moveaxis_cn.html#moveaxis) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.movedim.md) | -| 171 | [torch.cdist](https://pytorch.org/docs/stable/generated/torch.cdist.html#torch.cdist) | [paddle.cdist](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cdist_cn.html#cdist) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cdist.md) | -| 172 | [torch.kthvalue](https://pytorch.org/docs/stable/generated/torch.kthvalue.html?highlight=kthvalue#torch.kthvalue) | [paddle.kthvalue](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/kthvalue_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.kthvalue.md) | -| 173 | [torch.positive](https://pytorch.org/docs/stable/generated/torch.positive.html#torch-positive) | [paddle.positive](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/positive_cn.html#positive) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.positive.md) | -| 174 | [torch.moveaxis](https://pytorch.org/docs/stable/generated/torch.moveaxis.html?highlight=moveaxis#torch.moveaxis) | [paddle.moveaxis](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/moveaxis_cn.html#moveaxis) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.moveaxis.md) | -| 175 | [torch.trace](https://pytorch.org/docs/stable/generated/torch.trace.html?highlight=trace#torch.trace) | [paddle.trace](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/trace_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.trace.md) | -| 176 | [torch.bitwise_xor](https://pytorch.org/docs/stable/generated/torch.bitwise_xor.html) | [paddle.bitwise_xor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bitwise_xor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bitwise_xor.md) | -| 177 | [torch.conj](https://pytorch.org/docs/stable/generated/torch.conj.html?highlight=conj#torch.conj) | [paddle.conj](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/conj_cn.html#conj) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.conj.md) | -| 178 | [torch.pinverse](https://pytorch.org/docs/stable/generated/torch.pinverse.html?highlight=pinverse#torch.pinverse) | [paddle.linalg.pinv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/pinv_cn.html#pinv) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.pinverse.md) | -| 179 | [torch.select_scatter](https://pytorch.org/docs/stable/generated/torch.select_scatter.html#torch-select-scatter) | [paddle.select_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/select_scatter_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.select_scatter.md) | -| 180 | [torch.dstack](https://pytorch.org/docs/stable/generated/torch.dstack.html#torch.dstack) | [paddle.dstack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dstack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.dstack.md) | -| 181 | [torch.as_strided](https://pytorch.org/docs/stable/generated/torch.as_strided.html?highlight=as_strided#torch.as_strided) | [paddle.as_strided](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/as_strided_cn.html#as-strided) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.as_strided.md) | -| 182 | [torch.dropout](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | [paddle.nn.functional.dropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/dropout_cn.html#dropout) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.dropout.md) | -| 183 | [torch.from_numpy](https://pytorch.org/docs/stable/generated/torch.from_numpy.html?highlight=from_numpy#torch.from_numpy) | [paddle.to_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/to_tensor_cn.html#to-tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.from_numpy.md) | -| 184 | [torch.combinations](https://pytorch.org/docs/stable/generated/torch.combinations.html#torch.combinations) | [paddle.combinations](https://github.com/PaddlePaddle/Paddle/blob/8932f1c5e26788ab1eed226e70fafb1ea67ce737/python/paddle/tensor/math.py#L7099) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.combinations.md) | -| 185 | [torch.fft.ifftshift](https://pytorch.org/docs/stable/generated/torch.fft.ifftshift.html#torch.fft.ifftshift) | [paddle.fft.ifftshift](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ifftshift_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ifftshift.md) | -| 186 | [torch.fft.fftshift](https://pytorch.org/docs/stable/generated/torch.fft.fftshift.html#torch.fft.fftshift) | [paddle.fft.fftshift](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fftshift_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fftshift.md) | -| 187 | [torch.cuda.nvtx.range_push](https://pytorch.org/docs/stable/generated/torch.cuda.nvtx.range_push.html?highlight=range_push#torch.cuda.nvtx.range_push) | [paddle.framework.core.nvprof_nvtx_push](https://github.com/PaddlePaddle/Paddle/blob/645dfb4040a15712cea9ccfed4dcb0655aeeb0ea/paddle/fluid/pybind/pybind.cc#L2465) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.nvtx.range_push.md) | -| 188 | [torch.distributed.scatter_object_list](https://pytorch.org/docs/stable/distributed.html#torch.distributed.scatter_object_list) | [paddle.distributed.scatter_object_list](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/scatter_object_list_cn.html#scatter-object-list) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.scatter_object_list.md) | -| 189 | [torch.distributed.rpc.remote](https://pytorch.org/docs/stable/rpc.html#torch.distributed.rpc.remote) | [paddle.distributed.rpc.rpc_async](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/rpc/rpc_async_cn.html#rpc-async) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.rpc.remote.md) | -| 190 | [torch.distributed.rpc.get_worker_info](https://pytorch.org/docs/stable/rpc.html#torch.distributed.rpc.get_worker_info) | [paddle.distributed.rpc.get_worker_info](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/rpc/get_worker_info_cn.html#cn-api-distributed-rpc-get-worker-info) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.rpc.get_worker_info.md) | -| 191 | [torch.nn.AdaptiveMaxPool3d](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveMaxPool3d.html?highlight=adaptivemaxpool3d#torch.nn.AdaptiveMaxPool3d) | [paddle.nn.AdaptiveMaxPool3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AdaptiveMaxPool3D_cn.html#adaptivemaxpool3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AdaptiveMaxPool3d.md) | -| 192 | [torch.nn.CosineSimilarity](https://pytorch.org/docs/stable/generated/torch.nn.CosineSimilarity.html?highlight=nn+cosinesimilarity#torch.nn.CosineSimilarity) | [paddle.nn.CosineSimilarity](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CosineSimilarity_cn.html#cosinesimilarity) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CosineSimilarity.md) | -| 193 | [torch.nn.Module.register_module](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_module) | [paddle.nn.Layer.add_sublayer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#add-sublayer-name-sublayer) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_module.md) | -| 194 | [torch.nn.Module.parameters](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.parameters) | [paddle.nn.Layer.parameters](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#parameters-include-sublayers-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.parameters.md) | -| 195 | [torch.nn.utils.parametrizations.weight_norm](https://pytorch.org/docs/stable/generated/torch.nn.utils.parametrizations.weight_norm.html) | [paddle.nn.utils.weight_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/weight_norm_cn.html#weight-norm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.utils.parametrizations.weight_norm.md) | -| 196 | [torch.nn.Fold](https://pytorch.org/docs/stable/generated/torch.nn.Fold.html?highlight=nn+fold#torch.nn.Fold) | [paddle.nn.Fold](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Fold_cn.html#fold) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Fold.md) | -| 197 | [torch.nn.ModuleDict](https://pytorch.org/docs/stable/generated/torch.nn.ModuleDict.html?highlight=torch+nn+moduledict#torch.nn.ModuleDict) | [paddle.nn.LayerDict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LayerDict_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ModuleDict.md) | -| 198 | [torch.nn.Module.add_module](https://pytorch.org/docs/stable/generated/torch.nn.Module.html?highlight=torch+nn+module+add_module#torch.nn.Module.add_module) | [paddle.nn.Layer.add_sublayer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#add-sublayer-name-sublayer) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.add_module.md) | -| 199 | [torch.nn.ParameterDict](https://pytorch.org/docs/stable/generated/torch.nn.ParameterList.html?highlight=nn+parameterlist#torch.nn.ParameterDict) | [paddle.nn.ParameterDict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ParameterDict_cn.html#parameterdict) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ParameterDict.md) | -| 200 | [torch.nn.AdaptiveMaxPool1d](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveMaxPool1d.html?highlight=adaptivemaxpool1d#torch.nn.AdaptiveMaxPool1d) | [paddle.nn.AdaptiveMaxPool1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AdaptiveMaxPool1D_cn.html#adaptivemaxpool1d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AdaptiveMaxPool1d.md) | -| 201 | [torch.nn.GaussianNLLLoss](https://pytorch.org/docs/stable/generated/torch.nn.GaussianNLLLoss) | [paddle.nn.GaussianNLLLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/GaussianNLLLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.GaussianNLLLoss.md) | -| 202 | [torch.nn.Module.register_buffer](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_buffer) | [paddle.nn.Layer.register_buffer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-buffer-name-tensor-persistable-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_buffer.md) | -| 203 | [torch.nn.PairwiseDistance](https://pytorch.org/docs/stable/generated/torch.nn.PairwiseDistance.html?highlight=nn+pairwisedistance#torch.nn.PairwiseDistance) | [paddle.nn.PairwiseDistance](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/PairwiseDistance_cn.html#pairwisedistance) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.PairwiseDistance.md) | -| 204 | [torch.nn.Softmax](https://pytorch.org/docs/stable/generated/torch.nn.Softmax.html?highlight=nn+softmax#torch.nn.Softmax) | [paddle.nn.Softmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Softmax_cn.html#softmax) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Softmax.md) | -| 205 | [torch.nn.Unflatten](https://pytorch.org/docs/stable/generated/torch.nn.Unflatten.html?highlight=torch+nn+unflatten#torch.nn.Unflatten) | [paddle.nn.Unflatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Unflatten_cn.html#unflatten) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Unflatten.md) | -| 206 | [torch.nn.AdaptiveMaxPool2d](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveMaxPool2d.html?highlight=adaptivemaxpool2d#torch.nn.AdaptiveMaxPool2d) | [paddle.nn.AdaptiveMaxPool2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AdaptiveMaxPool2D_cn.html#adaptivemaxpool2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AdaptiveMaxPool2d.md) | -| 207 | [torch.nn.LogSoftmax](https://pytorch.org/docs/stable/generated/torch.nn.LogSoftmax.html?highlight=nn+logsoftmax#torch.nn.LogSoftmax) | [paddle.nn.LogSoftmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LogSoftmax_cn.html#logsoftmax) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.LogSoftmax.md) | -| 208 | [torch.nn.Module.register_parameter](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_parameter) | [paddle.nn.Layer.add_parameter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#add-parameter-name-parameter) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_parameter.md) | -| 209 | [torch.nn.Module.named_buffers](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.named_buffers) | [paddle.nn.Layer.named_buffers](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#named-buffers-prefix-include-sublayers-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.named_buffers.md) | -| 210 | [torch.nn.Module.named_parameters](https://pytorch.org/docs/stable/generated/torch.nn.Module.html?highlight=torch+nn+module+named_parameters#torch.nn.Module.named_parameters) | [paddle.nn.Layer.named_parameters](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#named-parameters-prefix-include-sublayers-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.named_parameters.md) | -| 211 | [torch.nn.Module.buffers](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.buffers) | [paddle.nn.Layer.buffers](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#buffers-include-sublayers-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.buffers.md) | -| 212 | [torch.nn.Softshrink](https://pytorch.org/docs/stable/generated/torch.nn.Softshrink.html?highlight=nn+softshrink#torch.nn.Softshrink) | [paddle.nn.Softshrink](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Softshrink_cn.html#softshrink) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Softshrink.md) | -| 213 | [torch.nn.GLU](https://pytorch.org/docs/stable/generated/torch.nn.GLU.html#torch.nn.GLU) | [paddle.nn.GLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/GLU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.GLU.md) | -| 214 | [torch.nn.ParameterList](https://pytorch.org/docs/stable/generated/torch.nn.ParameterList.html?highlight=nn+parameterlist#torch.nn.ParameterList) | [paddle.nn.ParameterList](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ParameterList_cn.html#parameterlist) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ParameterList.md) | -| 215 | [torch.nn.Unfold](https://pytorch.org/docs/stable/generated/torch.nn.Unfold.html?highlight=nn+unfold#torch.nn.Unfold) | [paddle.nn.Unfold](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Unfold_cn.html#unfold) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Unfold.md) | -| 216 | [torch.nn.Flatten](https://pytorch.org/docs/stable/generated/torch.nn.Flatten.html?highlight=nn+flatten#torch.nn.Flatten) | [paddle.nn.Flatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Flatten_cn.html#flatten) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Flatten.md) | -| 217 | [torch.nn.ModuleList](https://pytorch.org/docs/stable/generated/torch.nn.ModuleList.html?highlight=torch+nn+modulelist#torch.nn.ModuleList) | [paddle.nn.LayerList](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LayerList_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ModuleList.md) | -| 218 | [torch.nn.Hardshrink](https://pytorch.org/docs/stable/generated/torch.nn.Hardshrink.html?highlight=hardshrink#torch.nn.Hardshrink) | [paddle.nn.Hardshrink](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Hardshrink_cn.html#hardshrink) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Hardshrink.md) | -| 219 | [torch.nn.utils.weight_norm](https://pytorch.org/docs/stable/generated/torch.nn.utils.weight_norm.html?highlight=nn+utils+weight_norm#torch.nn.utils.weight_norm) | [paddle.nn.utils.weight_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/weight_norm_cn.html#weight-norm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.nn.utils.weight_norm.md) | -| 220 | [torch.utils.dlpack.from_dlpack](https://pytorch.org/docs/stable/dlpack.html?highlight=torch+utils+dlpack+from_dlpack#torch.utils.dlpack.from_dlpack) | [paddle.utils.dlpack.from_dlpack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/dlpack/from_dlpack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.dlpack.from_dlpack.md) | -| 221 | [torch.nn.utils.spectral_norm](https://pytorch.org/docs/stable/generated/torch.nn.utils.spectral_norm.html?highlight=nn+utils+spectral_norm#torch.nn.utils.spectral_norm) | [paddle.nn.utils.spectral_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/spectral_norm_cn.html#spectral-norm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.nn.utils.spectral_norm.md) | -| 222 | [torch.utils.dlpack.to_dlpack](https://pytorch.org/docs/stable/dlpack.html?highlight=torch+utils+dlpack+to_dlpack#torch.utils.dlpack.to_dlpack) | [paddle.utils.dlpack.to_dlpack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/dlpack/to_dlpack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.dlpack.to_dlpack.md) | -| 223 | [torch.nn.utils.remove_weight_norm](https://pytorch.org/docs/stable/generated/torch.nn.utils.remove_weight_norm.html?highlight=nn+utils+remove_weight_norm#torch.nn.utils.remove_weight_norm) | [paddle.nn.utils.remove_weight_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/remove_weight_norm_cn.html#remove-weight-norm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.nn.utils.remove_weight_norm.md) | -| 224 | [torch.distributions.distribution.Distribution.rsample](https://pytorch.org/docs/stable/distributions.html#torch.distributions.distribution.Distribution.rsample) | [paddle.distribution.Distribution.rsample](https://github.com/PaddlePaddle/Paddle/blob/2bbd6f84c1db3e7401732869ee50aef2d9c97bdc/python/paddle/distribution/distribution.py#L96) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.distribution.Distribution.rsample.md) | -| 225 | [torch.distributions.kl.register_kl](https://pytorch.org/docs/stable/distributions.html?highlight=register_kl#torch.distributions.kl.register_kl) | [paddle.distribution.register_kl](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/register_kl_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.kl.register_kl.md) | -| 226 | [torch.distributions.distribution.Distribution.sample](https://pytorch.org/docs/stable/distributions.html#torch.distributions.distribution.Distribution.sample) | [paddle.distribution.Distribution.sample](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Distribution_cn.html#sample) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.distribution.Distribution.sample.md) | -| 227 | [torchvision.io.read_file](https://pytorch.org/vision/main/generated/torchvision.io.read_file.html) | [paddle.vision.ops.read_file](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/ops/read_file_cn.html#cn-api-paddle-vision-ops-read-file) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.io.read_file.md) | -| 228 | [transformers.StoppingCriteriaList](https://github.com/huggingface/transformers/blob/d625294d79341662784495551abdf45e6cb9372f/src/transformers/generation/stopping_criteria.py#L503) | [paddlenlp.generation.StoppingCriteriaList](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/generation/stopping_criteria.py#L72) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.StoppingCriteriaList.md) | -| 229 | [transformers.generation.LogitsProcessor](https://hf-mirror.com/docs/transformers/v4.42.0/en/internal/generation_utils#logitsprocessor) | [paddlenlp.generation.LogitsProcessor](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/generation/logits_process.py#L26) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.generation.LogitsProcessor.md) | +| 113 | [torch.Tensor.lcm](https://pytorch.org/docs/stable/generated/torch.Tensor.lcm.html) | paddle.Tensor.lcm | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lcm.md) | +| 114 | [torch.Tensor.maximum](https://pytorch.org/docs/stable/generated/torch.Tensor.maximum.html#torch.Tensor.maximum) | [paddle.Tensor.maximum](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#maximum-y-axis-1-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.maximum.md) | +| 115 | [torch.Tensor.cholesky_solve](https://pytorch.org/docs/stable/generated/torch.Tensor.cholesky_solve.html#torch-tensor-cholesky-solve) | paddle.Tensor.cholesky_solve | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.cholesky_solve.md) | +| 116 | [torch.linalg.lstsq](https://pytorch.org/docs/stable/generated/torch.linalg.lstsq.html?highlight=lstsq#torch.linalg.lstsq) | [paddle.linalg.lstsq](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lstsq_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lstsq.md) | +| 117 | [torch.linalg.matrix_exp](https://pytorch.org/docs/stable/generated/torch.linalg.matrix_exp.html#torch.linalg.matrix_exp) | [paddle.linalg.matrix_exp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_exp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.matrix_exp.md) | +| 118 | [torch.autograd.function.FunctionCtx.mark_non_differentiable](https://pytorch.org/docs/stable/generated/torch.autograd.function.FunctionCtx.mark_non_differentiable.html#torch.autograd.function.FunctionCtx.mark_non_differentiable) | [paddle.autograd.PyLayerContext.mark_non_differentiable](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/PyLayerContext_cn.html#mark-non-differentiable-self-tensors) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.function.FunctionCtx.mark_non_differentiable.md) | +| 119 | [torch.special.log_softmax](https://pytorch.org/docs/stable/special.html#torch.special.log_softmax) | [paddle.nn.functional.log_softmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/log_softmax_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.log_softmax.md) | +| 120 | [torch.profiler.schedule](https://pytorch.org/docs/stable/profiler.html#torch.profiler.schedule) | [paddle.profiler.make_scheduler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/profiler/make_scheduler_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.profiler.schedule.md) | +| 121 | [torch.diagonal_scatter](https://pytorch.org/docs/stable/generated/torch.diagonal_scatter.html?highlight=diagonal_scatter#torch.diagonal_scatter) | [paddle.diagonal_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diagonal_scatter_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.diagonal_scatter.md) | +| 122 | [torch.imag](https://pytorch.org/docs/stable/generated/torch.imag.html?highlight=imag#torch.imag) | [paddle.imag](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/imag_cn.html#imag) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.imag.md) | +| 123 | [torch.trapezoid](https://pytorch.org/docs/stable/generated/torch.trapezoid.html#torch.trapezoid) | [paddle.trapezoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/trapezoid_cn.html#trapezoid) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.trapezoid.md) | +| 124 | [torch.cholesky_solve](https://pytorch.org/docs/stable/generated/torch.cholesky_solve.html?highlight=cholesky#torch.cholesky_solve) | [paddle.linalg.cholesky_solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_solve_cn.html#cholesky-solve) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cholesky_solve.md) | +| 125 | [torch.vsplit](https://pytorch.org/docs/stable/generated/torch.vsplit.html#torch.vsplit) | [paddle.vsplit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vsplit_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.vsplit.md) | +| 126 | [torch.isreal](https://pytorch.org/docs/stable/generated/torch.isreal.html#torch-isreal) | [paddle.isreal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isreal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isreal.md) | +| 127 | [torch.pca_lowrank](https://pytorch.org/docs/stable/generated/torch.pca_lowrank.html#torch.pca_lowrank) | [paddle.linalg.pca_lowrank](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/pca_lowrank_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.pca_lowrank.md) | +| 128 | [torch.unflatten](https://pytorch.org/docs/stable/generated/torch.unflatten.html#torch.unflatten) | [paddle.unflatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unflatten_cn.html#unflatten) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.unflatten.md) | +| 129 | [torch.feature_alpha_dropout](https://pytorch.org/docs/stable/jit_builtin_functions.html) | [paddle.nn.functional.feature_alpha_dropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/functional/feature_alpha_dropout_cn.html#feature_alpha-dropout) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.feature_alpha_dropout.md) | +| 130 | [torch.flip](https://pytorch.org/docs/stable/generated/torch.flip.html?highlight=flip#torch.flip) | [paddle.flip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/flip_cn.html#flip) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.flip.md) | +| 131 | [torch.corrcoef](https://pytorch.org/docs/stable/generated/torch.corrcoef.html?highlight=corrcoef#torch.corrcoef) | [paddle.linalg.corrcoef](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/corrcoef_cn.html#corrcoef) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.corrcoef.md) | +| 132 | [torch.det](https://pytorch.org/docs/stable/generated/torch.det.html?highlight=det#torch.det) | [paddle.linalg.det](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/det_cn.html#det) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.det.md) | +| 133 | [torch.abs_](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-tensor-methods) | [paddle.abs_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/abs_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.abs_.md) | +| 134 | [torch.isin](https://pytorch.org/docs/stable/generated/torch.isin.html#torch.isin) | [paddle.isin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isin_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isin.md) | +| 135 | [torch.hsplit](https://pytorch.org/docs/stable/generated/torch.hsplit.html#torch.hsplit) | [paddle.hsplit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hsplit_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hsplit.md) | +| 136 | [torch.svd_lowrank](https://pytorch.org/docs/stable/generated/torch.svd_lowrank.html?highlight=torch+svd_lowrank#torch.svd_lowrank) | [paddle.linalg.svd_lowrank](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/svd_lowrank_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.svd_lowrank.md) | +| 137 | [torch.max_pool3d](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | [paddle.nn.functional.max_pool3d](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/max_pool3d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.max_pool3d.md) | +| 138 | [torch.take](https://pytorch.org/docs/stable/generated/torch.take.html?highlight=torch+take#torch.take) | [paddle.take](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/take_cn.html#take) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.take.md) | +| 139 | [torch.kron](https://pytorch.org/docs/stable/generated/torch.kron.html#torch-kron) | [paddle.kron](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/kron_cn.html#kron) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.kron.md) | +| 140 | [torch.allclose](https://pytorch.org/docs/stable/generated/torch.allclose.html?highlight=allclose#torch.allclose) | [paddle.allclose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/allclose_cn.html#allclose) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.allclose.md) | +| 141 | [torch.bitwise_or](https://pytorch.org/docs/stable/generated/torch.bitwise_or.html#torch-bitwise-or) | [paddle.bitwise_or](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bitwise_or_cn.html#bitwise-or) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bitwise_or.md) | +| 142 | [torch.is_floating_point](https://pytorch.org/docs/stable/generated/torch.is_floating_point.html?highlight=is_floating_point#torch.is_floating_point) | [paddle.is_floating_point](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/is_floating_point_cn.html#is-floating-point) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.is_floating_point.md) | +| 143 | [torch.bitwise_not](https://pytorch.org/docs/stable/generated/torch.bitwise_not.html?highlight=bitwise_not#torch.bitwise_not) | [paddle.bitwise_not](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bitwise_not_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bitwise_not.md) | +| 144 | [torch.istft](https://pytorch.org/docs/stable/generated/torch.istft.html?highlight=istft#torch.istft) | [paddle.signal.istft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/signal/istft_cn.html#istft) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.istft.md) | +| 145 | [torch.dsplit](https://pytorch.org/docs/stable/generated/torch.dsplit.html#torch.dsplit) | [paddle.dsplit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dsplit_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.dsplit.md) | +| 146 | [torch.cumulative_trapezoid](https://pytorch.org/docs/stable/generated/torch.cumulative_trapezoid.html#torch.cumulative_trapezoid) | [paddle.cumulative_trapezoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cumulative_trapezoid_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cumulative_trapezoid.md) | +| 147 | [torch.tan](https://pytorch.org/docs/stable/generated/torch.tan.html) | [paddle.tan](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/tan_cn.html#tan) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.tan.md) | +| 148 | [torch.isclose](https://pytorch.org/docs/stable/generated/torch.isclose.html?highlight=isclose#torch.isclose) | [paddle.isclose](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isclose_cn.html#isclose) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isclose.md) | +| 149 | [torch.vander](https://pytorch.org/docs/stable/generated/torch.vander.html?highlight=vander#torch.vander) | [paddle.vander](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vander_cn.html#vander) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.vander.md) | +| 150 | torch.relu | [paddle.nn.functional.relu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/relu_cn.html#relu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.relu.md) | +| 151 | [torch.bincount](https://pytorch.org/docs/stable/generated/torch.bincount.html?highlight=bincount#torch.bincount) | [paddle.bincount](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bincount_cn.html#bincount) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bincount.md) | +| 152 | [torch.index_fill](https://pytorch.org/docs/stable/generated/torch.Tensor.index_fill.html#torch.Tensor.index_fill) | [paddle.index_fill](https://github.com/PaddlePaddle/Paddle/blob/1e3761d119643af19cb6f8a031a77f315d782409/python/paddle/tensor/manipulation.py#L5900) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.index_fill.md) | +| 153 | [torch.real](https://pytorch.org/docs/stable/generated/torch.real.html?highlight=real#torch.real) | [paddle.real](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/real_cn.html#real) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.real.md) | +| 154 | [torch.vstack](https://pytorch.org/docs/stable/generated/torch.vstack.html#torch.vstack) | [paddle.vstack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vstack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.vstack.md) | +| 155 | [torch.tile](https://pytorch.org/docs/stable/generated/torch.tile.html?highlight=tile#torch.tile) | [paddle.tile](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tile_cn.html#tile) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.tile.md) | +| 156 | [torch.row_stack](https://pytorch.org/docs/stable/generated/torch.row_stack.html#torch.row_stack) | [paddle.row_stack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/row_stack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.row_stack.md) | +| 157 | [torch.Tensor.atan2](https://pytorch.org/docs/stable/generated/torch.atan2.html#torch.atan2) | [paddle.Tensor.atan2](https://www.paddlepaddle.org.cn/documentation/docs/en/develop/api/paddle/Tensor_en.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.Tensor.atan2.md) | +| 158 | [torch.hstack](https://pytorch.org/docs/stable/generated/torch.hstack.html#torch.hstack) | [paddle.hstack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hstack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hstack.md) | +| 159 | [torch.from_dlpack](https://pytorch.org/docs/stable/generated/torch.from_dlpack.html?highlight=from_dlpack#torch.from_dlpack) | [paddle.utils.dlpack.from_dlpack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/dlpack/from_dlpack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.from_dlpack.md) | +| 160 | [torch.diagonal](https://pytorch.org/docs/stable/generated/torch.diagonal.html?highlight=diagonal#torch.diagonal) | [paddle.diagonal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diagonal_cn.html#diagonal) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.diagonal.md) | +| 161 | [torch.histogramdd](https://pytorch.org/docs/stable/generated/torch.histogramdd.html#torch-histogramdd) | [paddle.histogramdd](https://github.com/PaddlePaddle/Paddle/blob/a19227d9ee0e351363a4bb27b50b1becbec58a6c/python/paddle/tensor/linalg.py#L3875) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.histogramdd.md) | +| 162 | [torch.dist](https://pytorch.org/docs/stable/generated/torch.dist.html?highlight=dist#torch.dist) | [paddle.dist](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dist_cn.html#dist) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.dist.md) | +| 163 | [torch.bitwise_and](https://pytorch.org/docs/stable/generated/torch.bitwise_and.html#torch.bitwise_and) | [paddle.bitwise_and](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bitwise_and_cn.html#bitwise-and) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bitwise_and.md) | +| 164 | [torch.rot90](https://pytorch.org/docs/stable/generated/torch.rot90.html?highlight=torch+rot90#torch.rot90) | [paddle.rot90](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/rot90_cn.html#rot90) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.rot90.md) | +| 165 | [torch.squeeze](https://pytorch.org/docs/stable/generated/torch.squeeze.html?highlight=squeeze#torch.squeeze) | [paddle.squeeze](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/squeeze_cn.html#squeeze) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.squeeze.md) | +| 166 | [torch.masked_fill](https://pytorch.org/docs/stable/generated/torch.Tensor.masked_fill.html#torch.Tensor.masked_fill) | [paddle.masked_fill](https://github.com/PaddlePaddle/Paddle/blob/1e3761d119643af19cb6f8a031a77f315d782409/python/paddle/tensor/manipulation.py#L5111) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.masked_fill.md) | +| 167 | [torch.celu](https://pytorch.org/docs/stable/generated/torch.nn.functional.celu.html#torch.nn.functional.celu) | [paddle.nn.functional.celu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/celu_cn.html#celu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.celu.md) | +| 168 | [torch.diagflat](https://pytorch.org/docs/stable/generated/torch.diagflat.html?highlight=diagflat#torch.diagflat) | [paddle.diagflat](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diagflat_cn.html#diagflat) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.diagflat.md) | +| 169 | [torch.movedim](https://pytorch.org/docs/stable/generated/torch.movedim.html?highlight=movedim#torch.movedim) | [paddle.moveaxis](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/moveaxis_cn.html#moveaxis) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.movedim.md) | +| 170 | [torch.cdist](https://pytorch.org/docs/stable/generated/torch.cdist.html#torch.cdist) | [paddle.cdist](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cdist_cn.html#cdist) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cdist.md) | +| 171 | [torch.kthvalue](https://pytorch.org/docs/stable/generated/torch.kthvalue.html?highlight=kthvalue#torch.kthvalue) | [paddle.kthvalue](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/kthvalue_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.kthvalue.md) | +| 172 | [torch.positive](https://pytorch.org/docs/stable/generated/torch.positive.html#torch-positive) | [paddle.positive](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/positive_cn.html#positive) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.positive.md) | +| 173 | [torch.moveaxis](https://pytorch.org/docs/stable/generated/torch.moveaxis.html?highlight=moveaxis#torch.moveaxis) | [paddle.moveaxis](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/moveaxis_cn.html#moveaxis) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.moveaxis.md) | +| 174 | [torch.trace](https://pytorch.org/docs/stable/generated/torch.trace.html?highlight=trace#torch.trace) | [paddle.trace](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/trace_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.trace.md) | +| 175 | [torch.bitwise_xor](https://pytorch.org/docs/stable/generated/torch.bitwise_xor.html) | [paddle.bitwise_xor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bitwise_xor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bitwise_xor.md) | +| 176 | [torch.conj](https://pytorch.org/docs/stable/generated/torch.conj.html?highlight=conj#torch.conj) | [paddle.conj](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/conj_cn.html#conj) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.conj.md) | +| 177 | [torch.pinverse](https://pytorch.org/docs/stable/generated/torch.pinverse.html?highlight=pinverse#torch.pinverse) | [paddle.linalg.pinv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/pinv_cn.html#pinv) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.pinverse.md) | +| 178 | [torch.select_scatter](https://pytorch.org/docs/stable/generated/torch.select_scatter.html#torch-select-scatter) | [paddle.select_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/select_scatter_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.select_scatter.md) | +| 179 | [torch.dstack](https://pytorch.org/docs/stable/generated/torch.dstack.html#torch.dstack) | [paddle.dstack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dstack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.dstack.md) | +| 180 | [torch.as_strided](https://pytorch.org/docs/stable/generated/torch.as_strided.html?highlight=as_strided#torch.as_strided) | [paddle.as_strided](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/as_strided_cn.html#as-strided) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.as_strided.md) | +| 181 | [torch.dropout](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | [paddle.nn.functional.dropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/dropout_cn.html#dropout) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.dropout.md) | +| 182 | [torch.from_numpy](https://pytorch.org/docs/stable/generated/torch.from_numpy.html?highlight=from_numpy#torch.from_numpy) | [paddle.to_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/to_tensor_cn.html#to-tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.from_numpy.md) | +| 183 | [torch.combinations](https://pytorch.org/docs/stable/generated/torch.combinations.html#torch.combinations) | [paddle.combinations](https://github.com/PaddlePaddle/Paddle/blob/8932f1c5e26788ab1eed226e70fafb1ea67ce737/python/paddle/tensor/math.py#L7099) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.combinations.md) | +| 184 | [torch.fft.ifftshift](https://pytorch.org/docs/stable/generated/torch.fft.ifftshift.html#torch.fft.ifftshift) | [paddle.fft.ifftshift](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ifftshift_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ifftshift.md) | +| 185 | [torch.fft.fftshift](https://pytorch.org/docs/stable/generated/torch.fft.fftshift.html#torch.fft.fftshift) | [paddle.fft.fftshift](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fftshift_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fftshift.md) | +| 186 | [torch.cuda.nvtx.range_push](https://pytorch.org/docs/stable/generated/torch.cuda.nvtx.range_push.html?highlight=range_push#torch.cuda.nvtx.range_push) | [paddle.framework.core.nvprof_nvtx_push](https://github.com/PaddlePaddle/Paddle/blob/645dfb4040a15712cea9ccfed4dcb0655aeeb0ea/paddle/fluid/pybind/pybind.cc#L2465) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.nvtx.range_push.md) | +| 187 | [torch.distributed.scatter_object_list](https://pytorch.org/docs/stable/distributed.html#torch.distributed.scatter_object_list) | [paddle.distributed.scatter_object_list](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/scatter_object_list_cn.html#scatter-object-list) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.scatter_object_list.md) | +| 188 | [torch.distributed.rpc.remote](https://pytorch.org/docs/stable/rpc.html#torch.distributed.rpc.remote) | [paddle.distributed.rpc.rpc_async](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/rpc/rpc_async_cn.html#rpc-async) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.rpc.remote.md) | +| 189 | [torch.distributed.rpc.get_worker_info](https://pytorch.org/docs/stable/rpc.html#torch.distributed.rpc.get_worker_info) | [paddle.distributed.rpc.get_worker_info](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/rpc/get_worker_info_cn.html#cn-api-distributed-rpc-get-worker-info) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.rpc.get_worker_info.md) | +| 190 | [torch.nn.AdaptiveMaxPool3d](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveMaxPool3d.html?highlight=adaptivemaxpool3d#torch.nn.AdaptiveMaxPool3d) | [paddle.nn.AdaptiveMaxPool3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AdaptiveMaxPool3D_cn.html#adaptivemaxpool3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AdaptiveMaxPool3d.md) | +| 191 | [torch.nn.CosineSimilarity](https://pytorch.org/docs/stable/generated/torch.nn.CosineSimilarity.html?highlight=nn+cosinesimilarity#torch.nn.CosineSimilarity) | [paddle.nn.CosineSimilarity](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CosineSimilarity_cn.html#cosinesimilarity) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CosineSimilarity.md) | +| 192 | [torch.nn.Module.register_module](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_module) | [paddle.nn.Layer.add_sublayer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#add-sublayer-name-sublayer) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_module.md) | +| 193 | [torch.nn.Module.parameters](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.parameters) | [paddle.nn.Layer.parameters](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#parameters-include-sublayers-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.parameters.md) | +| 194 | [torch.nn.utils.parametrizations.weight_norm](https://pytorch.org/docs/stable/generated/torch.nn.utils.parametrizations.weight_norm.html) | [paddle.nn.utils.weight_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/weight_norm_cn.html#weight-norm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.utils.parametrizations.weight_norm.md) | +| 195 | [torch.nn.Fold](https://pytorch.org/docs/stable/generated/torch.nn.Fold.html?highlight=nn+fold#torch.nn.Fold) | [paddle.nn.Fold](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Fold_cn.html#fold) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Fold.md) | +| 196 | [torch.nn.ModuleDict](https://pytorch.org/docs/stable/generated/torch.nn.ModuleDict.html?highlight=torch+nn+moduledict#torch.nn.ModuleDict) | [paddle.nn.LayerDict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LayerDict_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ModuleDict.md) | +| 197 | [torch.nn.Module.add_module](https://pytorch.org/docs/stable/generated/torch.nn.Module.html?highlight=torch+nn+module+add_module#torch.nn.Module.add_module) | [paddle.nn.Layer.add_sublayer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#add-sublayer-name-sublayer) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.add_module.md) | +| 198 | [torch.nn.ParameterDict](https://pytorch.org/docs/stable/generated/torch.nn.ParameterList.html?highlight=nn+parameterlist#torch.nn.ParameterDict) | [paddle.nn.ParameterDict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ParameterDict_cn.html#parameterdict) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ParameterDict.md) | +| 199 | [torch.nn.AdaptiveMaxPool1d](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveMaxPool1d.html?highlight=adaptivemaxpool1d#torch.nn.AdaptiveMaxPool1d) | [paddle.nn.AdaptiveMaxPool1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AdaptiveMaxPool1D_cn.html#adaptivemaxpool1d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AdaptiveMaxPool1d.md) | +| 200 | [torch.nn.GaussianNLLLoss](https://pytorch.org/docs/stable/generated/torch.nn.GaussianNLLLoss) | [paddle.nn.GaussianNLLLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/GaussianNLLLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.GaussianNLLLoss.md) | +| 201 | [torch.nn.Module.register_buffer](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_buffer) | [paddle.nn.Layer.register_buffer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-buffer-name-tensor-persistable-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_buffer.md) | +| 202 | [torch.nn.PairwiseDistance](https://pytorch.org/docs/stable/generated/torch.nn.PairwiseDistance.html?highlight=nn+pairwisedistance#torch.nn.PairwiseDistance) | [paddle.nn.PairwiseDistance](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/PairwiseDistance_cn.html#pairwisedistance) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.PairwiseDistance.md) | +| 203 | [torch.nn.Softmax](https://pytorch.org/docs/stable/generated/torch.nn.Softmax.html?highlight=nn+softmax#torch.nn.Softmax) | [paddle.nn.Softmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Softmax_cn.html#softmax) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Softmax.md) | +| 204 | [torch.nn.Unflatten](https://pytorch.org/docs/stable/generated/torch.nn.Unflatten.html?highlight=torch+nn+unflatten#torch.nn.Unflatten) | [paddle.nn.Unflatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Unflatten_cn.html#unflatten) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Unflatten.md) | +| 205 | [torch.nn.AdaptiveMaxPool2d](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveMaxPool2d.html?highlight=adaptivemaxpool2d#torch.nn.AdaptiveMaxPool2d) | [paddle.nn.AdaptiveMaxPool2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AdaptiveMaxPool2D_cn.html#adaptivemaxpool2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AdaptiveMaxPool2d.md) | +| 206 | [torch.nn.LogSoftmax](https://pytorch.org/docs/stable/generated/torch.nn.LogSoftmax.html?highlight=nn+logsoftmax#torch.nn.LogSoftmax) | [paddle.nn.LogSoftmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LogSoftmax_cn.html#logsoftmax) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.LogSoftmax.md) | +| 207 | [torch.nn.Module.register_parameter](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_parameter) | [paddle.nn.Layer.add_parameter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#add-parameter-name-parameter) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_parameter.md) | +| 208 | [torch.nn.Module.named_buffers](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.named_buffers) | [paddle.nn.Layer.named_buffers](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#named-buffers-prefix-include-sublayers-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.named_buffers.md) | +| 209 | [torch.nn.Module.named_parameters](https://pytorch.org/docs/stable/generated/torch.nn.Module.html?highlight=torch+nn+module+named_parameters#torch.nn.Module.named_parameters) | [paddle.nn.Layer.named_parameters](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#named-parameters-prefix-include-sublayers-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.named_parameters.md) | +| 210 | [torch.nn.Module.buffers](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.buffers) | [paddle.nn.Layer.buffers](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#buffers-include-sublayers-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.buffers.md) | +| 211 | [torch.nn.Softshrink](https://pytorch.org/docs/stable/generated/torch.nn.Softshrink.html?highlight=nn+softshrink#torch.nn.Softshrink) | [paddle.nn.Softshrink](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Softshrink_cn.html#softshrink) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Softshrink.md) | +| 212 | [torch.nn.GLU](https://pytorch.org/docs/stable/generated/torch.nn.GLU.html#torch.nn.GLU) | [paddle.nn.GLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/GLU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.GLU.md) | +| 213 | [torch.nn.ParameterList](https://pytorch.org/docs/stable/generated/torch.nn.ParameterList.html?highlight=nn+parameterlist#torch.nn.ParameterList) | [paddle.nn.ParameterList](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ParameterList_cn.html#parameterlist) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ParameterList.md) | +| 214 | [torch.nn.Unfold](https://pytorch.org/docs/stable/generated/torch.nn.Unfold.html?highlight=nn+unfold#torch.nn.Unfold) | [paddle.nn.Unfold](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Unfold_cn.html#unfold) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Unfold.md) | +| 215 | [torch.nn.Flatten](https://pytorch.org/docs/stable/generated/torch.nn.Flatten.html?highlight=nn+flatten#torch.nn.Flatten) | [paddle.nn.Flatten](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Flatten_cn.html#flatten) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Flatten.md) | +| 216 | [torch.nn.ModuleList](https://pytorch.org/docs/stable/generated/torch.nn.ModuleList.html?highlight=torch+nn+modulelist#torch.nn.ModuleList) | [paddle.nn.LayerList](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LayerList_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ModuleList.md) | +| 217 | [torch.nn.Hardshrink](https://pytorch.org/docs/stable/generated/torch.nn.Hardshrink.html?highlight=hardshrink#torch.nn.Hardshrink) | [paddle.nn.Hardshrink](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Hardshrink_cn.html#hardshrink) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Hardshrink.md) | +| 218 | [torch.nn.utils.weight_norm](https://pytorch.org/docs/stable/generated/torch.nn.utils.weight_norm.html?highlight=nn+utils+weight_norm#torch.nn.utils.weight_norm) | [paddle.nn.utils.weight_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/weight_norm_cn.html#weight-norm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.nn.utils.weight_norm.md) | +| 219 | [torch.utils.dlpack.from_dlpack](https://pytorch.org/docs/stable/dlpack.html?highlight=torch+utils+dlpack+from_dlpack#torch.utils.dlpack.from_dlpack) | [paddle.utils.dlpack.from_dlpack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/dlpack/from_dlpack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.dlpack.from_dlpack.md) | +| 220 | [torch.nn.utils.spectral_norm](https://pytorch.org/docs/stable/generated/torch.nn.utils.spectral_norm.html?highlight=nn+utils+spectral_norm#torch.nn.utils.spectral_norm) | [paddle.nn.utils.spectral_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/spectral_norm_cn.html#spectral-norm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.nn.utils.spectral_norm.md) | +| 221 | [torch.utils.dlpack.to_dlpack](https://pytorch.org/docs/stable/dlpack.html?highlight=torch+utils+dlpack+to_dlpack#torch.utils.dlpack.to_dlpack) | [paddle.utils.dlpack.to_dlpack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/dlpack/to_dlpack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.dlpack.to_dlpack.md) | +| 222 | [torch.nn.utils.remove_weight_norm](https://pytorch.org/docs/stable/generated/torch.nn.utils.remove_weight_norm.html?highlight=nn+utils+remove_weight_norm#torch.nn.utils.remove_weight_norm) | [paddle.nn.utils.remove_weight_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/utils/remove_weight_norm_cn.html#remove-weight-norm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.nn.utils.remove_weight_norm.md) | +| 223 | [torch.distributions.distribution.Distribution.rsample](https://pytorch.org/docs/stable/distributions.html#torch.distributions.distribution.Distribution.rsample) | [paddle.distribution.Distribution.rsample](https://github.com/PaddlePaddle/Paddle/blob/2bbd6f84c1db3e7401732869ee50aef2d9c97bdc/python/paddle/distribution/distribution.py#L96) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.distribution.Distribution.rsample.md) | +| 224 | [torch.distributions.kl.register_kl](https://pytorch.org/docs/stable/distributions.html?highlight=register_kl#torch.distributions.kl.register_kl) | [paddle.distribution.register_kl](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/register_kl_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.kl.register_kl.md) | +| 225 | [torch.distributions.distribution.Distribution.sample](https://pytorch.org/docs/stable/distributions.html#torch.distributions.distribution.Distribution.sample) | [paddle.distribution.Distribution.sample](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Distribution_cn.html#sample) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.distribution.Distribution.sample.md) | +| 226 | [torchvision.io.read_file](https://pytorch.org/vision/main/generated/torchvision.io.read_file.html) | [paddle.vision.ops.read_file](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/ops/read_file_cn.html#cn-api-paddle-vision-ops-read-file) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.io.read_file.md) | +| 227 | [transformers.StoppingCriteriaList](https://github.com/huggingface/transformers/blob/d625294d79341662784495551abdf45e6cb9372f/src/transformers/generation/stopping_criteria.py#L503) | [paddlenlp.generation.StoppingCriteriaList](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/generation/stopping_criteria.py#L72) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.StoppingCriteriaList.md) | +| 228 | [transformers.generation.LogitsProcessor](https://hf-mirror.com/docs/transformers/v4.42.0/en/internal/generation_utils#logitsprocessor) | [paddlenlp.generation.LogitsProcessor](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/generation/logits_process.py#L26) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.generation.LogitsProcessor.md) | ## 4. paddle 参数更多 **分类简介** -此类 API 在 PaddlePaddle 中提供了更多可选参数 - +此类 API 在 PaddlePaddle 中提供了更多可选参数。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| @@ -968,9 +981,7 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) ## 5. 参数默认值不一致 **分类简介** -此类 API 功能相同,但某些参数的默认值不同 - - +此类 API 功能相同,但某些参数的默认值不同。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| @@ -984,9 +995,7 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) ## 6. torch 参数更多 **分类简介** -此类 API 在 PyTorch 中提供了更多参数 - - +此类 API 在 PyTorch 中提供了更多参数。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| @@ -1047,376 +1056,371 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) | 55 | [torch.Tensor.sub](https://pytorch.org/docs/stable/generated/torch.Tensor.sub.html#torch.Tensor.sub) | [paddle.Tensor.subtract](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/subtract_cn.html#subtract) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.sub.md) | | 56 | [torch.Tensor.index_add](https://pytorch.org/docs/stable/generated/torch.Tensor.index_add.html#torch.Tensor.index_add) | paddle.Tensor.index_add | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.index_add.md) | | 57 | [torch.Tensor.new_tensor](https://pytorch.org/docs/stable/generated/torch.Tensor.new_tensor.html#torch-tensor-new-tensor) | [paddle.to_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/to_tensor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.new_tensor.md) | -| 58 | [torch.Tensor.size](https://pytorch.org/docs/stable/generated/torch.Tensor.size.html#torch.Tensor.size) | [paddle.Tensor.shape](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#shape) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.size.md) | -| 59 | [torch.Tensor.clone](https://pytorch.org/docs/stable/generated/torch.Tensor.clone.html#torch.Tensor.clone) | [paddle.Tensor.clone](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#clone) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.clone.md) | -| 60 | [torch.Tensor.stride](https://pytorch.org/docs/stable/generated/torch.Tensor.stride.html#torch-tensor-stride) | [paddle.Tensor.get_strides](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.stride.md) | -| 61 | [torch.Tensor.round_](https://pytorch.org/docs/stable/generated/torch.Tensor.round_.html#torch.Tensor.round_) | [paddle.Tensor.round_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#round-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.round_.md) | -| 62 | [torch.Tensor.unique](https://pytorch.org/docs/stable/generated/torch.Tensor.unique.html?highlight=unique#torch.Tensor.unique) | [paddle.Tensor.unique](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unique-return-index-false-return-inverse-false-return-counts-false-axis-none-dtype-int64-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.unique.md) | -| 63 | [torch.Tensor.is_contiguous](https://pytorch.org/docs/stable/generated/torch.Tensor.is_contiguous.html#torch-tensor-is-contiguous) | [paddle.Tensor.is_contiguous](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#is-contiguous) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.is_contiguous.md) | -| 64 | [torch.Tensor.nanmean](https://pytorch.org/docs/stable/generated/torch.Tensor.nanmean.html?highlight=nanmean#torch.Tensor.nanmean) | [paddle.Tensor.nanmean](暂无对应文档) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.nanmean.md) | -| 65 | [torch.Tensor.resize_](https://pytorch.org/docs/stable/generated/torch.Tensor.resize_.html) | [paddle.Tensor.resize_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#resize-shape-fill-zero-false-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.resize_.md) | -| 66 | [torch.Tensor.geometric_](https://pytorch.org/docs/stable/generated/torch.Tensor.geometric_.html) | [paddle.Tensor.geometric_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.geometric_.md) | -| 67 | [torch.Tensor.symeig](https://pytorch.org/docs/stable/generated/torch.Tensor.symeig.html#torch.Tensor.symeig) | [paddle.linalg.eigh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.symeig.md) | -| 68 | [torch.Tensor.cpu](https://pytorch.org/docs/stable/generated/torch.Tensor.cpu.html?highlight=torch+tensor+cpu#torch.Tensor.cpu) | [paddle.Tensor.cpu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#cpu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.cpu.md) | -| 69 | [torch.Tensor.to](https://pytorch.org/docs/stable/generated/torch.Tensor.to.html#torch.Tensor.to) | [paddle.Tensor.to](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#to-args-kwargs) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.to.md) | -| 70 | [torch.Tensor.bernoulli_](https://pytorch.org/docs/stable/generated/torch.Tensor.bernoulli_.html#torch.Tensor.bernoulli_) | [paddle.Tensor.bernoulli_](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/tensor/tensor.py) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.bernoulli_.md) | -| 71 | [torch.Tensor.to_sparse_csr](https://pytorch.org/docs/stable/generated/torch.Tensor.to_sparse_csr.html#torch-tensor-to-sparse-csr) | [paddle.Tensor.to_sparse_csr](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.to_sparse_csr.md) | -| 72 | [torch.Tensor.multinomial](https://pytorch.org/docs/stable/generated/torch.Tensor.multinomial.html#torch.Tensor.multinomial) | paddle.Tensor.multinomial | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.multinomial.md) | -| 73 | [torch.Tensor.cauchy_](https://pytorch.org/docs/stable/generated/torch.Tensor.cauchy_.html) | [paddle.Tensor.cauchy_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.cauchy_.md) | -| 74 | [torch.Tensor.stft](https://pytorch.org/docs/stable/generated/torch.Tensor.stft.html#torch.Tensor.stft) | [paddle.Tensor.stft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/signal/stft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.stft.md) | -| 75 | [torch.linalg.inv](https://pytorch.org/docs/stable/generated/torch.linalg.inv.html#torch.linalg.inv) | [paddle.linalg.inv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/inv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.inv.md) | -| 76 | [torch.linalg.vecdot](https://pytorch.org/docs/stable/generated/torch.linalg.vecdot.html) | [paddle.linalg.vecdot](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/tensor/linalg.py#L1881) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.vecdot.md) | -| 77 | [torch.linalg.svdvals](https://pytorch.org/docs/stable/generated/torch.linalg.svdvals.html#torch.linalg.svdvals) | [paddle.linalg.svdvals](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/tensor/linalg.py#L3019) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.svdvals.md) | -| 78 | [torch.linalg.cholesky](https://pytorch.org/docs/stable/generated/torch.linalg.cholesky.html?highlight=linalg+cholesky#torch.linalg.cholesky) | [paddle.linalg.cholesky](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.cholesky.md) | -| 79 | [torch.linalg.solve](https://pytorch.org/docs/stable/generated/torch.linalg.solve.html#torch.linalg.solve) | [paddle.linalg.solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/solve_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.solve.md) | -| 80 | [torch.linalg.solve_triangular](https://pytorch.org/docs/stable/generated/torch.linalg.solve_triangular.html?highlight=torch+linalg+solve_triangular#torch.linalg.solve_triangular) | [paddle.linalg.triangular_solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/triangular_solve_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.solve_triangular.md) | -| 81 | [torch.linalg.householder_product](https://pytorch.org/docs/stable/generated/torch.linalg.householder_product.html#torch.linalg.householder_product) | [paddle.linalg.householder_product](https://github.com/PaddlePaddle/Paddle/blob/d6ea911bd1bfda5604807eeb18318e71b395ac58/python/paddle/tensor/linalg.py#L3744) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.householder_product.md) | -| 82 | [torch.linalg.det](https://pytorch.org/docs/stable/generated/torch.linalg.det.html#torch.linalg.det) | [paddle.linalg.det](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/det_cn.html#det) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.det.md) | -| 83 | [torch.linalg.matrix_norm](https://pytorch.org/docs/stable/generated/torch.linalg.matrix_norm.html#torch.linalg.matrix_norm) | [paddle.linalg.matrix_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_norm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.matrix_norm.md) | -| 84 | [torch.linalg.cross](https://pytorch.org/docs/stable/generated/torch.linalg.cross.html?highlight=torch+linalg+cross#torch.linalg.cross) | [paddle.cross](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cross_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.cross.md) | -| 85 | [torch.linalg.vector_norm](https://pytorch.org/docs/stable/generated/torch.linalg.vector_norm.html#torch.linalg.vector_norm) | [paddle.linalg.vector_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/vector_norm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.vector_norm.md) | -| 86 | [torch.linalg.svd](https://pytorch.org/docs/stable/generated/torch.linalg.svd.html?highlight=svd#torch.linalg.svd) | [paddle.linalg.svd](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/svd_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.svd.md) | -| 87 | [torch.linalg.eigvalsh](https://pytorch.org/docs/stable/generated/torch.linalg.eigvalsh.html#torch.linalg.eigvalsh) | [paddle.linalg.eigvalsh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigvalsh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.eigvalsh.md) | -| 88 | [torch.linalg.qr](https://pytorch.org/docs/stable/generated/torch.linalg.qr.html#torch.linalg.qr) | [paddle.linalg.qr](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/qr_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.qr.md) | -| 89 | [torch.linalg.eigvals](https://pytorch.org/docs/stable/generated/torch.linalg.eigvals.html?highlight=torch+linalg+eigvals#torch.linalg.eigvals) | [paddle.linalg.eigvals](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigvals_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.eigvals.md) | -| 90 | [torch.linalg.pinv](https://pytorch.org/docs/stable/generated/torch.linalg.pinv.html#torch.linalg.pinv) | [paddle.linalg.pinv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/pinv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.pinv.md) | -| 91 | [torch.linalg.matrix_power](https://pytorch.org/docs/stable/generated/torch.linalg.matrix_power.html?highlight=torch+linalg+matrix_power#torch.linalg.matrix_power) | [paddle.linalg.matrix_power](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_power_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.matrix_power.md) | -| 92 | [torch.linalg.cond](https://pytorch.org/docs/stable/generated/torch.linalg.cond.html#torch.linalg.cond) | [paddle.linalg.cond](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/linalg/cond_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.cond.md) | -| 93 | [torch.linalg.matrix_rank](https://pytorch.org/docs/stable/generated/torch.linalg.matrix_rank.html?highlight=matrix_rank#torch.linalg.matrix_rank) | [paddle.linalg.matrix_rank](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_rank_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.matrix_rank.md) | -| 94 | [torch.linalg.lu_factor](https://pytorch.org/docs/stable/generated/torch.linalg.lu_factor.html#torch.linalg.lu_factor) | [paddle.linalg.lu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lu_factor.md) | -| 95 | [torch.linalg.lu_factor_ex](https://pytorch.org/docs/stable/generated/torch.linalg.lu_factor_ex.html?highlight=lu_factor_ex#torch.linalg.lu_factor_ex) | [paddle.linalg.lu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lu_factor_ex.md) | -| 96 | [torch.linalg.multi_dot](https://pytorch.org/docs/stable/generated/torch.linalg.multi_dot.html?highlight=torch+linalg+multi_dot#torch.linalg.multi_dot) | [paddle.linalg.multi_dot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/multi_dot_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.multi_dot.md) | -| 97 | [torch.linalg.eig](https://pytorch.org/docs/stable/generated/torch.linalg.eig.html?highlight=torch+linalg+eig#torch.linalg.eig) | [paddle.linalg.eig](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eig_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.eig.md) | -| 98 | [torch.linalg.eigh](https://pytorch.org/docs/stable/generated/torch.linalg.eigh.html#torch.linalg.eigh) | [paddle.linalg.eigh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.eigh.md) | -| 99 | [torch.special.i1](https://pytorch.org/docs/stable/special.html#torch.special.i1) | [paddle.i1](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/i1_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.i1.md) | -| 100 | [torch.special.i0e](https://pytorch.org/docs/stable/special.html#torch.special.i0e) | [paddle.i0e](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/i0e_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.i0e.md) | -| 101 | [torch.jit.save](https://pytorch.org/docs/stable/generated/torch.jit.save.html#torch-jit-save) | [paddle.jit.save](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/jit/save_cn.html#cn-api-paddle-jit-save) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.jit.save.md) | -| 102 | [torch.special.round](https://pytorch.org/docs/stable/special.html#torch.special.round) | [paddle.round](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/round_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.round.md) | -| 103 | [torch.special.log1p](https://pytorch.org/docs/stable/special.html#torch.special.log1p) | [paddle.log1p](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/log1p_cn.html#log1p) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.log1p.md) | -| 104 | [torch.autograd.functional.jacobian](https://pytorch.org/docs/stable/generated/torch.autograd.functional.jacobian.html#torch.autograd.functional.jacobian) | [paddle.incubate.autograd.Jacobian](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/incubate/autograd/Jacobian_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.functional.jacobian.md) | -| 105 | [torch.autograd.grad](https://pytorch.org/docs/stable/generated/torch.autograd.grad.html#torch.autograd.grad) | [paddle.grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/grad_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.grad.md) | -| 106 | [torch.jit.load](https://pytorch.org/docs/stable/generated/torch.jit.load.html#torch.jit.load) | [paddle.jit.load](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/jit/load_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.jit.load.md) | -| 107 | [torch.special.erf](https://pytorch.org/docs/stable/special.html?highlight=torch+special+erf#torch.special.erf) | [paddle.erf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/erf_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.erf.md) | -| 108 | [torch.special.erfinv](https://pytorch.org/docs/stable/special.html#torch.special.erfinv) | [paddle.erfinv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/erfinv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.erfinv.md) | -| 109 | [torch.special.polygamma](https://pytorch.org/docs/stable/special.html#torch.special.polygamma) | [paddle.polygamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/polygamma_cn.html#paddle.polygamma) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.polygamma.md) | -| 110 | [torch.autograd.backward](https://pytorch.org/docs/stable/generated/torch.autograd.backward.html#torch.autograd.backward) | [paddle.autograd.backward](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/backward_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.backward.md) | -| 111 | [torch.autograd.functional.hessian](https://pytorch.org/docs/stable/generated/torch.autograd.functional.hessian.html#torch.autograd.functional.hessian) | [paddle.incubate.autograd.Hessian](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/incubate/autograd/Hessian_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.functional.hessian.md) | -| 112 | [torch.special.psi](https://pytorch.org/docs/stable/special.html#torch.special.psi) | [paddle.digamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/special.digamma_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.psi.md) | -| 113 | [torch.profiler.profile](https://pytorch.org/docs/stable/profiler.html#torch.profiler.profile) | [paddle.profiler.Profiler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/profiler/Profiler_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.profiler.profile.md) | -| 114 | [torch.special.multigammaln](https://pytorch.org/docs/stable/special.html#torch.special.multigammaln) | [paddle.multigammaln](https://github.com/PaddlePaddle/Paddle/blob/be090bd0bc9ac7a8595296c316b3a6ed3dc60ba6/python/paddle/tensor/math.py#L5099) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.multigammaln.md) | -| 115 | [torch.autograd.functional.vjp](https://pytorch.org/docs/stable/generated/torch.autograd.functional.vjp.html#torch.autograd.functional.vjp) | [paddle.incubate.autograd.vjp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/incubate/autograd/vjp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.functional.vjp.md) | -| 116 | [torch.jit.ignore](https://pytorch.org/docs/stable/generated/torch.jit.ignore.html#torch-jit-ignore) | [paddle.jit.not_to_static](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/jit/not_to_static_cn.html#not-to-static) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.jit.ignore.md) | -| 117 | [torch.special.gammaincc](https://pytorch.org/docs/stable/special.html#torch.special.gammaincc) | [paddle.gammaincc](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/index_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.gammaincc.md) | -| 118 | [torch.jit.script](https://pytorch.org/docs/stable/generated/torch.jit.script.html#torch-jit-script) | [paddle.jit.to_static](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/jit/to_static_cn.html#paddle.jit.to_static) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.jit.script.md) | -| 119 | [torch.onnx.export](https://pytorch.org/docs/stable/onnx.html#torch.onnx.export) | [paddle.onnx.export](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/onnx/export_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.onnx.export.md) | -| 120 | [torch.special.logit](https://pytorch.org/docs/stable/special.html#torch.special.logit) | [paddle.logit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logit_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.logit.md) | -| 121 | [torch.special.i0](https://pytorch.org/docs/stable/special.html#torch.special.i0) | [paddle.i0](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/i0_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.i0.md) | -| 122 | [torch.multiprocessing.spawn](https://pytorch.org/docs/stable/multiprocessing.html#torch.multiprocessing.spawn) | [paddle.distributed.spawn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/spawn_cn.html#spawn) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.multiprocessing.spawn.md) | -| 123 | [torch.special.i1e](https://pytorch.org/docs/stable/special.html#torch.special.i1e) | [paddle.i1e](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/i1e_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.i1e.md) | -| 124 | [torch.special.digamma](https://pytorch.org/docs/stable/special.html#torch.special.digamma) | [paddle.digamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/special.digamma_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.digamma.md) | -| 125 | [torch.autograd.functional.jvp](https://pytorch.org/docs/stable/generated/torch.autograd.functional.jvp.html#torch.autograd.functional.jvp) | [paddle.incubate.autograd.jvp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/incubate/autograd/jvp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.functional.jvp.md) | -| 126 | [torch.special.expm1](https://pytorch.org/docs/stable/special.html#torch.special.expm1) | [paddle.expm1](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/expm1_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.expm1.md) | -| 127 | [torch.special.gammainc](https://pytorch.org/docs/stable/special.html#torch.special.gammainc) | [paddle.gammainc](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/index_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.gammainc.md) | -| 128 | [torch.special.gammaln](https://pytorch.org/docs/stable/special.html#torch.special.gammaln) | [paddle.gammaln](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/gammaln_cn.html#gammaln) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.gammaln.md) | -| 129 | [torch.optim.SGD](https://pytorch.org/docs/stable/generated/torch.optim.SGD.html) | [paddle.optimizer.SGD](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/SGD_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.SGD.md) | -| 130 | [torch.optim.ASGD](https://pytorch.org/docs/stable/generated/torch.optim.ASGD.html) | [paddle.optimizer.ASGD](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/ASGD_cn.html#cn-api-paddle-optimizer-asgd) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.ASGD.md) | -| 131 | [torch.optim.RMSprop](https://pytorch.org/docs/stable/generated/torch.optim.RMSprop.html) | [paddle.optimizer.RMSProp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/RMSProp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.RMSprop.md) | -| 132 | [torch.optim.Optimizer.step](https://pytorch.org/docs/stable/generated/torch.optim.Optimizer.step.html#torch-optim-optimizer-step) | [paddle.optimizer.Optimizer.step](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Optimizer_cn.html#step) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Optimizer.step.md) | -| 133 | [torch.optim.RAdam](https://pytorch.org/docs/stable/generated/torch.optim.RAdam.html#torch.optim.RAdam) | [paddle.optimizer.RAdam](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/RAdam_cn.html#radam) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.RAdam.md) | -| 134 | [torch.optim.NAdam](https://pytorch.org/docs/stable/generated/torch.optim.NAdam.html#torch.optim.NAdam) | [paddle.optimizer.NAdam](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/NAdam_cn.html#nadam) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.NAdam.md) | -| 135 | [torch.optim.Adamax](https://pytorch.org/docs/stable/generated/torch.optim.Adamax.html) | [paddle.optimizer.Adamax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Adamax_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Adamax.md) | -| 136 | [torch.optim.Adam](https://pytorch.org/docs/stable/generated/torch.optim.Adam.html) | [paddle.optimizer.Adam](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Adam_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Adam.md) | -| 137 | [torch.optim.Adagrad](https://pytorch.org/docs/stable/generated/torch.optim.Adagrad.html) | [paddle.optimizer.Adagrad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Adagrad_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Adagrad.md) | -| 138 | [torch.optim.Rprop](https://pytorch.org/docs/stable/generated/torch.optim.Rprop.html) | [paddle.optimizer.Rprop](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Rprop_cn.html#cn-api-paddle-optimizer-rprop) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Rprop.md) | -| 139 | [torch.optim.AdamW](https://pytorch.org/docs/stable/generated/torch.optim.AdamW.html) | [paddle.optimizer.AdamW](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/AdamW_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.AdamW.md) | -| 140 | [torch.optim.Adadelta](https://pytorch.org/docs/stable/generated/torch.optim.Adadelta.html) | [paddle.optimizer.Adadelta](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Adadelta_cn.html#cn-api-paddle-optimizer-adadelta) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Adadelta.md) | -| 141 | torch.clamp_min | [paddle.clip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/clip_cn.html#clip) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.clamp_min.md) | -| 142 | [torch.randint_like](https://pytorch.org/docs/stable/generated/torch.randint_like.html?highlight=randint_like#torch.randint_like) | [paddle.randint_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randint_like_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.randint_like.md) | -| 143 | [torch.lerp](https://pytorch.org/docs/stable/generated/torch.lerp.html?highlight=lerp#torch.lerp) | [paddle.lerp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/lerp_cn.html#lerp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lerp.md) | -| 144 | [torch.neg](https://pytorch.org/docs/stable/generated/torch.neg.html?highlight=neg#torch.neg) | [paddle.neg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/neg_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.neg.md) | -| 145 | [torch.hamming_window](https://pytorch.org/docs/stable/generated/torch.hamming_window.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hamming_window.md) | -| 146 | [torch.std](https://pytorch.org/docs/stable/generated/torch.std.html) | [paddle.std](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/std_cn.html#std) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.std.md) | -| 147 | [torch.blackman_window](https://pytorch.org/docs/stable/generated/torch.blackman_window.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.blackman_window.md) | -| 148 | [torch.logaddexp](https://pytorch.org/docs/stable/generated/torch.logaddexp.html#torch.logaddexp) | [paddle.logaddexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logaddexp_cn.html#logaddexp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.logaddexp.md) | -| 149 | [torch.cummax](https://pytorch.org/docs/stable/generated/torch.cummax.html?highlight=cummax#torch.cummax) | [paddle.cummax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cummax_cn.html#cummax) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cummax.md) | -| 150 | [torch.amp.autocast](https://pytorch.org/docs/stable/amp.html#torch.cuda.amp.autocast) | [paddle.amp.auto_cast](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amp/auto_cast_cn.html#auto-cast) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.amp.autocast.md) | -| 151 | [torch.cosh](https://pytorch.org/docs/stable/generated/torch.cosh.html#torch.cosh) | [paddle.cosh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cosh_cn.html#cosh) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cosh.md) | -| 152 | [torch.angle](https://pytorch.org/docs/stable/generated/torch.angle.html) | [paddle.angle](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/angle_cn.html#angle) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.angle.md) | -| 153 | [torch.isneginf](https://pytorch.org/docs/stable/generated/torch.isneginf.html#torch-isneginf) | [paddle.isneginf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isneginf_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isneginf.md) | -| 154 | [torch.remainder](https://pytorch.org/docs/stable/generated/torch.remainder.html?highlight=remainder#torch.remainder) | [paddle.remainder](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/remainder_cn.html#remainder) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.remainder.md) | -| 155 | [torch.cross](https://pytorch.org/docs/stable/generated/torch.cross.html?highlight=cross#torch.cross) | [paddle.cross](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cross_cn.html#cross) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cross.md) | -| 156 | [torch.cholesky_inverse](https://pytorch.org/docs/stable/generated/torch.cholesky_inverse.html?highlight=cholesky_inverse#torch.cholesky_inverse) | [paddle.linalg.cholesky_inverse](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_inverse_cn.html#cholesky-inverse) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cholesky_inverse.md) | -| 157 | [torch.max_pool2d](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | [paddle.nn.functional.max_pool2d](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/max_pool2d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.max_pool2d.md) | -| 158 | [torch.copysign](https://pytorch.org/docs/stable/generated/torch.copysign.html#torch.copysign) | [paddle.copysign](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/copysign_cn.html#copysign) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.copysign.md) | -| 159 | [torch.square](https://pytorch.org/docs/stable/generated/torch.square.html?highlight=square#torch.square) | [paddle.square](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/square_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.square.md) | -| 160 | [torch.lu](https://pytorch.org/docs/stable/generated/torch.lu.html?highlight=lu#torch.lu) | [paddle.linalg.lu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lu.md) | -| 161 | [torch.quantile](https://pytorch.org/docs/stable/generated/torch.quantile.html?highlight=quantile#torch.quantile) | [paddle.quantile](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/quantile_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.quantile.md) | -| 162 | [torch.ormqr](https://pytorch.org/docs/stable/generated/torch.ormqr.html#torch.ormqr) | [paddle.linalg.ormqr](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/linalg/ormqr_cn.html#ormqr) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.ormqr.md) | -| 163 | [torch.asarray](https://pytorch.org/docs/stable/generated/torch.asarray.html#torch.asarray) | [paddle.to_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/to_tensor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.asarray.md) | -| 164 | [torch.cumprod](https://pytorch.org/docs/stable/generated/torch.cumprod.html?highlight=cumprod#torch.cumprod) | [paddle.cumprod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cumprod_cn.html#cumprod) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cumprod.md) | -| 165 | [torch.cummin](https://pytorch.org/docs/stable/generated/torch.cummin.html) | [paddle.cummin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cummin_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cummin.md) | -| 166 | [torch.asinh](https://pytorch.org/docs/stable/generated/torch.asinh.html#torch.asinh) | [paddle.asinh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/asinh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.asinh.md) | -| 167 | [torch.hypot](https://pytorch.org/docs/stable/generated/torch.hypot.html#torch.hypot) | [paddle.hypot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hypot_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hypot.md) | -| 168 | [torch.nextafter](https://pytorch.org/docs/stable/generated/torch.nextafter.html?highlight=nextafter#torch.nextafter) | [paddle.nextafter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nextafter_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nextafter.md) | -| 169 | [torch.fmod](https://pytorch.org/docs/stable/generated/torch.fmod.html?highlight=fmod#torch.fmod) | [paddle.mod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/mod_cn.html#mod) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.fmod.md) | -| 170 | [torch.fix](https://pytorch.org/docs/stable/generated/torch.fix.html?highlight=torch+fix#torch.fix) | [paddle.trunc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/trunc_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.fix.md) | -| 171 | [torch.median](https://pytorch.org/docs/stable/generated/torch.median.html?highlight=median#torch.median) | [paddle.median](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/median_cn.html#median) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.median.md) | -| 172 | [torch.lgamma](https://pytorch.org/docs/stable/generated/torch.lgamma.html?highlight=lgamma#torch.lgamma) | [paddle.lgamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/lgamma_cn.html#lgamma) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lgamma.md) | -| 173 | [torch.atan2](https://pytorch.org/docs/stable/generated/torch.atan2.html#torch.atan2) | [paddle.atan2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/atan2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.atan2.md) | -| 174 | [torch.acosh](https://pytorch.org/docs/stable/generated/torch.acosh.html?highlight=acosh#torch.acosh) | [paddle.acosh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/acosh_cn.html#acos) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.acosh.md) | -| 175 | [torch.nanmedian](https://pytorch.org/docs/stable/generated/torch.nanmedian.html?highlight=nanmedian#torch.nanmedian) | [paddle.nanmedian](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nanmedian_cn.html#nanmedian) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nanmedian.md) | -| 176 | [torch.inverse](https://pytorch.org/docs/stable/generated/torch.inverse.html?highlight=inverse#torch.inverse) | [paddle.linalg.inv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/inv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.inverse.md) | -| 177 | [torch.linspace](https://pytorch.org/docs/stable/generated/torch.linspace.html?highlight=linspace#torch.linspace) | [paddle.linspace](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linspace_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.linspace.md) | -| 178 | torch.scalar_tensor | [paddle.to_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/to_tensor_cn.html#to-tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.scalar_tensor.md) | -| 179 | [torch.isposinf](https://pytorch.org/docs/stable/generated/torch.isposinf.html#torch-isposinf) | [paddle.isposinf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isposinf_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isposinf.md) | -| 180 | [torch.index_add](https://pytorch.org/docs/stable/generated/torch.index_add.html#torch.index_add) | [paddle.index_add](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/index_add_cn.html#index-add) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.index_add.md) | -| 181 | [torch.acos](https://pytorch.org/docs/stable/generated/torch.acos.html?highlight=acos#torch.acos) | [paddle.acos](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/acos_cn.html#acos) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.acos.md) | -| 182 | [torch.randint](https://pytorch.org/docs/stable/generated/torch.randint.html?highlight=randint#torch.randint) | [paddle.randint](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randint_cn.html#randint) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.randint.md) | -| 183 | [torch.mv](https://pytorch.org/docs/stable/generated/torch.mv.html?highlight=torch+mv#torch.mv) | [paddle.mv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/mv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.mv.md) | -| 184 | [torch.vdot](https://pytorch.org/docs/stable/generated/torch.vdot.html#torch.vdot) | [paddle.dot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dot_cn.html#dot) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.vdot.md) | -| 185 | [torch.negative](https://pytorch.org/docs/stable/generated/torch.negative.html?highlight=torch+negative#torch.negative) | [paddle.neg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/neg_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.negative.md) | -| 186 | [torch.bernoulli](https://pytorch.org/docs/stable/generated/torch.bernoulli.html#torch.bernoulli) | [paddle.bernoulli](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bernoulli_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bernoulli.md) | -| 187 | [torch.inner](https://pytorch.org/docs/stable/generated/torch.inner.html?highlight=inner#torch.inner) | [paddle.inner](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/inner_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.inner.md) | -| 188 | [torch.bucketize](https://pytorch.org/docs/stable/generated/torch.bucketize.html#torch.bucketize) | [paddle.bucketize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bucketize_cn.html#paddle-bucketize) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bucketize.md) | -| 189 | [torch.nan_to_num](https://pytorch.org/docs/stable/generated/torch.nan_to_num.html?highlight=nan_to_num#torch.nan_to_num) | [paddle.nan_to_num](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nan_to_num_cn.html#nan-to-num) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nan_to_num.md) | -| 190 | [torch.ceil](https://pytorch.org/docs/stable/generated/torch.ceil.html#torch.ceil) | [paddle.ceil](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/ceil_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.ceil.md) | -| 191 | [torch.triu_indices](https://pytorch.org/docs/stable/generated/torch.triu_indices.html?highlight=triu_indices#torch.triu_indices) | [paddle.triu_indices](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/triu_indices_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.triu_indices.md) | -| 192 | [torch.logspace](https://pytorch.org/docs/stable/generated/torch.logspace.html?highlight=logspace#torch.logspace) | [paddle.logspace](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logspace_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.logspace.md) | -| 193 | [torch.set_printoptions](https://pytorch.org/docs/stable/generated/torch.set_printoptions.html?highlight=torch+set_printoptions#torch.set_printoptions) | [paddle.set_printoptions](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/set_printoptions_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.set_printoptions.md) | -| 194 | [torch.save](https://pytorch.org/docs/stable/generated/torch.save.html?highlight=save#torch.save) | [paddle.save](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/save_cn.html#save) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.save.md) | -| 195 | [torch.fmax](https://pytorch.org/docs/stable/generated/torch.fmax.html#torch.fmax) | [paddle.fmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fmax_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.fmax.md) | -| 196 | [torch.baddbmm](https://pytorch.org/docs/stable/generated/torch.baddbmm.html?highlight=baddbmm#torch.baddbmm) | [paddle.baddbmm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/baddbmm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.baddbmm.md) | -| 197 | [torch.deg2rad](https://pytorch.org/docs/stable/generated/torch.deg2rad.html#torch-deg2rad) | [paddle.deg2rad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/deg2rad_cn.html#paddle.deg2rad) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.deg2rad.md) | -| 198 | [torch.gcd](https://pytorch.org/docs/stable/generated/torch.gcd.html#torch-gcd) | [paddle.gcd](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/gcd_cn.html#gcd) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.gcd.md) | -| 199 | [torch.trunc](https://pytorch.org/docs/stable/generated/torch.trunc.html?highlight=torch+trunc#torch.trunc) | [paddle.trunc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/trunc_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.trunc.md) | -| 200 | [torch.qr](https://pytorch.org/docs/stable/generated/torch.qr.html#torch.qr) | [paddle.linalg.qr](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/qr_cn.html#qr) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.qr.md) | -| 201 | [torch.ldexp](https://pytorch.org/docs/stable/generated/torch.ldexp.html#torch.ldexp) | [paddle.ldexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/ldexp_cn.html#ldexp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.ldexp.md) | -| 202 | [torch.asin](https://pytorch.org/docs/stable/generated/torch.asin.html#torch.asin) | [paddle.asin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/asin_cn.html#asin) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.asin.md) | -| 203 | [torch.unique](https://pytorch.org/docs/stable/generated/torch.unique.html?highlight=unique#torch.unique) | [paddle.unique](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unique_cn.html#unique) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.unique.md) | -| 204 | [torch.signbit](https://pytorch.org/docs/stable/generated/torch.signbit.html#torch-signbit) | [paddle.signbit](https://github.com/PaddlePaddle/Paddle/blob/9ce3a54f456011c664c70fbcd318f2e1af0a7d81/python/paddle/tensor/math.py#L7175) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.signbit.md) | -| 205 | [torch.svd](https://pytorch.org/docs/stable/generated/torch.svd.html?highlight=torch+svd#torch.svd) | [paddle.linalg.svd](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/svd_cn.html#svd) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.svd.md) | -| 206 | [torch.atan](https://pytorch.org/docs/stable/generated/torch.atan.html#torch.atan) | [paddle.atan](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/atan_cn.html#atan) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.atan.md) | -| 207 | [torch.normal](https://pytorch.org/docs/stable/generated/torch.normal.html#torch.normal) | [paddle.normal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/normal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.normal.md) | -| 208 | [torch.nanmean](https://pytorch.org/docs/stable/generated/torch.nanmean.html?highlight=nanmean#torch.nanmean) | [paddle.nanmean](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nanmean_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nanmean.md) | -| 209 | [torch.searchsorted](https://pytorch.org/docs/stable/generated/torch.searchsorted.html#torch-searchsorted) | [paddle.searchsorted](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/searchsorted_cn.html#searchsorted) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.searchsorted.md) | -| 210 | [torch.lt](https://pytorch.org/docs/stable/generated/torch.lt.html#torch.lt) | [paddle.less_than](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/less_than_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lt.md) | -| 211 | [torch.autocast](https://pytorch.org/docs/stable/amp.html?highlight=autocast#torch.autocast) | [paddle.amp.auto_cast](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amp/auto_cast_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.autocast.md) | -| 212 | [torch.sparse_csr_tensor](https://pytorch.org/docs/stable/generated/torch.sparse_csr_tensor.html#torch.sparse_csr_tensor) | [paddle.sparse.sparse_csr_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sparse/sparse_csr_tensor_cn.html#sparse-csr-tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.sparse_csr_tensor.md) | -| 213 | [torch.abs](https://pytorch.org/docs/stable/generated/torch.abs.html?highlight=abs#torch.abs) | [paddle.abs](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/abs_cn.html#abs) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.abs.md) | -| 214 | [torch.atanh](https://pytorch.org/docs/stable/generated/torch.atanh.html#torch.atanh) | [paddle.atanh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/atanh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.atanh.md) | -| 215 | [torch.lu_unpack](https://pytorch.org/docs/stable/generated/torch.lu_unpack.html?highlight=lu_unpack#torch.lu_unpack) | [paddle.linalg.lu_unpack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_unpack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lu_unpack.md) | -| 216 | [torch.max_pool1d](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | [paddle.nn.functional.max_pool1d](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/max_pool1d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.max_pool1d.md) | -| 217 | [torch.exp](https://pytorch.org/docs/stable/generated/torch.exp.html?highlight=torch+exp#torch.exp) | [paddle.exp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/exp_cn.html#exp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.exp.md) | -| 218 | [torch.stft](https://pytorch.org/docs/stable/generated/torch.stft.html?highlight=stft#torch.stft) | [paddle.signal.stft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/signal/stft_cn.html#paddle.signal.stft) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.stft.md) | -| 219 | [torch.logcumsumexp](https://pytorch.org/docs/stable/generated/torch.logcumsumexp.html#torch-logcumsumexp) | [paddle.logcumsumexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logcumsumexp_cn.html#logcumsumexp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.logcumsumexp.md) | -| 220 | [torch.ne](https://pytorch.org/docs/stable/generated/torch.ne.html?highlight=torch.ne#torch.ne) | [paddle.not_equal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/not_equal_cn.html#not_equal) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.ne.md) | -| 221 | [torch.renorm](https://pytorch.org/docs/stable/generated/torch.renorm.html#torch-renorm) | paddle.renorm | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.renorm.md) | -| 222 | [torch.randn_like](https://pytorch.org/docs/stable/generated/torch.randn_like.html#torch.randn_like) | [paddle.randn_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randn_like_cn.html#randn_like) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.randn_like.md) | -| 223 | [torch.log1p](https://pytorch.org/docs/stable/generated/torch.log1p.html?highlight=log1p#torch.log1p) | [paddle.log1p](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/log1p_cn.html#log1p) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.log1p.md) | -| 224 | [torch.load](https://pytorch.org/docs/stable/generated/torch.load.html?highlight=load#torch.load) | [paddle.load](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/load_cn.html#load) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.load.md) | -| 225 | [torch.hann_window](https://pytorch.org/docs/stable/generated/torch.hann_window.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hann_window.md) | -| 226 | [torch.hub.load_state_dict_from_url](https://pytorch.org/docs/stable/hub.html#torch.hub.load_state_dict_from_url) | [paddle.hub.load_state_dict_from_url](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hub/load_state_dict_from_url_cn.html#load-state-dict-from-url) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hub.load_state_dict_from_url.md) | -| 227 | [torch.fmin](https://pytorch.org/docs/stable/generated/torch.fmin.html#torch.fmin) | [paddle.fmin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fmin_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.fmin.md) | -| 228 | [torch.mode](https://pytorch.org/docs/stable/generated/torch.mode.html) | [paddle.mode](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/mode_cn.html#mode) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.mode.md) | -| 229 | [torch.addmm](https://pytorch.org/docs/stable/generated/torch.addmm.html?highlight=addmm#torch.addmm) | [paddle.addmm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/addmm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.addmm.md) | -| 230 | [torch.log10](https://pytorch.org/docs/stable/generated/torch.log10.html?highlight=log10#torch.log10) | [paddle.log10](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/log10_cn.html#log10) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.log10.md) | -| 231 | [torch.nn.modules.batchnorm._BatchNorm](https://pytorch.org/docs/stable/_modules/torch/nn/modules/batchnorm.html) | [paddle.nn.layer.norm._BatchNormBase](https://github.com/PaddlePaddle/Paddle/blob/b51d50bc9ee9eaa5cefa18507195b239e4513194/python/paddle/nn/layer/norm.py#L701) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nn.modules.batchnorm._BatchNorm.md) | -| 232 | [torch.sgn](https://pytorch.org/docs/stable/generated/torch.sgn.html?highlight=torch+sgn#torch.sgn) | [paddle.sgn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sgn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.sgn.md) | -| 233 | [torch.tril_indices](https://pytorch.org/docs/stable/generated/torch.tril_indices.html?highlight=tril_indices#torch.tril_indices) | [paddle.tril_indices](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tril_indices_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.tril_indices.md) | -| 234 | [torch.cholesky](https://pytorch.org/docs/stable/generated/torch.cholesky.html?highlight=cholesky#torch.cholesky) | [paddle.linalg.cholesky](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cholesky.md) | -| 235 | [torch.frac](https://pytorch.org/docs/stable/generated/torch.frac.html?highlight=frac#torch.frac) | [paddle.frac](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/frac_cn.html#frac) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.frac.md) | -| 236 | [torch.randperm](https://pytorch.org/docs/stable/generated/torch.randperm.html?highlight=rand#torch.randperm) | [paddle.randperm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randperm_cn.html#randperm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.randperm.md) | -| 237 | [torch.rad2deg](https://pytorch.org/docs/stable/generated/torch.rad2deg.html?highlight=torch+rad2deg#torch.rad2deg) | [paddle.rad2deg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/rad2deg_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.rad2deg.md) | -| 238 | [torch.frexp](https://pytorch.org/docs/stable/generated/torch.frexp.html?highlight=frexp#torch.frexp) | [paddle.frexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/frexp_cn.html#frexp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.frexp.md) | -| 239 | [torch.tensordot](https://pytorch.org/docs/stable/generated/torch.tensordot.html?highlight=tensordot#torch.tensordot) | [paddle.tensordot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tensordot_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.tensordot.md) | -| 240 | [torch.mvlgamma](https://pytorch.org/docs/stable/generated/torch.mvlgamma.html) | [paddle.multigammaln](https://github.com/PaddlePaddle/Paddle/blob/be090bd0bc9ac7a8595296c316b3a6ed3dc60ba6/python/paddle/tensor/math.py#L5099) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.mvlgamma.md) | -| 241 | [torch.sinh](https://pytorch.org/docs/stable/generated/torch.sinh.html?highlight=sinh#torch.sinh) | [paddle.sinh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sinh_cn.html#sinh) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.sinh.md) | -| 242 | [torch.lcm](https://pytorch.org/docs/stable/generated/torch.lcm.html#torch-lcm) | [paddle.lcm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/lcm_cn.html#lcm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lcm.md) | -| 243 | [torch.diag](https://pytorch.org/docs/stable/generated/torch.diag.html?highlight=diag#torch.diag) | [paddle.diag](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diag_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.diag.md) | -| 244 | [torch.reciprocal](https://pytorch.org/docs/stable/generated/torch.reciprocal.html?highlight=torch+reciprocal#torch.reciprocal) | [paddle.reciprocal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/reciprocal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.reciprocal.md) | -| 245 | [torch.conj_physical](https://pytorch.org/docs/stable/generated/torch.conj_physical.html#torch.conj_physical) | [paddle.conj](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/conj_cn.html#conj) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.conj_physical.md) | -| 246 | [torch.heaviside](https://pytorch.org/docs/stable/generated/torch.heaviside.html#torch.heaviside) | [paddle.heaviside](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/heaviside_cn.html#heaviside) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.heaviside.md) | -| 247 | [torch.nanquantile](https://pytorch.org/docs/stable/generated/torch.nanquantile.html?highlight=nanquantile#torch.nanquantile) | [paddle.nanquantile](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nanquantile_cn.html#nanquantile) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nanquantile.md) | -| 248 | [torch.mm](https://pytorch.org/docs/stable/generated/torch.mm.html?highlight=torch+mm#torch.mm) | [paddle.mm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/mm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.mm.md) | -| 249 | [torch.clone](https://pytorch.org/docs/stable/generated/torch.clone.html?highlight=clone#torch.clone) | [paddle.clone](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/clone_cn.html#clone) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.clone.md) | -| 250 | [torch.masked_select](https://pytorch.org/docs/stable/generated/torch.masked_select.html?highlight=masked_select#torch.masked_select) | [paddle.masked_select](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/masked_select_cn.html#masked-select) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.masked_select.md) | -| 251 | torch.clamp_max | [paddle.clip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/clip_cn.html#clip) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.clamp_max.md) | -| 252 | [torch.round](https://pytorch.org/docs/stable/generated/torch.round.html?highlight=round#torch.round) | [paddle.round](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/round_cn.html#round) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.round.md) | -| 253 | [torch.sub](https://pytorch.org/docs/stable/generated/torch.sub.html?highlight=torch%20sub#torch.sub) | [paddle.subtract](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/subtract_cn.html#subtract) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.sub.md) | -| 254 | [torch.column_stack](https://pytorch.org/docs/stable/generated/torch.column_stack.html#torch.column_stack) | [paddle.column_stack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/column_stack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.column_stack.md) | -| 255 | [torch.meshgrid](https://pytorch.org/docs/stable/generated/torch.meshgrid.html?highlight=meshgrid#torch.meshgrid) | [paddle.meshgrid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/meshgrid_cn.html#meshgrid) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.meshgrid.md) | -| 256 | [torch.symeig](https://pytorch.org/docs/stable/generated/torch.symeig.html?highlight=torch+symeig#torch.symeig) | [paddle.linalg.eigh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigh_cn.html#eigh) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.symeig.md) | -| 257 | [torch.poisson](https://pytorch.org/docs/stable/generated/torch.poisson.html#torch.poisson) | [paddle.poisson](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/poisson_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.poisson.md) | -| 258 | [torch.hub.list](https://pytorch.org/docs/stable/hub.html?highlight=hub+list#torch.hub.list) | [paddle.hub.list](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hub/list_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/hub/torch.hub.list.md) | -| 259 | [torch.hub.help](https://pytorch.org/docs/stable/hub.html?highlight=hub+help#torch.hub.help) | [paddle.hub.help](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hub/help_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/hub/torch.hub.help.md) | -| 260 | [torch.hub.download_url_to_file](https://pytorch.org/docs/stable/hub.html?highlight=download#torch.hub.download_url_to_file) | [paddle.utils.download.get_weights_path_from_url](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/download/get_weights_path_from_url_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/hub/torch.hub.download_url_to_file.md) | -| 261 | [torch.hub.load](https://pytorch.org/docs/stable/hub.html?highlight=hub+load#torch.hub.load) | [paddle.hub.load](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hub/load_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/hub/torch.hub.load.md) | -| 262 | [torch.fft.fft](https://pytorch.org/docs/stable/generated/torch.fft.fft.html?highlight=fft#torch.fft.fft) | [paddle.fft.fft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fft.md) | -| 263 | [torch.fft.hfft2](https://pytorch.org/docs/stable/generated/torch.fft.hfft2.html?highlight=torch+fft+hfft2#torch.fft.hfft2) | [paddle.fft.hfft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/hfft2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.hfft2.md) | -| 264 | [torch.fft.irfft2](https://pytorch.org/docs/stable/generated/torch.fft.irfft2.html#torch-fft-irfft2) | [paddle.fft.irfft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/irfft2_cn.html#irfft2) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.irfft2.md) | -| 265 | [torch.fft.fftn](https://pytorch.org/docs/stable/generated/torch.fft.fftn.html?highlight=fftn#torch.fft.fftn) | [paddle.fft.fftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fftn.md) | -| 266 | [torch.fft.rfftfreq](https://pytorch.org/docs/stable/generated/torch.fft.rfftfreq.html?highlight=rfftfreq#torch.fft.rfftfreq) | [paddle.fft.rfftfreq](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/rfftfreq_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.rfftfreq.md) | -| 267 | [torch.fft.irfft](https://pytorch.org/docs/stable/generated/torch.fft.irfft.html#torch-fft-irfft) | [paddle.fft.irfft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/irfft_cn.html#irfft) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.irfft.md) | -| 268 | [torch.fft.ifft2](https://pytorch.org/docs/stable/generated/torch.fft.ifft2.html?highlight=ifft2#torch.fft.ifft2) | [paddle.fft.ifft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ifft2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ifft2.md) | -| 269 | [torch.fft.hfft](https://pytorch.org/docs/stable/generated/torch.fft.hfft.html?highlight=hfft#torch.fft.hfft) | [paddle.fft.hfft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/hfft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.hfft.md) | -| 270 | [torch.fft.fftfreq](https://pytorch.org/docs/stable/generated/torch.fft.fftfreq.html?highlight=fftfreq#torch.fft.fftfreq) | [paddle.fft.fftfreq](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fftfreq_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fftfreq.md) | -| 271 | [torch.fft.rfft](https://pytorch.org/docs/stable/generated/torch.fft.rfft.html#torch-fft-rfft) | [paddle.fft.rfft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/rfft_cn.html#rfft) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.rfft.md) | -| 272 | [torch.fft.ihfft2](https://pytorch.org/docs/stable/generated/torch.fft.ihfft2.html?highlight=torch+fft+ihfft2#torch.fft.ihfft2) | [paddle.fft.ihfft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ihfft2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ihfft2.md) | -| 273 | [torch.fft.hfftn](https://pytorch.org/docs/stable/generated/torch.fft.hfftn.html?highlight=torch+fft+hfftn#torch.fft.hfftn) | [paddle.fft.hfftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/hfftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.hfftn.md) | -| 274 | [torch.fft.ihfftn](https://pytorch.org/docs/stable/generated/torch.fft.ihfftn.html?highlight=torch+fft+ihfftn#torch.fft.ihfftn) | [paddle.fft.ihfftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ihfftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ihfftn.md) | -| 275 | [torch.fft.irfftn](https://pytorch.org/docs/stable/generated/torch.fft.irfftn.html?highlight=irfftn#torch.fft.irfftn) | [paddle.fft.irfftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/irfftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.irfftn.md) | -| 276 | [torch.fft.ihfft](https://pytorch.org/docs/stable/generated/torch.fft.ihfft.html?highlight=ihfft#torch.fft.ihfft) | [paddle.fft.ihfft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ihfft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ihfft.md) | -| 277 | [torch.fft.fft2](https://pytorch.org/docs/stable/generated/torch.fft.fft2.html?highlight=fft2#torch.fft.fft2) | [paddle.fft.fft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fft2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fft2.md) | -| 278 | [torch.fft.rfft2](https://pytorch.org/docs/stable/generated/torch.fft.rfft2.html) | [paddle.fft.rfft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/rfft2_cn.html#rfft2) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.rfft2.md) | -| 279 | [torch.fft.ifftn](https://pytorch.org/docs/stable/generated/torch.fft.ifftn.html?highlight=ifftn#torch.fft.ifftn) | [paddle.fft.ifftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ifftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ifftn.md) | -| 280 | [torch.fft.rfftn](https://pytorch.org/docs/stable/generated/torch.fft.rfftn.html#torch-fft-rfftn) | [paddle.fft.rfftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/rfftn_cn.html#rfftn) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.rfftn.md) | -| 281 | [torch.fft.ifft](https://pytorch.org/docs/stable/generated/torch.fft.ifft.html?highlight=ifft#torch.fft.ifft) | [paddle.fft.ifft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ifft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ifft.md) | -| 282 | [torch.cuda.comm.broadcast](https://pytorch.org/docs/stable/generated/torch.cuda.comm.broadcast.html#torch.cuda.comm.broadcast) | [paddle.distributed.broadcast](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/broadcast_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.comm.broadcast.md) | -| 283 | [torch.distributed.init_process_group](https://pytorch.org/docs/stable/distributed.html?highlight=init_process#torch.distributed.init_process_group) | [paddle.distributed.init_parallel_env](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/init_parallel_env_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.init_process_group.md) | -| 284 | [torch.distributed.ReduceOp](https://pytorch.org/docs/stable/distributed.html?highlight=torch+distributed+reduceop#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.ReduceOp.md) | -| 285 | [torch.distributed.broadcast_object_list](https://pytorch.org/docs/stable/distributed.html?highlight=broadcast_object_list#torch.distributed.broadcast_object_list) | [paddle.distributed.broadcast_object_list](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distributed/broadcast_object_list_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.broadcast_object_list.md) | -| 286 | [torch.distributed.P2POp](https://pytorch.org/docs/stable/distributed.html#torch.distributed.P2POp) | [paddle.distributed.P2POp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/Overview_cn.html#paddle-distributed) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.P2POp.md) | -| 287 | [torch.distributed.new_group](https://pytorch.org/docs/stable/distributed.html#torch.distributed.new_group) | [paddle.distributed.new_group](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/new_group_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.new_group.md) | -| 288 | [torch.distributed.recv](https://pytorch.org/docs/stable/distributed.html#torch.distributed.recv) | [paddle.distributed.recv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/recv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.recv.md) | -| 289 | [torch.distributed.rpc.init_rpc](https://pytorch.org/docs/stable/rpc.html#torch.distributed.rpc.init_rpc) | [paddle.distributed.rpc.init_rpc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/rpc/init_rpc_cn.html#init-rpc) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.rpc.init_rpc.md) | -| 290 | [torch.distributed.monitored_barrier](https://pytorch.org/docs/stable/distributed.html#torch.distributed.monitored_barrier) | [paddle.distributed.barrier](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/barrier_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.monitored_barrier.md) | -| 291 | [torch.distributed.isend](https://pytorch.org/docs/stable/distributed.html#torch.distributed.isend) | [paddle.distributed.isend](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distributed/isend_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.isend.md) | -| 292 | [torch.distributed.barrier](https://pytorch.org/docs/stable/distributed.html?highlight=barrier#torch.distributed.barrier) | [paddle.distributed.barrier](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/barrier_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.barrier.md) | -| 293 | [torch.distributed.send](https://pytorch.org/docs/stable/distributed.html#torch.distributed.send) | [paddle.distributed.send](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/send_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.send.md) | -| 294 | [torch.distributed.rpc.shutdown](https://pytorch.org/docs/stable/rpc.html#torch.distributed.rpc.shutdown) | [paddle.distributed.rpc.shutdown](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/rpc/shutdown_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.rpc.shutdown.md) | -| 295 | [torch.distributed.irecv](https://pytorch.org/docs/stable/distributed.html?highlight=send#torch.distributed.irecv) | [paddle.distributed.irecv](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distributed/irecv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.irecv.md) | -| 296 | [torch.nn.Bilinear](https://pytorch.org/docs/stable/generated/torch.nn.Bilinear.html#torch.nn.Bilinear) | [paddle.nn.Bilinear](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Bilinear_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Bilinear.md) | -| 297 | [torch.nn.SiLU](https://pytorch.org/docs/stable/generated/torch.nn.SiLU.html#torch.nn.SiLU) | [paddle.nn.Silu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Silu_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SiLU.md) | -| 298 | [torch.nn.MultiLabelMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.MultiLabelMarginLoss.html#torch.nn.MultiLabelMarginLoss) | [paddle.nn.MultiLabelMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MultiLabelMarginLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MultiLabelMarginLoss.md) | -| 299 | [torch.nn.Dropout](https://pytorch.org/docs/stable/generated/torch.nn.Dropout.html?highlight=dropout#torch.nn.Dropout) | [paddle.nn.Dropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Dropout_cn.html#dropout) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Dropout.md) | -| 300 | [torch.nn.LayerNorm](https://pytorch.org/docs/stable/generated/torch.nn.LayerNorm.html?highlight=layernorm#torch.nn.LayerNorm) | [paddle.nn.LayerNorm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LayerNorm_cn.html#layernorm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.LayerNorm.md) | -| 301 | [torch.nn.GroupNorm](https://pytorch.org/docs/stable/generated/torch.nn.GroupNorm.html?highlight=groupnorm#torch.nn.GroupNorm) | [paddle.nn.GroupNorm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/GroupNorm_cn.html#groupnorm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.GroupNorm.md) | -| 302 | [torch.nn.BCEWithLogitsLoss](https://pytorch.org/docs/stable/generated/torch.nn.BCEWithLogitsLoss.html#bcewithlogitsloss) | [paddle.nn.BCEWithLogitsLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/BCEWithLogitsLoss_cn.html#bcewithlogitsloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.BCEWithLogitsLoss.md) | -| 303 | [torch.nn.ELU](https://pytorch.org/docs/stable/generated/torch.nn.ELU.html?highlight=elu#torch.nn.ELU) | [paddle.nn.ELU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ELU_cn.html#elu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ELU.md) | -| 304 | [torch.nn.NLLLoss](https://pytorch.org/docs/stable/generated/torch.nn.NLLLoss.html?highlight=nllloss#torch.nn.NLLLoss) | [paddle.nn.NLLLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/NLLLoss_cn.html#nllloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.NLLLoss.md) | -| 305 | [torch.nn.InstanceNorm3d](https://pytorch.org/docs/stable/generated/torch.nn.InstanceNorm3d.html#torch.nn.InstanceNorm3d) | [paddle.nn.InstanceNorm3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/InstanceNorm3D_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.InstanceNorm3d.md) | -| 306 | [torch.nn.Dropout3d](https://pytorch.org/docs/stable/generated/torch.nn.Dropout3d.html?highlight=dropout3d#torch.nn.Dropout3d) | [paddle.nn.Dropout3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Dropout3D_cn.html#dropout3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Dropout3d.md) | -| 307 | [torch.nn.FractionalMaxPool3d](https://pytorch.org/docs/stable/generated/torch.nn.FractionalMaxPool3d.html#fractionalmaxpool3d) | [paddle.nn.FractionalMaxPool3D](https://www.paddlepaddle.org.cn/documentation/docs/en/develop/api/paddle/nn/FractionalMaxPool3D_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.FractionalMaxPool3d.md) | -| 308 | [torch.nn.Module.register_forward_pre_hook](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_forward_pre_hook) | [paddle.nn.Layer.register_forward_pre_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-forward-pre-hook-hook) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_forward_pre_hook.md) | -| 309 | [torch.nn.Mish](https://pytorch.org/docs/stable/generated/torch.nn.Mish.html?highlight=torch+nn+mish) | [paddle.nn.Mish](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Mish_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Mish.md) | -| 310 | [torch.nn.Hardswish](https://pytorch.org/docs/stable/generated/torch.nn.Hardswish.html#torch.nn.Hardswish) | [paddle.nn.Hardswish](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Hardswish_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Hardswish.md) | -| 311 | [torch.nn.Module.load_state_dict](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.load_state_dict) | [paddle.nn.Layer.set_state_dict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#set-state-dict-state-dict-use-structured-name-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.load_state_dict.md) | -| 312 | [torch.nn.PoissonNLLLoss](https://pytorch.org/docs/stable/generated/torch.nn.PoissonNLLLoss) | [paddle.nn.PoissonNLLLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/PoissonNLLLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.PoissonNLLLoss.md) | -| 313 | [torch.nn.MaxPool1d](https://pytorch.org/docs/stable/generated/torch.nn.MaxPool1d.html?highlight=maxpool1d#torch.nn.MaxPool1d) | [paddle.nn.MaxPool1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MaxPool1D_cn.html#maxpool1d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MaxPool1d.md) | -| 314 | [torch.nn.FractionalMaxPool2d](https://pytorch.org/docs/stable/generated/torch.nn.FractionalMaxPool2d.html#fractionalmaxpool2d) | [paddle.nn.FractionalMaxPool2D](https://www.paddlepaddle.org.cn/documentation/docs/en/develop/api/paddle/nn/FractionalMaxPool2D_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.FractionalMaxPool2d.md) | -| 315 | [torch.nn.Hardtanh](https://pytorch.org/docs/stable/generated/torch.nn.Hardtanh.html#torch.nn.Hardtanh) | [paddle.nn.Hardtanh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Hardtanh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Hardtanh.md) | -| 316 | [torch.nn.AdaptiveLogSoftmaxWithLoss](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveLogSoftmaxWithLoss.html#adaptivelogsoftmaxwithloss) | [paddle.nn.AdaptiveLogSoftmaxWithLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AdaptiveLogSoftmaxWithLoss_cn.html#adaptivelogsoftmaxwithloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AdaptiveLogSoftmaxWithLoss.md) | -| 317 | [torch.nn.Transformer](https://pytorch.org/docs/stable/generated/torch.nn.Transformer.html#torch.nn.Transformer) | [paddle.nn.Transformer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Transformer_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Transformer.md) | -| 318 | [torch.nn.LeakyReLU](https://pytorch.org/docs/stable/generated/torch.nn.LeakyReLU.html?highlight=leakyrelu#torch.nn.LeakyReLU) | [paddle.nn.LeakyReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LeakyReLU_cn.html#leakyrelu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.LeakyReLU.md) | -| 319 | [torch.nn.TransformerEncoder](https://pytorch.org/docs/stable/generated/torch.nn.TransformerEncoder.html#torch.nn.TransformerEncoder) | [paddle.nn.TransformerEncoder](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TransformerEncoder_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.TransformerEncoder.md) | -| 320 | [torch.nn.SmoothL1Loss](https://pytorch.org/docs/stable/generated/torch.nn.SmoothL1Loss.html?highlight=smoothl1loss#torch.nn.SmoothL1Loss) | [paddle.nn.SmoothL1Loss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SmoothL1Loss_cn.html#smoothl1loss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SmoothL1Loss.md) | -| 321 | [torch.nn.MultiLabelSoftMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.MultiLabelSoftMarginLoss.html#torch.nn.MultiLabelSoftMarginLoss) | [paddle.nn.MultiLabelSoftMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MultiLabelSoftMarginLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MultiLabelSoftMarginLoss.md) | -| 322 | [torch.nn.CosineEmbeddingLoss](https://pytorch.org/docs/stable/generated/torch.nn.CosineEmbeddingLoss.html#torch.nn.CosineEmbeddingLoss) | [paddle.nn.CosineEmbeddingLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CosineEmbeddingLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CosineEmbeddingLoss.md) | -| 323 | [torch.nn.MaxPool3d](https://pytorch.org/docs/stable/generated/torch.nn.MaxPool3d.html?highlight=maxpool3d#torch.nn.MaxPool3d) | [paddle.nn.MaxPool3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MaxPool3D_cn.html#maxpool3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MaxPool3d.md) | -| 324 | [torch.nn.SELU](https://pytorch.org/docs/stable/generated/torch.nn.SELU.html#torch.nn.SELU) | [paddle.nn.SELU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SELU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SELU.md) | -| 325 | [torch.nn.parallel.DistributedDataParallel](https://pytorch.org/docs/stable/generated/torch.nn.parallel.DistributedDataParallel.html#torch.nn.parallel.DistributedDataParallel) | [paddle.DataParallel](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/DataParallel_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.parallel.DistributedDataParallel.md) | -| 326 | [torch.nn.TransformerEncoderLayer](https://pytorch.org/docs/stable/generated/torch.nn.TransformerEncoderLayer.html#torch.nn.TransformerEncoderLayer) | [paddle.nn.TransformerEncoderLayer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TransformerEncoderLayer_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.TransformerEncoderLayer.md) | -| 327 | [torch.nn.SoftMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.SoftMarginLoss.html#torch.nn.SoftMarginLoss) | [paddle.nn.SoftMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SoftMarginLoss_cn.html#softmarginloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SoftMarginLoss.md) | -| 328 | [torch.nn.DataParallel](https://pytorch.org/docs/stable/generated/torch.nn.DataParallel.html?highlight=dataparallel#torch.nn.DataParallel) | [paddle.DataParallel](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/DataParallel_cn.html#dataparallel) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.DataParallel.md) | -| 329 | [torch.nn.Module.register_forward_hook](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_forward_hook) | [paddle.nn.Layer.register_forward_post_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-forward-post-hook-hook) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_forward_hook.md) | -| 330 | [torch.nn.TransformerDecoderLayer](https://pytorch.org/docs/stable/generated/torch.nn.TransformerDecoderLayer.html?highlight=transformerdecoderlayer#torch.nn.TransformerDecoderLayer) | [paddle.nn.TransformerDecoderLayer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TransformerDecoderLayer_cn.html#transformerdecoderlayer) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.TransformerDecoderLayer.md) | -| 331 | [torch.nn.CELU](https://pytorch.org/docs/stable/generated/torch.nn.CELU.html#torch.nn.CELU) | [paddle.nn.CELU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CELU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CELU.md) | -| 332 | [torch.nn.MultiMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.MultiMarginLoss) | [paddle.nn.MultiMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MultiMarginLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MultiMarginLoss.md) | -| 333 | [torch.nn.Dropout2d](https://pytorch.org/docs/stable/generated/torch.nn.Dropout2d.html?highlight=dropout2d#torch.nn.Dropout2d) | [paddle.nn.Dropout2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Dropout2D_cn.html#dropout2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Dropout2d.md) | -| 334 | [torch.nn.SyncBatchNorm.convert_sync_batchnorm](https://pytorch.org/docs/stable/generated/torch.nn.SyncBatchNorm.html?highlight=convert_sync_batchnorm#torch.nn.SyncBatchNorm.convert_sync_batchnorm) | [paddle.nn.SyncBatchNorm.convert_sync_batchnorm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SyncBatchNorm_cn.html#convert-sync-batchnorm-layer) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SyncBatchNorm.convert_sync_batchnorm.md) | -| 335 | [torch.nn.AlphaDropout](https://pytorch.org/docs/stable/generated/torch.nn.AlphaDropout.html#torch.nn.AlphaDropout) | [paddle.nn.AlphaDropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AlphaDropout_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AlphaDropout.md) | -| 336 | [torch.nn.CTCLoss](https://pytorch.org/docs/stable/generated/torch.nn.CTCLoss.html#torch.nn.CTCLoss) | [paddle.nn.CTCLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CTCLoss_cn.html#ctcloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CTCLoss.md) | -| 337 | [torch.nn.RReLU](https://pytorch.org/docs/stable/generated/torch.nn.RReLU.html#torch.nn.RReLU) | [paddle.nn.RReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/RReLU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.RReLU.md) | -| 338 | [torch.nn.L1Loss](https://pytorch.org/docs/stable/generated/torch.nn.L1Loss.html?highlight=l1loss#torch.nn.L1Loss) | [paddle.nn.L1Loss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/L1Loss_cn.html#l1loss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.L1Loss.md) | -| 339 | [torch.nn.ReLU](https://pytorch.org/docs/stable/generated/torch.nn.ReLU.html?highlight=relu#torch.nn.ReLU) | [paddle.nn.ReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ReLU_cn.html#relu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReLU.md) | -| 340 | [torch.nn.PReLU](https://pytorch.org/docs/stable/generated/torch.nn.PReLU.html?highlight=prelu#torch.nn.PReLU) | [paddle.nn.PReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/PReLU_cn.html#prelu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.PReLU.md) | -| 341 | [torch.nn.RNNBase](https://pytorch.org/docs/stable/generated/torch.nn.RNNBase.html#torch.nn.RNNBase) | [paddle.nn.layer.rnn.RNNBase](https://github.com/PaddlePaddle/Paddle/blob/e25e86f4f6d1bbd043b621a75e93d0070719c3d8/python/paddle/nn/layer/rnn.py#L1300) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.RNNBase.md) | -| 342 | [torch.nn.MarginRankingLoss](https://pytorch.org/docs/stable/generated/torch.nn.MarginRankingLoss.html#marginrankingloss) | [paddle.nn.MarginRankingLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MarginRankingLoss_cn.html#marginrankingloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MarginRankingLoss.md) | -| 343 | [torch.nn.Threshold](https://pytorch.org/docs/stable/generated/torch.nn.Threshold.html#torch.nn.Threshold) | [paddle.nn.ThresholdedReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ThresholdedReLU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Threshold.md) | -| 344 | [torch.nn.KLDivLoss](https://pytorch.org/docs/stable/generated/torch.nn.KLDivLoss.html?highlight=kldivloss#torch.nn.KLDivLoss) | [paddle.nn.KLDivLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/KLDivLoss_cn.html#kldivloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.KLDivLoss.md) | -| 345 | [torch.nn.MSELoss](https://pytorch.org/docs/stable/generated/torch.nn.MSELoss.html?highlight=mseloss#torch.nn.MSELoss) | [paddle.nn.MSELoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MSELoss_cn.html#mseloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MSELoss.md) | -| 346 | [torch.nn.BCELoss](https://pytorch.org/docs/stable/generated/torch.nn.BCELoss.html?highlight=bceloss#torch.nn.BCELoss) | [paddle.nn.BCELoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/BCELoss_cn.html#bceloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.BCELoss.md) | -| 347 | [torch.nn.TripletMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.TripletMarginLoss.html#torch.nn.TripletMarginLoss) | [paddle.nn.TripletMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TripletMarginLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.TripletMarginLoss.md) | -| 348 | [torch.nn.FeatureAlphaDropout](https://pytorch.org/docs/stable/generated/torch.nn.FeatureAlphaDropout.html#torch.nn.FeatureAlphaDropout) | [paddle.nn.FeatureAlphaDropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/FeatureAlphaDropout_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.FeatureAlphaDropout.md) | -| 349 | [torch.nn.ReLU6](https://pytorch.org/docs/stable/generated/torch.nn.ReLU6.html#torch.nn.ReLU6) | [paddle.nn.ReLU6](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ReLU6_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReLU6.md) | -| 350 | [torch.nn.HingeEmbeddingLoss](https://pytorch.org/docs/stable/generated/torch.nn.HingeEmbeddingLoss.html#hingeembeddingloss) | [paddle.nn.HingeEmbeddingLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/HingeEmbeddingLoss_cn.html#hingeembeddingloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.HingeEmbeddingLoss.md) | -| 351 | [torch.nn.Hardsigmoid](https://pytorch.org/docs/stable/generated/torch.nn.Hardsigmoid.html?highlight=hardsigmoid#torch.nn.Hardsigmoid) | [paddle.nn.Hardsigmoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Hardsigmoid_cn.html#hardsigmoid) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Hardsigmoid.md) | -| 352 | [torch.nn.CrossEntropyLoss](https://pytorch.org/docs/stable/generated/torch.nn.CrossEntropyLoss.html#torch.nn.CrossEntropyLoss) | [paddle.nn.CrossEntropyLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CrossEntropyLoss_cn.html#crossentropyloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CrossEntropyLoss.md) | -| 353 | [torch.nn.Dropout1d](https://pytorch.org/docs/stable/generated/torch.nn.Dropout1d.html#torch.nn.Dropout1d) | [paddle.nn.Dropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Dropout_cn.html#dropout) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Dropout1d.md) | -| 354 | [torch.nn.MaxPool2d](https://pytorch.org/docs/stable/generated/torch.nn.MaxPool2d.html?highlight=maxpool2d#torch.nn.MaxPool2d) | [paddle.nn.MaxPool2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MaxPool2D_cn.html#maxpool2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MaxPool2d.md) | -| 355 | [torch.nn.MultiheadAttention](https://pytorch.org/docs/stable/generated/torch.nn.MultiheadAttention.html#torch.nn.MultiheadAttention) | [paddle.nn.MultiHeadAttention](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MultiHeadAttention_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MultiheadAttention.md) | -| 356 | [torch.utils.data.SubsetRandomSampler](https://pytorch.org/docs/stable/data.html#torch.utils.data.SubsetRandomSampler) | [paddle.io.SubsetRandomSampler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/SubsetRandomSampler_cn.html#paddle.io.SubsetRandomSampler) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.data.SubsetRandomSampler.md) | -| 357 | [torch.utils.cpp_extension.CUDAExtension](https://pytorch.org/docs/stable/cpp_extension.html?highlight=torch+utils+cpp_extension+cudaextension#torch.utils.cpp_extension.CUDAExtension) | [paddle.utils.cpp_extension.CUDAExtension](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/cpp_extension/CUDAExtension_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.cpp_extension.CUDAExtension.md) | -| 358 | [torch.utils.checkpoint.checkpoint](https://pytorch.org/docs/stable/checkpoint.html#torch.utils.checkpoint.checkpoint) | [paddle.distributed.fleet.utils.recompute](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/cpp_extension/CppExtension_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.checkpoint.checkpoint.md) | -| 359 | [torch.utils.cpp_extension.CppExtension](https://pytorch.org/docs/stable/cpp_extension.html?highlight=torch+utils+cpp_extension+cppextension#torch.utils.cpp_extension.CppExtension) | [paddle.utils.cpp_extension.CppExtension](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/cpp_extension/CppExtension_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.cpp_extension.CppExtension.md) | -| 360 | [torch.utils.data.DataLoader](https://pytorch.org/docs/stable/data.html?highlight=dataloader#torch.utils.data.DataLoader) | [paddle.io.DataLoader](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/DataLoader_cn.html#dataloader) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.data.DataLoader.md) | -| 361 | [torch.utils.data.distributed.DistributedSampler](https://docs.pytorch.org/docs/stable/data.html#torch.utils.data.distributed.DistributedSampler) | [paddle.io.DistributedBatchSampler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/DistributedBatchSampler_cn.html#distributedbatchsampler) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.data.distributed.DistributedSampler.md) | -| 362 | [torch.utils.cpp_extension.load](https://pytorch.org/docs/stable/cpp_extension.html?highlight=torch+utils+cpp_extension+load#torch.utils.cpp_extension.load) | [paddle.utils.cpp_extension.load](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/cpp_extension/load_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.cpp_extension.load.md) | -| 363 | [torch.signal.windows.general_cosine](https://pytorch.org/docs/stable/generated/torch.signal.windows.general_cosine.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.general_cosine.md) | -| 364 | [torch.signal.windows.general_hamming](https://pytorch.org/docs/stable/generated/torch.signal.windows.general_hamming.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.general_hamming.md) | -| 365 | [torch.signal.windows.hann](https://pytorch.org/docs/stable/generated/torch.signal.windows.hann.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.hann.md) | -| 366 | [torch.signal.windows.exponential](https://pytorch.org/docs/stable/generated/torch.signal.windows.exponential.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.exponential.md) | -| 367 | [torch.signal.windows.hamming](https://pytorch.org/docs/stable/generated/torch.signal.windows.hamming.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.hamming.md) | -| 368 | [torch.signal.windows.gaussian](https://pytorch.org/docs/stable/generated/torch.signal.windows.gaussian.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.gaussian.md) | -| 369 | [torch.signal.windows.blackman](https://pytorch.org/docs/stable/generated/torch.signal.windows.blackman.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.blackman.md) | -| 370 | [torch.signal.windows.cosine](https://pytorch.org/docs/stable/generated/torch.signal.windows.cosine.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.cosine.md) | -| 371 | [torch.distributions.transforms.SigmoidTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.SigmoidTransform) | [paddle.distribution.SigmoidTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/SigmoidTransform_cn.html#sigmoidtransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.SigmoidTransform.md) | -| 372 | [torch.distributions.transformed_distribution.TransformedDistribution](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transformed_distribution.TransformedDistribution) | [paddle.distribution.TransformedDistribution](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/TransformedDistribution_cn.html#transformeddistribution) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transformed_distribution.TransformedDistribution.md) | -| 373 | [torch.distributions.gamma.Gamma](https://pytorch.org/docs/stable/distributions.html#gamma) | [paddle.distribution.Gamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Gamma_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.gamma.Gamma.md) | -| 374 | [torch.distributions.transforms.StackTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.StackTransform) | [paddle.distribution.StackTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/StackTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.StackTransform.md) | -| 375 | [torch.distributions.transforms.PowerTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.SigmoidTransform) | [paddle.distribution.PowerTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/PowerTransform_cn.html#powertransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.PowerTransform.md) | -| 376 | [torch.distributions.beta.Beta](https://pytorch.org/docs/stable/distributions.html#torch.distributions.beta.Beta) | [paddle.distribution.Beta](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Beta_cn.html#beta) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.beta.Beta.md) | -| 377 | [torch.distributions.transforms.Transform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.Transform) | [paddle.distribution.Transform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Transform_cn.html#transform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.Transform.md) | -| 378 | [torch.distributions.transforms.SoftmaxTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.SoftmaxTransform) | [paddle.distribution.SoftmaxTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/SoftmaxTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.SoftmaxTransform.md) | -| 379 | [torch.distributions.log_normal.LogNormal](https://pytorch.org/docs/stable/distributions.html#torch.distributions.log_normal.LogNormal) | [paddle.distribution.LogNormal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/LogNormal_cn.html#lognormal) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.log_normal.LogNormal.md) | -| 380 | [torch.distributions.bernoulli.Bernoulli](https://pytorch.org/docs/stable/distributions.html#torch.distributions.bernoulli.Bernoulli) | [paddle.distribution.Bernoulli](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Bernoulli_cn.html#bernoulli) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.bernoulli.Bernoulli.md) | -| 381 | [torch.distributions.binomial.Binomial](https://pytorch.org/docs/stable/distributions.html#torch.distributions.binomial.Binomial) | [paddle.distribution.Binomial](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/distribution/Binomial_cn.html#binomial) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.binomial.Binomial.md) | -| 382 | [torch.distributions.laplace.Laplace](https://pytorch.org/docs/stable/distributions.html#torch.distributions.laplace.Laplace) | [paddle.distribution.Laplace](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Laplace_cn.html#laplace) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.laplace.Laplace.md) | -| 383 | [torch.distributions.lkj_cholesky.LKJCholesky](https://pytorch.org/docs/stable/distributions.html#torch.distributions.lkj_cholesky.LKJCholesky) | [paddle.distribution.LKJCholesky](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distribution/LKJCholesky_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.lkj_cholesky.LKJCholesky.md) | -| 384 | [torch.distributions.cauchy.Cauchy](https://pytorch.org/docs/stable/distributions.html#torch.distributions.cauchy.Cauchy) | [paddle.distribution.Cauchy](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Cauchy_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.cauchy.Cauchy.md) | -| 385 | [torch.distributions.studentT.StudentT](https://pytorch.org/docs/stable/distributions.html#studentt) | [paddle.distribution.StudentT](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distribution/StudentT_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.studentT.StudentT.md) | -| 386 | [torch.distributions.continuous_bernoulli.ContinuousBernoulli](https://pytorch.org/docs/stable/distributions.html) | [paddle.distribution.ContinuousBernoulli](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/distribution/ContinuousBernoulli_cn.html#continuousbernoulli) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.continuous_bernoulli.ContinuousBernoulli.md) | -| 387 | [torch.distributions.multinomial.Multinomial](https://pytorch.org/docs/stable/distributions.html#torch.distributions.multinomial.Multinomial) | [paddle.distribution.Multinomial](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Multinomial_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.multinomial.Multinomial.md) | -| 388 | [torch.distributions.dirichlet.Dirichlet](https://pytorch.org/docs/stable/distributions.html#torch.distributions.dirichlet.Dirichlet) | [paddle.distribution.Dirichlet](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Dirichlet_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.dirichlet.Dirichlet.md) | -| 389 | [torch.distributions.exp_family.ExponentialFamily](https://pytorch.org/docs/stable/distributions.html#torch.distributions.exp_family.ExponentialFamily) | [paddle.distribution.ExponentialFamily](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/ExponentialFamily_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.exp_family.ExponentialFamily.md) | -| 390 | [torch.distributions.categorical.Categorical](https://pytorch.org/docs/stable/distributions.html#torch.distributions.categorical.Categorical) | [paddle.distribution.Categorical](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Categorical_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.categorical.Categorical.md) | -| 391 | [torch.distributions.transforms.ReshapeTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.ReshapeTransform) | [paddle.distribution.ReshapeTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/ReshapeTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.ReshapeTransform.md) | -| 392 | [torch.distributions.gumbel.Gumbel](https://pytorch.org/docs/stable/distributions.html#torch.distributions.gumbel.Gumbel) | [paddle.distribution.Gumbel](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Gumbel_cn.html#gumbel) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.gumbel.Gumbel.md) | -| 393 | [torch.distributions.transforms.AbsTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.AbsTransform) | [paddle.distribution.AbsTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/AbsTransform_cn.html#paddle.distribution.AbsTransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.AbsTransform.md) | -| 394 | [torch.distributions.normal.Normal](https://pytorch.org/docs/stable/distributions.html#torch.distributions.normal.Normal) | [paddle.distribution.Normal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Normal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.normal.Normal.md) | -| 395 | [torch.distributions.transforms.ExpTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.ExpTransform) | [paddle.distribution.ExpTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/ExpTransform_cn.html#exptransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.ExpTransform.md) | -| 396 | [torch.distributions.chi2.Chi2](https://pytorch.org/docs/stable/distributions.html#chi2) | [paddle.distribution.Chi2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Chi2_cn.html#prob-value) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.chi2.Chi2.md) | -| 397 | [torch.distributions.uniform.Uniform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.uniform.Uniform) | [paddle.distribution.Uniform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Uniform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.uniform.Uniform.md) | -| 398 | [torch.distributions.transforms.StickBreakingTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.StickBreakingTransform) | [paddle.distribution.StickBreakingTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/StickBreakingTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.StickBreakingTransform.md) | -| 399 | [torch.distributions.exponential.Exponential](https://pytorch.org/docs/stable/distributions.html#torch.distributions.exponential.Exponential.arg_constraints) | [paddle.distribution.Exponential](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/distribution/ExponentialFamily_cn.html#exponential) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.exponential.Exponential.md) | -| 400 | [torch.distributions.multivariate_normal.MultivariateNormal](https://pytorch.org/docs/stable/distributions.html#multivariatenormal) | [paddle.distribution.MultivariateNormal](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/distribution/MultivariateNormal_cn.html#multivariatenormal) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.multivariate_normal.MultivariateNormal.md) | -| 401 | [torch.distributions.geometric.Geometric](https://pytorch.org/docs/stable/distributions.html#torch.distributions.geometric.Geometric) | [paddle.distribution.Geometric](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Geometric_cn.html#geometric) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.geometric.Geometric.md) | -| 402 | [torch.distributions.transforms.ComposeTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.ComposeTransform) | [paddle.distribution.ChainTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/ChainTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.ComposeTransform.md) | -| 403 | [torch.distributions.transforms.AffineTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.AffineTransform) | [paddle.distribution.AffineTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/AffineTransform_cn.html#affinetransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.AffineTransform.md) | -| 404 | [torch.distributions.independent.Independent](https://pytorch.org/docs/stable/distributions.html#torch.distributions.independent.Independent) | [paddle.distribution.Independent](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Independent_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.independent.Independent.md) | -| 405 | [torch.distributions.poisson.Poisson](https://pytorch.org/docs/stable/distributions.html#poisson) | [paddle.distribution.Poisson](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distribution/Poisson_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.poisson.Poisson.md) | -| 406 | [torch.distributions.transforms.IndependentTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.IndependentTransform) | [paddle.distribution.IndependentTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/IndependentTransform_cn.html#independenttransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.IndependentTransform.md) | -| 407 | [torch.distributions.distribution.Distribution](https://pytorch.org/docs/stable/distributions.html#torch.distributions.distribution.Distribution) | [paddle.distribution.Distribution](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Distribution_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.distribution.Distribution.md) | -| 408 | [torch.distributions.transforms.TanhTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.TanhTransform) | [paddle.distribution.TanhTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/TanhTransform_cn.html#tanhtransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.TanhTransform.md) | -| 409 | [flash_attn.flash_attn_interface.flash_attn_func](https://github.com/Dao-AILab/flash-attention/blob/72e27c6320555a37a83338178caa25a388e46121/flash_attn/flash_attn_interface.py#L808) | [paddle.nn.functional.flash_attention.flash_attention](https://github.com/PaddlePaddle/Paddle/blob/900d27c40ef4567d7ea6342f3f0eedd394885ecb/python/paddle/nn/functional/flash_attention.py#L248) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/flash_attn/flash_attn.flash_attn_interface.flash_attn_func.md) | -| 410 | [flash_attn.flash_attn_interface.flash_attn_unpadded_func](https://github.com/Dao-AILab/flash-attention/blob/d0787acc16c3667156b51ce5b01bdafc7594ed39/flash_attn/flash_attn_interface.py#L1050) | [paddle.nn.functional.flash_attention.flash_attn_unpadded](https://github.com/PaddlePaddle/Paddle/blob/b32b51b7c21ad62bf794512c849a603c8c0ece44/python/paddle/nn/functional/flash_attention.py#L664) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/flash_attn/flash_attn.flash_attn_interface.flash_attn_unpadded_func.md) | -| 411 | [torchvision.ops.RoIAlign](https://pytorch.org/vision/main/generated/torchvision.ops.RoIAlign.html) | [paddle.vision.ops.RoIAlign](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/ops/RoIAlign_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.ops.RoIAlign.md) | -| 412 | [torchvision.transforms.functional.normalize](https://pytorch.org/vision/stable/generated/torchvision.transforms.functional.normalize.html) | [paddle.vision.transforms.normalize](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/transforms/normalize_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.functional.normalize.md) | -| 413 | [torchvision.transforms.Normalize](https://pytorch.org/vision/main/generated/torchvision.transforms.Normalize.html) | [paddle.vision.transforms.Normalize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/Normalize__upper_cn.html#normalize) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.Normalize.md) | -| 414 | [torchvision.datasets.ImageFolder](https://pytorch.org/vision/main/generated/torchvision.datasets.ImageFolder.html) | [paddle.vision.datasets.ImageFolder](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/datasets/ImageFolder_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.datasets.ImageFolder.md) | -| 415 | [fairscale.nn.model_parallel.layers.RowParallelLinear](https://github.com/facebookresearch/fairscale/blob/164cc0f3170b4a3951dd84dda29c3e1504ac4d6e/fairscale/nn/model_parallel/layers.py#L299) | [paddle.distributed.fleet.meta_parallel.RowParallelLinear](https://github.com/PaddlePaddle/Paddle/blob/016766cc89fabc10181453ce70b701dd8ed019f6/python/paddle/distributed/fleet/layers/mpu/mp_layers.py#L291) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/fairscale/fairscale.nn.model_parallel.layers.RowParallelLinear.md) | -| 416 | [fairscale.nn.model_parallel.layers.ColumnParallelLinear](https://github.com/facebookresearch/fairscale/blob/164cc0f3170b4a3951dd84dda29c3e1504ac4d6e/fairscale/nn/model_parallel/layers.py#L218) | [paddle.distributed.fleet.meta_parallel.ColumnParallelLinear](https://github.com/PaddlePaddle/Paddle/blob/016766cc89fabc10181453ce70b701dd8ed019f6/python/paddle/distributed/fleet/layers/mpu/mp_layers.py#L153) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/fairscale/fairscale.nn.model_parallel.layers.ColumnParallelLinear.md) | -| 417 | [fairscale.nn.model_parallel.layers.ParallelEmbedding](https://github.com/facebookresearch/fairscale/blob/164cc0f3170b4a3951dd84dda29c3e1504ac4d6e/fairscale/nn/model_parallel/layers.py#L152) | [paddle.distributed.fleet.meta_parallel.VocabParallelEmbedding](https://github.com/PaddlePaddle/Paddle/blob/016766cc89fabc10181453ce70b701dd8ed019f6/python/paddle/distributed/fleet/layers/mpu/mp_layers.py#L37) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/fairscale/fairscale.nn.model_parallel.layers.ParallelEmbedding.md) | -| 418 | [transformers.GenerationConfig](https://hf-mirror.com/docs/transformers/v4.42.0/en/main_classes/text_generation#transformers.GenerationConfig) | [paddlenlp.generation.GenerationConfig](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/generation/configuration_utils.py#L62) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.GenerationConfig.md) | -| 419 | [transformers.AddedToken](https://github.com/huggingface/transformers/blob/d625294d79341662784495551abdf45e6cb9372f/src/transformers/tokenization_utils_base.py#L84) | [paddlenlp.transformers.AddedToken](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/transformers/tokenizer_utils_base.py#L48) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.AddedToken.md) | -| 420 | [transformers.PretrainedConfig](https://hf-mirror.com/docs/transformers/v4.42.0/en/main_classes/configuration#transformers.PretrainedConfig) | [paddlenlp.transformers.PretrainedConfig](https://github.com/PaddlePaddle/PaddleNLP/blob/57000fa12ce67024238f0b56a6fde63c592c54ce/paddlenlp/transformers/configuration_utils.py#L317) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.PretrainedConfig.md) | +| 58 | [torch.Tensor.clone](https://pytorch.org/docs/stable/generated/torch.Tensor.clone.html#torch.Tensor.clone) | [paddle.Tensor.clone](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#clone) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.clone.md) | +| 59 | [torch.Tensor.round_](https://pytorch.org/docs/stable/generated/torch.Tensor.round_.html#torch.Tensor.round_) | [paddle.Tensor.round_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#round-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.round_.md) | +| 60 | [torch.Tensor.unique](https://pytorch.org/docs/stable/generated/torch.Tensor.unique.html?highlight=unique#torch.Tensor.unique) | [paddle.Tensor.unique](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#unique-return-index-false-return-inverse-false-return-counts-false-axis-none-dtype-int64-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.unique.md) | +| 61 | [torch.Tensor.is_contiguous](https://pytorch.org/docs/stable/generated/torch.Tensor.is_contiguous.html#torch-tensor-is-contiguous) | [paddle.Tensor.is_contiguous](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#is-contiguous) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.is_contiguous.md) | +| 62 | [torch.Tensor.nanmean](https://pytorch.org/docs/stable/generated/torch.Tensor.nanmean.html?highlight=nanmean#torch.Tensor.nanmean) | [paddle.Tensor.nanmean](暂无对应文档) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.nanmean.md) | +| 63 | [torch.Tensor.resize_](https://pytorch.org/docs/stable/generated/torch.Tensor.resize_.html) | [paddle.Tensor.resize_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#resize-shape-fill-zero-false-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.resize_.md) | +| 64 | [torch.Tensor.geometric_](https://pytorch.org/docs/stable/generated/torch.Tensor.geometric_.html) | [paddle.Tensor.geometric_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.geometric_.md) | +| 65 | torch.Tensor.add\_ | - | - | +| 66 | [torch.Tensor.symeig](https://pytorch.org/docs/stable/generated/torch.Tensor.symeig.html#torch.Tensor.symeig) | [paddle.linalg.eigh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.symeig.md) | +| 67 | [torch.Tensor.to](https://pytorch.org/docs/stable/generated/torch.Tensor.to.html#torch.Tensor.to) | [paddle.Tensor.to](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#to-args-kwargs) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.to.md) | +| 68 | torch.Tensor.exponential\_ | - | - | +| 69 | [torch.Tensor.bernoulli_](https://pytorch.org/docs/stable/generated/torch.Tensor.bernoulli_.html#torch.Tensor.bernoulli_) | [paddle.Tensor.bernoulli_](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/tensor/tensor.py) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.bernoulli_.md) | +| 70 | [torch.Tensor.to_sparse_csr](https://pytorch.org/docs/stable/generated/torch.Tensor.to_sparse_csr.html#torch-tensor-to-sparse-csr) | [paddle.Tensor.to_sparse_csr](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.to_sparse_csr.md) | +| 71 | [torch.Tensor.multinomial](https://pytorch.org/docs/stable/generated/torch.Tensor.multinomial.html#torch.Tensor.multinomial) | paddle.Tensor.multinomial | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.multinomial.md) | +| 72 | [torch.Tensor.cauchy_](https://pytorch.org/docs/stable/generated/torch.Tensor.cauchy_.html) | [paddle.Tensor.cauchy_](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.cauchy_.md) | +| 73 | [torch.Tensor.stft](https://pytorch.org/docs/stable/generated/torch.Tensor.stft.html#torch.Tensor.stft) | [paddle.Tensor.stft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/signal/stft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.stft.md) | +| 74 | [torch.linalg.inv](https://pytorch.org/docs/stable/generated/torch.linalg.inv.html#torch.linalg.inv) | [paddle.linalg.inv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/inv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.inv.md) | +| 75 | [torch.linalg.vecdot](https://pytorch.org/docs/stable/generated/torch.linalg.vecdot.html) | [paddle.linalg.vecdot](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/tensor/linalg.py#L1881) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.vecdot.md) | +| 76 | [torch.linalg.svdvals](https://pytorch.org/docs/stable/generated/torch.linalg.svdvals.html#torch.linalg.svdvals) | [paddle.linalg.svdvals](https://github.com/PaddlePaddle/Paddle/blob/develop/python/paddle/tensor/linalg.py#L3019) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.svdvals.md) | +| 77 | [torch.linalg.cholesky](https://pytorch.org/docs/stable/generated/torch.linalg.cholesky.html?highlight=linalg+cholesky#torch.linalg.cholesky) | [paddle.linalg.cholesky](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.cholesky.md) | +| 78 | [torch.linalg.solve](https://pytorch.org/docs/stable/generated/torch.linalg.solve.html#torch.linalg.solve) | [paddle.linalg.solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/solve_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.solve.md) | +| 79 | [torch.linalg.solve_triangular](https://pytorch.org/docs/stable/generated/torch.linalg.solve_triangular.html?highlight=torch+linalg+solve_triangular#torch.linalg.solve_triangular) | [paddle.linalg.triangular_solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/triangular_solve_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.solve_triangular.md) | +| 80 | [torch.linalg.householder_product](https://pytorch.org/docs/stable/generated/torch.linalg.householder_product.html#torch.linalg.householder_product) | [paddle.linalg.householder_product](https://github.com/PaddlePaddle/Paddle/blob/d6ea911bd1bfda5604807eeb18318e71b395ac58/python/paddle/tensor/linalg.py#L3744) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.householder_product.md) | +| 81 | [torch.linalg.det](https://pytorch.org/docs/stable/generated/torch.linalg.det.html#torch.linalg.det) | [paddle.linalg.det](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/det_cn.html#det) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.det.md) | +| 82 | [torch.linalg.matrix_norm](https://pytorch.org/docs/stable/generated/torch.linalg.matrix_norm.html#torch.linalg.matrix_norm) | [paddle.linalg.matrix_norm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_norm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.matrix_norm.md) | +| 83 | [torch.linalg.cross](https://pytorch.org/docs/stable/generated/torch.linalg.cross.html?highlight=torch+linalg+cross#torch.linalg.cross) | [paddle.cross](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cross_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.cross.md) | +| 84 | [torch.linalg.svd](https://pytorch.org/docs/stable/generated/torch.linalg.svd.html?highlight=svd#torch.linalg.svd) | [paddle.linalg.svd](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/svd_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.svd.md) | +| 85 | [torch.linalg.eigvalsh](https://pytorch.org/docs/stable/generated/torch.linalg.eigvalsh.html#torch.linalg.eigvalsh) | [paddle.linalg.eigvalsh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigvalsh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.eigvalsh.md) | +| 86 | [torch.linalg.qr](https://pytorch.org/docs/stable/generated/torch.linalg.qr.html#torch.linalg.qr) | [paddle.linalg.qr](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/qr_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.qr.md) | +| 87 | [torch.linalg.eigvals](https://pytorch.org/docs/stable/generated/torch.linalg.eigvals.html?highlight=torch+linalg+eigvals#torch.linalg.eigvals) | [paddle.linalg.eigvals](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigvals_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.eigvals.md) | +| 88 | [torch.linalg.pinv](https://pytorch.org/docs/stable/generated/torch.linalg.pinv.html#torch.linalg.pinv) | [paddle.linalg.pinv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/pinv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.pinv.md) | +| 89 | [torch.linalg.matrix_power](https://pytorch.org/docs/stable/generated/torch.linalg.matrix_power.html?highlight=torch+linalg+matrix_power#torch.linalg.matrix_power) | [paddle.linalg.matrix_power](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_power_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.matrix_power.md) | +| 90 | [torch.linalg.cond](https://pytorch.org/docs/stable/generated/torch.linalg.cond.html#torch.linalg.cond) | [paddle.linalg.cond](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/linalg/cond_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.cond.md) | +| 91 | [torch.linalg.matrix_rank](https://pytorch.org/docs/stable/generated/torch.linalg.matrix_rank.html?highlight=matrix_rank#torch.linalg.matrix_rank) | [paddle.linalg.matrix_rank](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/matrix_rank_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.matrix_rank.md) | +| 92 | [torch.linalg.lu_factor](https://pytorch.org/docs/stable/generated/torch.linalg.lu_factor.html#torch.linalg.lu_factor) | [paddle.linalg.lu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lu_factor.md) | +| 93 | [torch.linalg.lu_factor_ex](https://pytorch.org/docs/stable/generated/torch.linalg.lu_factor_ex.html?highlight=lu_factor_ex#torch.linalg.lu_factor_ex) | [paddle.linalg.lu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lu_factor_ex.md) | +| 94 | [torch.linalg.multi_dot](https://pytorch.org/docs/stable/generated/torch.linalg.multi_dot.html?highlight=torch+linalg+multi_dot#torch.linalg.multi_dot) | [paddle.linalg.multi_dot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/multi_dot_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.multi_dot.md) | +| 95 | [torch.linalg.eig](https://pytorch.org/docs/stable/generated/torch.linalg.eig.html?highlight=torch+linalg+eig#torch.linalg.eig) | [paddle.linalg.eig](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eig_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.eig.md) | +| 96 | [torch.linalg.eigh](https://pytorch.org/docs/stable/generated/torch.linalg.eigh.html#torch.linalg.eigh) | [paddle.linalg.eigh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.eigh.md) | +| 97 | [torch.special.i1](https://pytorch.org/docs/stable/special.html#torch.special.i1) | [paddle.i1](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/i1_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.i1.md) | +| 98 | [torch.special.i0e](https://pytorch.org/docs/stable/special.html#torch.special.i0e) | [paddle.i0e](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/i0e_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.i0e.md) | +| 99 | [torch.jit.save](https://pytorch.org/docs/stable/generated/torch.jit.save.html#torch-jit-save) | [paddle.jit.save](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/jit/save_cn.html#cn-api-paddle-jit-save) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.jit.save.md) | +| 100 | [torch.special.round](https://pytorch.org/docs/stable/special.html#torch.special.round) | [paddle.round](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/round_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.round.md) | +| 101 | [torch.special.log1p](https://pytorch.org/docs/stable/special.html#torch.special.log1p) | [paddle.log1p](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/log1p_cn.html#log1p) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.log1p.md) | +| 102 | [torch.autograd.functional.jacobian](https://pytorch.org/docs/stable/generated/torch.autograd.functional.jacobian.html#torch.autograd.functional.jacobian) | [paddle.incubate.autograd.Jacobian](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/incubate/autograd/Jacobian_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.functional.jacobian.md) | +| 103 | [torch.autograd.grad](https://pytorch.org/docs/stable/generated/torch.autograd.grad.html#torch.autograd.grad) | [paddle.grad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/grad_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.grad.md) | +| 104 | [torch.jit.load](https://pytorch.org/docs/stable/generated/torch.jit.load.html#torch.jit.load) | [paddle.jit.load](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/jit/load_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.jit.load.md) | +| 105 | [torch.special.erf](https://pytorch.org/docs/stable/special.html?highlight=torch+special+erf#torch.special.erf) | [paddle.erf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/erf_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.erf.md) | +| 106 | [torch.special.sinc](https://pytorch.org/docs/stable/special.html#torch.special.sinc) | [paddle.sinc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sinc_cn.html#sinc) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.sinc.md) | +| 107 | [torch.special.erfinv](https://pytorch.org/docs/stable/special.html#torch.special.erfinv) | [paddle.erfinv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/erfinv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.erfinv.md) | +| 108 | [torch.special.polygamma](https://pytorch.org/docs/stable/special.html#torch.special.polygamma) | [paddle.polygamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/polygamma_cn.html#paddle.polygamma) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.polygamma.md) | +| 109 | [torch.autograd.backward](https://pytorch.org/docs/stable/generated/torch.autograd.backward.html#torch.autograd.backward) | [paddle.autograd.backward](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/autograd/backward_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.backward.md) | +| 110 | [torch.autograd.functional.hessian](https://pytorch.org/docs/stable/generated/torch.autograd.functional.hessian.html#torch.autograd.functional.hessian) | [paddle.incubate.autograd.Hessian](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/incubate/autograd/Hessian_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.functional.hessian.md) | +| 111 | [torch.special.psi](https://pytorch.org/docs/stable/special.html#torch.special.psi) | [paddle.digamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/special.digamma_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.psi.md) | +| 112 | [torch.profiler.profile](https://pytorch.org/docs/stable/profiler.html#torch.profiler.profile) | [paddle.profiler.Profiler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/profiler/Profiler_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.profiler.profile.md) | +| 113 | [torch.special.multigammaln](https://pytorch.org/docs/stable/special.html#torch.special.multigammaln) | [paddle.multigammaln](https://github.com/PaddlePaddle/Paddle/blob/be090bd0bc9ac7a8595296c316b3a6ed3dc60ba6/python/paddle/tensor/math.py#L5099) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.multigammaln.md) | +| 114 | [torch.autograd.functional.vjp](https://pytorch.org/docs/stable/generated/torch.autograd.functional.vjp.html#torch.autograd.functional.vjp) | [paddle.incubate.autograd.vjp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/incubate/autograd/vjp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.functional.vjp.md) | +| 115 | [torch.jit.ignore](https://pytorch.org/docs/stable/generated/torch.jit.ignore.html#torch-jit-ignore) | [paddle.jit.not_to_static](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/jit/not_to_static_cn.html#not-to-static) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.jit.ignore.md) | +| 116 | [torch.special.gammaincc](https://pytorch.org/docs/stable/special.html#torch.special.gammaincc) | [paddle.gammaincc](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/index_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.gammaincc.md) | +| 117 | [torch.jit.script](https://pytorch.org/docs/stable/generated/torch.jit.script.html#torch-jit-script) | [paddle.jit.to_static](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/jit/to_static_cn.html#paddle.jit.to_static) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.jit.script.md) | +| 118 | [torch.onnx.export](https://pytorch.org/docs/stable/onnx.html#torch.onnx.export) | [paddle.onnx.export](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/onnx/export_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.onnx.export.md) | +| 119 | [torch.special.logit](https://pytorch.org/docs/stable/special.html#torch.special.logit) | [paddle.logit](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logit_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.logit.md) | +| 120 | [torch.special.i0](https://pytorch.org/docs/stable/special.html#torch.special.i0) | [paddle.i0](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/i0_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.i0.md) | +| 121 | [torch.multiprocessing.spawn](https://pytorch.org/docs/stable/multiprocessing.html#torch.multiprocessing.spawn) | [paddle.distributed.spawn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/spawn_cn.html#spawn) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.multiprocessing.spawn.md) | +| 122 | [torch.special.i1e](https://pytorch.org/docs/stable/special.html#torch.special.i1e) | [paddle.i1e](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/i1e_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.i1e.md) | +| 123 | [torch.special.digamma](https://pytorch.org/docs/stable/special.html#torch.special.digamma) | [paddle.digamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/special.digamma_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.digamma.md) | +| 124 | [torch.autograd.functional.jvp](https://pytorch.org/docs/stable/generated/torch.autograd.functional.jvp.html#torch.autograd.functional.jvp) | [paddle.incubate.autograd.jvp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/incubate/autograd/jvp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.autograd.functional.jvp.md) | +| 125 | [torch.special.expm1](https://pytorch.org/docs/stable/special.html#torch.special.expm1) | [paddle.expm1](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/expm1_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.expm1.md) | +| 126 | [torch.special.gammainc](https://pytorch.org/docs/stable/special.html#torch.special.gammainc) | [paddle.gammainc](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/index_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.gammainc.md) | +| 127 | [torch.special.gammaln](https://pytorch.org/docs/stable/special.html#torch.special.gammaln) | [paddle.gammaln](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/gammaln_cn.html#gammaln) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.gammaln.md) | +| 128 | [torch.optim.SGD](https://pytorch.org/docs/stable/generated/torch.optim.SGD.html) | [paddle.optimizer.SGD](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/SGD_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.SGD.md) | +| 129 | [torch.optim.ASGD](https://pytorch.org/docs/stable/generated/torch.optim.ASGD.html) | [paddle.optimizer.ASGD](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/ASGD_cn.html#cn-api-paddle-optimizer-asgd) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.ASGD.md) | +| 130 | [torch.optim.RMSprop](https://pytorch.org/docs/stable/generated/torch.optim.RMSprop.html) | [paddle.optimizer.RMSProp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/RMSProp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.RMSprop.md) | +| 131 | [torch.optim.Optimizer.step](https://pytorch.org/docs/stable/generated/torch.optim.Optimizer.step.html#torch-optim-optimizer-step) | [paddle.optimizer.Optimizer.step](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Optimizer_cn.html#step) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Optimizer.step.md) | +| 132 | [torch.optim.RAdam](https://pytorch.org/docs/stable/generated/torch.optim.RAdam.html#torch.optim.RAdam) | [paddle.optimizer.RAdam](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/RAdam_cn.html#radam) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.RAdam.md) | +| 133 | [torch.optim.NAdam](https://pytorch.org/docs/stable/generated/torch.optim.NAdam.html#torch.optim.NAdam) | [paddle.optimizer.NAdam](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/NAdam_cn.html#nadam) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.NAdam.md) | +| 134 | [torch.optim.Adamax](https://pytorch.org/docs/stable/generated/torch.optim.Adamax.html) | [paddle.optimizer.Adamax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Adamax_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Adamax.md) | +| 135 | [torch.optim.Adam](https://pytorch.org/docs/stable/generated/torch.optim.Adam.html) | [paddle.optimizer.Adam](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Adam_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Adam.md) | +| 136 | [torch.optim.Adagrad](https://pytorch.org/docs/stable/generated/torch.optim.Adagrad.html) | [paddle.optimizer.Adagrad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Adagrad_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Adagrad.md) | +| 137 | [torch.optim.Rprop](https://pytorch.org/docs/stable/generated/torch.optim.Rprop.html) | [paddle.optimizer.Rprop](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Rprop_cn.html#cn-api-paddle-optimizer-rprop) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Rprop.md) | +| 138 | [torch.optim.AdamW](https://pytorch.org/docs/stable/generated/torch.optim.AdamW.html) | [paddle.optimizer.AdamW](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/AdamW_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.AdamW.md) | +| 139 | [torch.optim.Adadelta](https://pytorch.org/docs/stable/generated/torch.optim.Adadelta.html) | [paddle.optimizer.Adadelta](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/Adadelta_cn.html#cn-api-paddle-optimizer-adadelta) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.Adadelta.md) | +| 140 | torch.clamp_min | [paddle.clip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/clip_cn.html#clip) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.clamp_min.md) | +| 141 | [torch.randint_like](https://pytorch.org/docs/stable/generated/torch.randint_like.html?highlight=randint_like#torch.randint_like) | [paddle.randint_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randint_like_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.randint_like.md) | +| 142 | [torch.lerp](https://pytorch.org/docs/stable/generated/torch.lerp.html?highlight=lerp#torch.lerp) | [paddle.lerp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/lerp_cn.html#lerp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lerp.md) | +| 143 | [torch.neg](https://pytorch.org/docs/stable/generated/torch.neg.html?highlight=neg#torch.neg) | [paddle.neg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/neg_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.neg.md) | +| 144 | [torch.hamming_window](https://pytorch.org/docs/stable/generated/torch.hamming_window.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hamming_window.md) | +| 145 | [torch.std](https://pytorch.org/docs/stable/generated/torch.std.html) | [paddle.std](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/std_cn.html#std) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.std.md) | +| 146 | [torch.blackman_window](https://pytorch.org/docs/stable/generated/torch.blackman_window.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.blackman_window.md) | +| 147 | [torch.logaddexp](https://pytorch.org/docs/stable/generated/torch.logaddexp.html#torch.logaddexp) | [paddle.logaddexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logaddexp_cn.html#logaddexp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.logaddexp.md) | +| 148 | [torch.cummax](https://pytorch.org/docs/stable/generated/torch.cummax.html?highlight=cummax#torch.cummax) | [paddle.cummax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cummax_cn.html#cummax) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cummax.md) | +| 149 | [torch.amp.autocast](https://pytorch.org/docs/stable/amp.html#torch.cuda.amp.autocast) | [paddle.amp.auto_cast](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amp/auto_cast_cn.html#auto-cast) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.amp.autocast.md) | +| 150 | [torch.cosh](https://pytorch.org/docs/stable/generated/torch.cosh.html#torch.cosh) | [paddle.cosh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cosh_cn.html#cosh) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cosh.md) | +| 151 | [torch.angle](https://pytorch.org/docs/stable/generated/torch.angle.html) | [paddle.angle](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/angle_cn.html#angle) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.angle.md) | +| 152 | [torch.isneginf](https://pytorch.org/docs/stable/generated/torch.isneginf.html#torch-isneginf) | [paddle.isneginf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isneginf_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isneginf.md) | +| 153 | [torch.remainder](https://pytorch.org/docs/stable/generated/torch.remainder.html?highlight=remainder#torch.remainder) | [paddle.remainder](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/remainder_cn.html#remainder) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.remainder.md) | +| 154 | [torch.cross](https://pytorch.org/docs/stable/generated/torch.cross.html?highlight=cross#torch.cross) | [paddle.cross](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cross_cn.html#cross) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cross.md) | +| 155 | [torch.cholesky_inverse](https://pytorch.org/docs/stable/generated/torch.cholesky_inverse.html?highlight=cholesky_inverse#torch.cholesky_inverse) | [paddle.linalg.cholesky_inverse](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_inverse_cn.html#cholesky-inverse) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cholesky_inverse.md) | +| 156 | [torch.max_pool2d](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | [paddle.nn.functional.max_pool2d](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/max_pool2d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.max_pool2d.md) | +| 157 | [torch.copysign](https://pytorch.org/docs/stable/generated/torch.copysign.html#torch.copysign) | [paddle.copysign](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/copysign_cn.html#copysign) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.copysign.md) | +| 158 | [torch.square](https://pytorch.org/docs/stable/generated/torch.square.html?highlight=square#torch.square) | [paddle.square](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/square_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.square.md) | +| 159 | [torch.lu](https://pytorch.org/docs/stable/generated/torch.lu.html?highlight=lu#torch.lu) | [paddle.linalg.lu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lu.md) | +| 160 | [torch.quantile](https://pytorch.org/docs/stable/generated/torch.quantile.html?highlight=quantile#torch.quantile) | [paddle.quantile](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/quantile_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.quantile.md) | +| 161 | [torch.ormqr](https://pytorch.org/docs/stable/generated/torch.ormqr.html#torch.ormqr) | [paddle.linalg.ormqr](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/linalg/ormqr_cn.html#ormqr) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.ormqr.md) | +| 162 | [torch.asarray](https://pytorch.org/docs/stable/generated/torch.asarray.html#torch.asarray) | [paddle.to_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/to_tensor_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.asarray.md) | +| 163 | [torch.cumprod](https://pytorch.org/docs/stable/generated/torch.cumprod.html?highlight=cumprod#torch.cumprod) | [paddle.cumprod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cumprod_cn.html#cumprod) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cumprod.md) | +| 164 | [torch.cummin](https://pytorch.org/docs/stable/generated/torch.cummin.html) | [paddle.cummin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cummin_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cummin.md) | +| 165 | [torch.asinh](https://pytorch.org/docs/stable/generated/torch.asinh.html#torch.asinh) | [paddle.asinh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/asinh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.asinh.md) | +| 166 | [torch.hypot](https://pytorch.org/docs/stable/generated/torch.hypot.html#torch.hypot) | [paddle.hypot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hypot_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hypot.md) | +| 167 | [torch.nextafter](https://pytorch.org/docs/stable/generated/torch.nextafter.html?highlight=nextafter#torch.nextafter) | [paddle.nextafter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nextafter_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nextafter.md) | +| 168 | [torch.fmod](https://pytorch.org/docs/stable/generated/torch.fmod.html?highlight=fmod#torch.fmod) | [paddle.mod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/mod_cn.html#mod) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.fmod.md) | +| 169 | [torch.fix](https://pytorch.org/docs/stable/generated/torch.fix.html?highlight=torch+fix#torch.fix) | [paddle.trunc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/trunc_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.fix.md) | +| 170 | [torch.median](https://pytorch.org/docs/stable/generated/torch.median.html?highlight=median#torch.median) | [paddle.median](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/median_cn.html#median) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.median.md) | +| 171 | [torch.lgamma](https://pytorch.org/docs/stable/generated/torch.lgamma.html?highlight=lgamma#torch.lgamma) | [paddle.lgamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/lgamma_cn.html#lgamma) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lgamma.md) | +| 172 | [torch.atan2](https://pytorch.org/docs/stable/generated/torch.atan2.html#torch.atan2) | [paddle.atan2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/atan2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.atan2.md) | +| 173 | [torch.acosh](https://pytorch.org/docs/stable/generated/torch.acosh.html?highlight=acosh#torch.acosh) | [paddle.acosh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/acosh_cn.html#acos) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.acosh.md) | +| 174 | [torch.nanmedian](https://pytorch.org/docs/stable/generated/torch.nanmedian.html?highlight=nanmedian#torch.nanmedian) | [paddle.nanmedian](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nanmedian_cn.html#nanmedian) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nanmedian.md) | +| 175 | [torch.inverse](https://pytorch.org/docs/stable/generated/torch.inverse.html?highlight=inverse#torch.inverse) | [paddle.linalg.inv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/inv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.inverse.md) | +| 176 | [torch.linspace](https://pytorch.org/docs/stable/generated/torch.linspace.html?highlight=linspace#torch.linspace) | [paddle.linspace](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linspace_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.linspace.md) | +| 177 | torch.scalar_tensor | [paddle.to_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/to_tensor_cn.html#to-tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.scalar_tensor.md) | +| 178 | [torch.isposinf](https://pytorch.org/docs/stable/generated/torch.isposinf.html#torch-isposinf) | [paddle.isposinf](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/isposinf_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.isposinf.md) | +| 179 | [torch.index_add](https://pytorch.org/docs/stable/generated/torch.index_add.html#torch.index_add) | [paddle.index_add](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/index_add_cn.html#index-add) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.index_add.md) | +| 180 | [torch.acos](https://pytorch.org/docs/stable/generated/torch.acos.html?highlight=acos#torch.acos) | [paddle.acos](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/acos_cn.html#acos) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.acos.md) | +| 181 | [torch.randint](https://pytorch.org/docs/stable/generated/torch.randint.html?highlight=randint#torch.randint) | [paddle.randint](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randint_cn.html#randint) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.randint.md) | +| 182 | [torch.mv](https://pytorch.org/docs/stable/generated/torch.mv.html?highlight=torch+mv#torch.mv) | [paddle.mv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/mv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.mv.md) | +| 183 | [torch.vdot](https://pytorch.org/docs/stable/generated/torch.vdot.html#torch.vdot) | [paddle.dot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/dot_cn.html#dot) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.vdot.md) | +| 184 | [torch.negative](https://pytorch.org/docs/stable/generated/torch.negative.html?highlight=torch+negative#torch.negative) | [paddle.neg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/neg_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.negative.md) | +| 185 | [torch.bernoulli](https://pytorch.org/docs/stable/generated/torch.bernoulli.html#torch.bernoulli) | [paddle.bernoulli](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bernoulli_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bernoulli.md) | +| 186 | [torch.inner](https://pytorch.org/docs/stable/generated/torch.inner.html?highlight=inner#torch.inner) | [paddle.inner](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/inner_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.inner.md) | +| 187 | [torch.bucketize](https://pytorch.org/docs/stable/generated/torch.bucketize.html#torch.bucketize) | [paddle.bucketize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/bucketize_cn.html#paddle-bucketize) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.bucketize.md) | +| 188 | [torch.nan_to_num](https://pytorch.org/docs/stable/generated/torch.nan_to_num.html?highlight=nan_to_num#torch.nan_to_num) | [paddle.nan_to_num](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nan_to_num_cn.html#nan-to-num) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nan_to_num.md) | +| 189 | [torch.triu_indices](https://pytorch.org/docs/stable/generated/torch.triu_indices.html?highlight=triu_indices#torch.triu_indices) | [paddle.triu_indices](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/triu_indices_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.triu_indices.md) | +| 190 | [torch.logspace](https://pytorch.org/docs/stable/generated/torch.logspace.html?highlight=logspace#torch.logspace) | [paddle.logspace](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logspace_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.logspace.md) | +| 191 | [torch.set_printoptions](https://pytorch.org/docs/stable/generated/torch.set_printoptions.html?highlight=torch+set_printoptions#torch.set_printoptions) | [paddle.set_printoptions](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/set_printoptions_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.set_printoptions.md) | +| 192 | [torch.save](https://pytorch.org/docs/stable/generated/torch.save.html?highlight=save#torch.save) | [paddle.save](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/save_cn.html#save) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.save.md) | +| 193 | [torch.fmax](https://pytorch.org/docs/stable/generated/torch.fmax.html#torch.fmax) | [paddle.fmax](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fmax_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.fmax.md) | +| 194 | [torch.baddbmm](https://pytorch.org/docs/stable/generated/torch.baddbmm.html?highlight=baddbmm#torch.baddbmm) | [paddle.baddbmm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/baddbmm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.baddbmm.md) | +| 195 | [torch.deg2rad](https://pytorch.org/docs/stable/generated/torch.deg2rad.html#torch-deg2rad) | [paddle.deg2rad](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/deg2rad_cn.html#paddle.deg2rad) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.deg2rad.md) | +| 196 | [torch.gcd](https://pytorch.org/docs/stable/generated/torch.gcd.html#torch-gcd) | [paddle.gcd](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/gcd_cn.html#gcd) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.gcd.md) | +| 197 | [torch.trunc](https://pytorch.org/docs/stable/generated/torch.trunc.html?highlight=torch+trunc#torch.trunc) | [paddle.trunc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/trunc_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.trunc.md) | +| 198 | [torch.qr](https://pytorch.org/docs/stable/generated/torch.qr.html#torch.qr) | [paddle.linalg.qr](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/qr_cn.html#qr) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.qr.md) | +| 199 | [torch.ldexp](https://pytorch.org/docs/stable/generated/torch.ldexp.html#torch.ldexp) | [paddle.ldexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/ldexp_cn.html#ldexp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.ldexp.md) | +| 200 | [torch.asin](https://pytorch.org/docs/stable/generated/torch.asin.html#torch.asin) | [paddle.asin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/asin_cn.html#asin) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.asin.md) | +| 201 | [torch.unique](https://pytorch.org/docs/stable/generated/torch.unique.html?highlight=unique#torch.unique) | [paddle.unique](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/unique_cn.html#unique) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.unique.md) | +| 202 | [torch.signbit](https://pytorch.org/docs/stable/generated/torch.signbit.html#torch-signbit) | [paddle.signbit](https://github.com/PaddlePaddle/Paddle/blob/9ce3a54f456011c664c70fbcd318f2e1af0a7d81/python/paddle/tensor/math.py#L7175) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.signbit.md) | +| 203 | [torch.svd](https://pytorch.org/docs/stable/generated/torch.svd.html?highlight=torch+svd#torch.svd) | [paddle.linalg.svd](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/svd_cn.html#svd) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.svd.md) | +| 204 | [torch.atan](https://pytorch.org/docs/stable/generated/torch.atan.html#torch.atan) | [paddle.atan](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/atan_cn.html#atan) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.atan.md) | +| 205 | [torch.normal](https://pytorch.org/docs/stable/generated/torch.normal.html#torch.normal) | [paddle.normal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/normal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.normal.md) | +| 206 | [torch.nanmean](https://pytorch.org/docs/stable/generated/torch.nanmean.html?highlight=nanmean#torch.nanmean) | [paddle.nanmean](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nanmean_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nanmean.md) | +| 207 | [torch.searchsorted](https://pytorch.org/docs/stable/generated/torch.searchsorted.html#torch-searchsorted) | [paddle.searchsorted](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/searchsorted_cn.html#searchsorted) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.searchsorted.md) | +| 208 | [torch.lt](https://pytorch.org/docs/stable/generated/torch.lt.html#torch.lt) | [paddle.less_than](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/less_than_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lt.md) | +| 209 | [torch.autocast](https://pytorch.org/docs/stable/amp.html?highlight=autocast#torch.autocast) | [paddle.amp.auto_cast](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/amp/auto_cast_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.autocast.md) | +| 210 | [torch.sparse_csr_tensor](https://pytorch.org/docs/stable/generated/torch.sparse_csr_tensor.html#torch.sparse_csr_tensor) | [paddle.sparse.sparse_csr_tensor](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sparse/sparse_csr_tensor_cn.html#sparse-csr-tensor) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.sparse_csr_tensor.md) | +| 211 | [torch.abs](https://pytorch.org/docs/stable/generated/torch.abs.html?highlight=abs#torch.abs) | [paddle.abs](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/abs_cn.html#abs) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.abs.md) | +| 212 | [torch.atanh](https://pytorch.org/docs/stable/generated/torch.atanh.html#torch.atanh) | [paddle.atanh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/atanh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.atanh.md) | +| 213 | [torch.lu_unpack](https://pytorch.org/docs/stable/generated/torch.lu_unpack.html?highlight=lu_unpack#torch.lu_unpack) | [paddle.linalg.lu_unpack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_unpack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lu_unpack.md) | +| 214 | [torch.max_pool1d](https://pytorch.org/docs/stable/jit_builtin_functions.html#supported-pytorch-functions) | [paddle.nn.functional.max_pool1d](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/functional/max_pool1d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.max_pool1d.md) | +| 215 | [torch.exp](https://pytorch.org/docs/stable/generated/torch.exp.html?highlight=torch+exp#torch.exp) | [paddle.exp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/exp_cn.html#exp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.exp.md) | +| 216 | [torch.stft](https://pytorch.org/docs/stable/generated/torch.stft.html?highlight=stft#torch.stft) | [paddle.signal.stft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/signal/stft_cn.html#paddle.signal.stft) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.stft.md) | +| 217 | [torch.logcumsumexp](https://pytorch.org/docs/stable/generated/torch.logcumsumexp.html#torch-logcumsumexp) | [paddle.logcumsumexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/logcumsumexp_cn.html#logcumsumexp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.logcumsumexp.md) | +| 218 | [torch.ne](https://pytorch.org/docs/stable/generated/torch.ne.html?highlight=torch.ne#torch.ne) | [paddle.not_equal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/not_equal_cn.html#not_equal) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.ne.md) | +| 219 | [torch.renorm](https://pytorch.org/docs/stable/generated/torch.renorm.html#torch-renorm) | paddle.renorm | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.renorm.md) | +| 220 | [torch.randn_like](https://pytorch.org/docs/stable/generated/torch.randn_like.html#torch.randn_like) | [paddle.randn_like](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randn_like_cn.html#randn_like) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.randn_like.md) | +| 221 | [torch.log1p](https://pytorch.org/docs/stable/generated/torch.log1p.html?highlight=log1p#torch.log1p) | [paddle.log1p](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/log1p_cn.html#log1p) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.log1p.md) | +| 222 | [torch.load](https://pytorch.org/docs/stable/generated/torch.load.html?highlight=load#torch.load) | [paddle.load](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/load_cn.html#load) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.load.md) | +| 223 | [torch.hann_window](https://pytorch.org/docs/stable/generated/torch.hann_window.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hann_window.md) | +| 224 | [torch.hub.load_state_dict_from_url](https://pytorch.org/docs/stable/hub.html#torch.hub.load_state_dict_from_url) | [paddle.hub.load_state_dict_from_url](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hub/load_state_dict_from_url_cn.html#load-state-dict-from-url) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.hub.load_state_dict_from_url.md) | +| 225 | [torch.fmin](https://pytorch.org/docs/stable/generated/torch.fmin.html#torch.fmin) | [paddle.fmin](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fmin_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.fmin.md) | +| 226 | [torch.mode](https://pytorch.org/docs/stable/generated/torch.mode.html) | [paddle.mode](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/mode_cn.html#mode) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.mode.md) | +| 227 | [torch.addmm](https://pytorch.org/docs/stable/generated/torch.addmm.html?highlight=addmm#torch.addmm) | [paddle.addmm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/addmm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.addmm.md) | +| 228 | [torch.log10](https://pytorch.org/docs/stable/generated/torch.log10.html?highlight=log10#torch.log10) | [paddle.log10](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/log10_cn.html#log10) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.log10.md) | +| 229 | [torch.nn.modules.batchnorm._BatchNorm](https://pytorch.org/docs/stable/_modules/torch/nn/modules/batchnorm.html) | [paddle.nn.layer.norm._BatchNormBase](https://github.com/PaddlePaddle/Paddle/blob/b51d50bc9ee9eaa5cefa18507195b239e4513194/python/paddle/nn/layer/norm.py#L701) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nn.modules.batchnorm._BatchNorm.md) | +| 230 | [torch.sgn](https://pytorch.org/docs/stable/generated/torch.sgn.html?highlight=torch+sgn#torch.sgn) | [paddle.sgn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sgn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.sgn.md) | +| 231 | [torch.tril_indices](https://pytorch.org/docs/stable/generated/torch.tril_indices.html?highlight=tril_indices#torch.tril_indices) | [paddle.tril_indices](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tril_indices_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.tril_indices.md) | +| 232 | [torch.cholesky](https://pytorch.org/docs/stable/generated/torch.cholesky.html?highlight=cholesky#torch.cholesky) | [paddle.linalg.cholesky](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/cholesky_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cholesky.md) | +| 233 | [torch.frac](https://pytorch.org/docs/stable/generated/torch.frac.html?highlight=frac#torch.frac) | [paddle.frac](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/frac_cn.html#frac) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.frac.md) | +| 234 | [torch.randperm](https://pytorch.org/docs/stable/generated/torch.randperm.html?highlight=rand#torch.randperm) | [paddle.randperm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/randperm_cn.html#randperm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.randperm.md) | +| 235 | [torch.rad2deg](https://pytorch.org/docs/stable/generated/torch.rad2deg.html?highlight=torch+rad2deg#torch.rad2deg) | [paddle.rad2deg](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/rad2deg_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.rad2deg.md) | +| 236 | [torch.frexp](https://pytorch.org/docs/stable/generated/torch.frexp.html?highlight=frexp#torch.frexp) | [paddle.frexp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/frexp_cn.html#frexp) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.frexp.md) | +| 237 | [torch.tensordot](https://pytorch.org/docs/stable/generated/torch.tensordot.html?highlight=tensordot#torch.tensordot) | [paddle.tensordot](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/tensordot_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.tensordot.md) | +| 238 | [torch.mvlgamma](https://pytorch.org/docs/stable/generated/torch.mvlgamma.html) | [paddle.multigammaln](https://github.com/PaddlePaddle/Paddle/blob/be090bd0bc9ac7a8595296c316b3a6ed3dc60ba6/python/paddle/tensor/math.py#L5099) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.mvlgamma.md) | +| 239 | [torch.sinh](https://pytorch.org/docs/stable/generated/torch.sinh.html?highlight=sinh#torch.sinh) | [paddle.sinh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/sinh_cn.html#sinh) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.sinh.md) | +| 240 | [torch.lcm](https://pytorch.org/docs/stable/generated/torch.lcm.html#torch-lcm) | [paddle.lcm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/lcm_cn.html#lcm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.lcm.md) | +| 241 | [torch.diag](https://pytorch.org/docs/stable/generated/torch.diag.html?highlight=diag#torch.diag) | [paddle.diag](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/diag_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.diag.md) | +| 242 | [torch.reciprocal](https://pytorch.org/docs/stable/generated/torch.reciprocal.html?highlight=torch+reciprocal#torch.reciprocal) | [paddle.reciprocal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/reciprocal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.reciprocal.md) | +| 243 | [torch.conj_physical](https://pytorch.org/docs/stable/generated/torch.conj_physical.html#torch.conj_physical) | [paddle.conj](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/conj_cn.html#conj) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.conj_physical.md) | +| 244 | [torch.heaviside](https://pytorch.org/docs/stable/generated/torch.heaviside.html#torch.heaviside) | [paddle.heaviside](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/heaviside_cn.html#heaviside) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.heaviside.md) | +| 245 | [torch.nanquantile](https://pytorch.org/docs/stable/generated/torch.nanquantile.html?highlight=nanquantile#torch.nanquantile) | [paddle.nanquantile](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nanquantile_cn.html#nanquantile) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.nanquantile.md) | +| 246 | [torch.mm](https://pytorch.org/docs/stable/generated/torch.mm.html?highlight=torch+mm#torch.mm) | [paddle.mm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/mm_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.mm.md) | +| 247 | [torch.clone](https://pytorch.org/docs/stable/generated/torch.clone.html?highlight=clone#torch.clone) | [paddle.clone](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/clone_cn.html#clone) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.clone.md) | +| 248 | torch.clamp_max | [paddle.clip](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/clip_cn.html#clip) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.clamp_max.md) | +| 249 | [torch.round](https://pytorch.org/docs/stable/generated/torch.round.html?highlight=round#torch.round) | [paddle.round](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/round_cn.html#round) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.round.md) | +| 250 | [torch.sub](https://pytorch.org/docs/stable/generated/torch.sub.html?highlight=torch%20sub#torch.sub) | [paddle.subtract](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/subtract_cn.html#subtract) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.sub.md) | +| 251 | [torch.column_stack](https://pytorch.org/docs/stable/generated/torch.column_stack.html#torch.column_stack) | [paddle.column_stack](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/column_stack_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.column_stack.md) | +| 252 | [torch.meshgrid](https://pytorch.org/docs/stable/generated/torch.meshgrid.html?highlight=meshgrid#torch.meshgrid) | [paddle.meshgrid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/meshgrid_cn.html#meshgrid) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.meshgrid.md) | +| 253 | [torch.symeig](https://pytorch.org/docs/stable/generated/torch.symeig.html?highlight=torch+symeig#torch.symeig) | [paddle.linalg.eigh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/eigh_cn.html#eigh) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.symeig.md) | +| 254 | [torch.poisson](https://pytorch.org/docs/stable/generated/torch.poisson.html#torch.poisson) | [paddle.poisson](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/poisson_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.poisson.md) | +| 255 | [torch.hub.list](https://pytorch.org/docs/stable/hub.html?highlight=hub+list#torch.hub.list) | [paddle.hub.list](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hub/list_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/hub/torch.hub.list.md) | +| 256 | [torch.hub.help](https://pytorch.org/docs/stable/hub.html?highlight=hub+help#torch.hub.help) | [paddle.hub.help](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hub/help_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/hub/torch.hub.help.md) | +| 257 | [torch.hub.download_url_to_file](https://pytorch.org/docs/stable/hub.html?highlight=download#torch.hub.download_url_to_file) | [paddle.utils.download.get_weights_path_from_url](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/download/get_weights_path_from_url_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/hub/torch.hub.download_url_to_file.md) | +| 258 | [torch.hub.load](https://pytorch.org/docs/stable/hub.html?highlight=hub+load#torch.hub.load) | [paddle.hub.load](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/hub/load_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/hub/torch.hub.load.md) | +| 259 | [torch.fft.fft](https://pytorch.org/docs/stable/generated/torch.fft.fft.html?highlight=fft#torch.fft.fft) | [paddle.fft.fft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fft.md) | +| 260 | [torch.fft.hfft2](https://pytorch.org/docs/stable/generated/torch.fft.hfft2.html?highlight=torch+fft+hfft2#torch.fft.hfft2) | [paddle.fft.hfft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/hfft2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.hfft2.md) | +| 261 | [torch.fft.irfft2](https://pytorch.org/docs/stable/generated/torch.fft.irfft2.html#torch-fft-irfft2) | [paddle.fft.irfft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/irfft2_cn.html#irfft2) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.irfft2.md) | +| 262 | [torch.fft.fftn](https://pytorch.org/docs/stable/generated/torch.fft.fftn.html?highlight=fftn#torch.fft.fftn) | [paddle.fft.fftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fftn.md) | +| 263 | [torch.fft.rfftfreq](https://pytorch.org/docs/stable/generated/torch.fft.rfftfreq.html?highlight=rfftfreq#torch.fft.rfftfreq) | [paddle.fft.rfftfreq](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/rfftfreq_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.rfftfreq.md) | +| 264 | [torch.fft.irfft](https://pytorch.org/docs/stable/generated/torch.fft.irfft.html#torch-fft-irfft) | [paddle.fft.irfft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/irfft_cn.html#irfft) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.irfft.md) | +| 265 | [torch.fft.ifft2](https://pytorch.org/docs/stable/generated/torch.fft.ifft2.html?highlight=ifft2#torch.fft.ifft2) | [paddle.fft.ifft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ifft2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ifft2.md) | +| 266 | [torch.fft.hfft](https://pytorch.org/docs/stable/generated/torch.fft.hfft.html?highlight=hfft#torch.fft.hfft) | [paddle.fft.hfft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/hfft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.hfft.md) | +| 267 | [torch.fft.fftfreq](https://pytorch.org/docs/stable/generated/torch.fft.fftfreq.html?highlight=fftfreq#torch.fft.fftfreq) | [paddle.fft.fftfreq](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fftfreq_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fftfreq.md) | +| 268 | [torch.fft.rfft](https://pytorch.org/docs/stable/generated/torch.fft.rfft.html#torch-fft-rfft) | [paddle.fft.rfft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/rfft_cn.html#rfft) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.rfft.md) | +| 269 | [torch.fft.ihfft2](https://pytorch.org/docs/stable/generated/torch.fft.ihfft2.html?highlight=torch+fft+ihfft2#torch.fft.ihfft2) | [paddle.fft.ihfft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ihfft2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ihfft2.md) | +| 270 | [torch.fft.hfftn](https://pytorch.org/docs/stable/generated/torch.fft.hfftn.html?highlight=torch+fft+hfftn#torch.fft.hfftn) | [paddle.fft.hfftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/hfftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.hfftn.md) | +| 271 | [torch.fft.ihfftn](https://pytorch.org/docs/stable/generated/torch.fft.ihfftn.html?highlight=torch+fft+ihfftn#torch.fft.ihfftn) | [paddle.fft.ihfftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ihfftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ihfftn.md) | +| 272 | [torch.fft.irfftn](https://pytorch.org/docs/stable/generated/torch.fft.irfftn.html?highlight=irfftn#torch.fft.irfftn) | [paddle.fft.irfftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/irfftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.irfftn.md) | +| 273 | [torch.fft.ihfft](https://pytorch.org/docs/stable/generated/torch.fft.ihfft.html?highlight=ihfft#torch.fft.ihfft) | [paddle.fft.ihfft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ihfft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ihfft.md) | +| 274 | [torch.fft.fft2](https://pytorch.org/docs/stable/generated/torch.fft.fft2.html?highlight=fft2#torch.fft.fft2) | [paddle.fft.fft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/fft2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.fft2.md) | +| 275 | [torch.fft.rfft2](https://pytorch.org/docs/stable/generated/torch.fft.rfft2.html) | [paddle.fft.rfft2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/rfft2_cn.html#rfft2) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.rfft2.md) | +| 276 | [torch.fft.ifftn](https://pytorch.org/docs/stable/generated/torch.fft.ifftn.html?highlight=ifftn#torch.fft.ifftn) | [paddle.fft.ifftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ifftn_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ifftn.md) | +| 277 | [torch.fft.rfftn](https://pytorch.org/docs/stable/generated/torch.fft.rfftn.html#torch-fft-rfftn) | [paddle.fft.rfftn](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/rfftn_cn.html#rfftn) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.rfftn.md) | +| 278 | [torch.fft.ifft](https://pytorch.org/docs/stable/generated/torch.fft.ifft.html?highlight=ifft#torch.fft.ifft) | [paddle.fft.ifft](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/fft/ifft_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/fft/torch.fft.ifft.md) | +| 279 | [torch.cuda.comm.broadcast](https://pytorch.org/docs/stable/generated/torch.cuda.comm.broadcast.html#torch.cuda.comm.broadcast) | [paddle.distributed.broadcast](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/broadcast_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.comm.broadcast.md) | +| 280 | [torch.distributed.init_process_group](https://pytorch.org/docs/stable/distributed.html?highlight=init_process#torch.distributed.init_process_group) | [paddle.distributed.init_parallel_env](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/init_parallel_env_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.init_process_group.md) | +| 281 | [torch.distributed.ReduceOp](https://pytorch.org/docs/stable/distributed.html?highlight=torch+distributed+reduceop#torch.distributed.ReduceOp) | [paddle.distributed.ReduceOp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/ReduceOp_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.ReduceOp.md) | +| 282 | [torch.distributed.broadcast_object_list](https://pytorch.org/docs/stable/distributed.html?highlight=broadcast_object_list#torch.distributed.broadcast_object_list) | [paddle.distributed.broadcast_object_list](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distributed/broadcast_object_list_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.broadcast_object_list.md) | +| 283 | [torch.distributed.P2POp](https://pytorch.org/docs/stable/distributed.html#torch.distributed.P2POp) | [paddle.distributed.P2POp](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/Overview_cn.html#paddle-distributed) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.P2POp.md) | +| 284 | [torch.distributed.new_group](https://pytorch.org/docs/stable/distributed.html#torch.distributed.new_group) | [paddle.distributed.new_group](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/new_group_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.new_group.md) | +| 285 | [torch.distributed.recv](https://pytorch.org/docs/stable/distributed.html#torch.distributed.recv) | [paddle.distributed.recv](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/recv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.recv.md) | +| 286 | [torch.distributed.rpc.init_rpc](https://pytorch.org/docs/stable/rpc.html#torch.distributed.rpc.init_rpc) | [paddle.distributed.rpc.init_rpc](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/rpc/init_rpc_cn.html#init-rpc) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.rpc.init_rpc.md) | +| 287 | [torch.distributed.monitored_barrier](https://pytorch.org/docs/stable/distributed.html#torch.distributed.monitored_barrier) | [paddle.distributed.barrier](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/barrier_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.monitored_barrier.md) | +| 288 | [torch.distributed.isend](https://pytorch.org/docs/stable/distributed.html#torch.distributed.isend) | [paddle.distributed.isend](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distributed/isend_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.isend.md) | +| 289 | [torch.distributed.barrier](https://pytorch.org/docs/stable/distributed.html?highlight=barrier#torch.distributed.barrier) | [paddle.distributed.barrier](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/barrier_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.barrier.md) | +| 290 | [torch.distributed.send](https://pytorch.org/docs/stable/distributed.html#torch.distributed.send) | [paddle.distributed.send](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/send_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.send.md) | +| 291 | [torch.distributed.rpc.shutdown](https://pytorch.org/docs/stable/rpc.html#torch.distributed.rpc.shutdown) | [paddle.distributed.rpc.shutdown](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/rpc/shutdown_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.rpc.shutdown.md) | +| 292 | [torch.distributed.irecv](https://pytorch.org/docs/stable/distributed.html?highlight=send#torch.distributed.irecv) | [paddle.distributed.irecv](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distributed/irecv_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.irecv.md) | +| 293 | [torch.nn.Bilinear](https://pytorch.org/docs/stable/generated/torch.nn.Bilinear.html#torch.nn.Bilinear) | [paddle.nn.Bilinear](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Bilinear_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Bilinear.md) | +| 294 | [torch.nn.SiLU](https://pytorch.org/docs/stable/generated/torch.nn.SiLU.html#torch.nn.SiLU) | [paddle.nn.Silu](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Silu_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SiLU.md) | +| 295 | [torch.nn.MultiLabelMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.MultiLabelMarginLoss.html#torch.nn.MultiLabelMarginLoss) | [paddle.nn.MultiLabelMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MultiLabelMarginLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MultiLabelMarginLoss.md) | +| 296 | [torch.nn.Dropout](https://pytorch.org/docs/stable/generated/torch.nn.Dropout.html?highlight=dropout#torch.nn.Dropout) | [paddle.nn.Dropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Dropout_cn.html#dropout) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Dropout.md) | +| 297 | [torch.nn.LayerNorm](https://pytorch.org/docs/stable/generated/torch.nn.LayerNorm.html?highlight=layernorm#torch.nn.LayerNorm) | [paddle.nn.LayerNorm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LayerNorm_cn.html#layernorm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.LayerNorm.md) | +| 298 | [torch.nn.GroupNorm](https://pytorch.org/docs/stable/generated/torch.nn.GroupNorm.html?highlight=groupnorm#torch.nn.GroupNorm) | [paddle.nn.GroupNorm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/GroupNorm_cn.html#groupnorm) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.GroupNorm.md) | +| 299 | [torch.nn.BCEWithLogitsLoss](https://pytorch.org/docs/stable/generated/torch.nn.BCEWithLogitsLoss.html#bcewithlogitsloss) | [paddle.nn.BCEWithLogitsLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/BCEWithLogitsLoss_cn.html#bcewithlogitsloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.BCEWithLogitsLoss.md) | +| 300 | [torch.nn.ELU](https://pytorch.org/docs/stable/generated/torch.nn.ELU.html?highlight=elu#torch.nn.ELU) | [paddle.nn.ELU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ELU_cn.html#elu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ELU.md) | +| 301 | [torch.nn.NLLLoss](https://pytorch.org/docs/stable/generated/torch.nn.NLLLoss.html?highlight=nllloss#torch.nn.NLLLoss) | [paddle.nn.NLLLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/NLLLoss_cn.html#nllloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.NLLLoss.md) | +| 302 | [torch.nn.InstanceNorm3d](https://pytorch.org/docs/stable/generated/torch.nn.InstanceNorm3d.html#torch.nn.InstanceNorm3d) | [paddle.nn.InstanceNorm3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/InstanceNorm3D_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.InstanceNorm3d.md) | +| 303 | [torch.nn.Dropout3d](https://pytorch.org/docs/stable/generated/torch.nn.Dropout3d.html?highlight=dropout3d#torch.nn.Dropout3d) | [paddle.nn.Dropout3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Dropout3D_cn.html#dropout3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Dropout3d.md) | +| 304 | [torch.nn.FractionalMaxPool3d](https://pytorch.org/docs/stable/generated/torch.nn.FractionalMaxPool3d.html#fractionalmaxpool3d) | [paddle.nn.FractionalMaxPool3D](https://www.paddlepaddle.org.cn/documentation/docs/en/develop/api/paddle/nn/FractionalMaxPool3D_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.FractionalMaxPool3d.md) | +| 305 | [torch.nn.Module.register_forward_pre_hook](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_forward_pre_hook) | [paddle.nn.Layer.register_forward_pre_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-forward-pre-hook-hook) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_forward_pre_hook.md) | +| 306 | [torch.nn.Mish](https://pytorch.org/docs/stable/generated/torch.nn.Mish.html?highlight=torch+nn+mish) | [paddle.nn.Mish](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Mish_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Mish.md) | +| 307 | [torch.nn.Hardswish](https://pytorch.org/docs/stable/generated/torch.nn.Hardswish.html#torch.nn.Hardswish) | [paddle.nn.Hardswish](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Hardswish_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Hardswish.md) | +| 308 | [torch.nn.Module.load_state_dict](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.load_state_dict) | [paddle.nn.Layer.set_state_dict](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#set-state-dict-state-dict-use-structured-name-true) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.load_state_dict.md) | +| 309 | [torch.nn.PoissonNLLLoss](https://pytorch.org/docs/stable/generated/torch.nn.PoissonNLLLoss) | [paddle.nn.PoissonNLLLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/PoissonNLLLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.PoissonNLLLoss.md) | +| 310 | [torch.nn.MaxPool1d](https://pytorch.org/docs/stable/generated/torch.nn.MaxPool1d.html?highlight=maxpool1d#torch.nn.MaxPool1d) | [paddle.nn.MaxPool1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MaxPool1D_cn.html#maxpool1d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MaxPool1d.md) | +| 311 | [torch.nn.FractionalMaxPool2d](https://pytorch.org/docs/stable/generated/torch.nn.FractionalMaxPool2d.html#fractionalmaxpool2d) | [paddle.nn.FractionalMaxPool2D](https://www.paddlepaddle.org.cn/documentation/docs/en/develop/api/paddle/nn/FractionalMaxPool2D_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.FractionalMaxPool2d.md) | +| 312 | [torch.nn.Hardtanh](https://pytorch.org/docs/stable/generated/torch.nn.Hardtanh.html#torch.nn.Hardtanh) | [paddle.nn.Hardtanh](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Hardtanh_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Hardtanh.md) | +| 313 | [torch.nn.AdaptiveLogSoftmaxWithLoss](https://pytorch.org/docs/stable/generated/torch.nn.AdaptiveLogSoftmaxWithLoss.html#adaptivelogsoftmaxwithloss) | [paddle.nn.AdaptiveLogSoftmaxWithLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AdaptiveLogSoftmaxWithLoss_cn.html#adaptivelogsoftmaxwithloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AdaptiveLogSoftmaxWithLoss.md) | +| 314 | [torch.nn.Transformer](https://pytorch.org/docs/stable/generated/torch.nn.Transformer.html#torch.nn.Transformer) | [paddle.nn.Transformer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Transformer_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Transformer.md) | +| 315 | [torch.nn.LeakyReLU](https://pytorch.org/docs/stable/generated/torch.nn.LeakyReLU.html?highlight=leakyrelu#torch.nn.LeakyReLU) | [paddle.nn.LeakyReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/LeakyReLU_cn.html#leakyrelu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.LeakyReLU.md) | +| 316 | [torch.nn.TransformerEncoder](https://pytorch.org/docs/stable/generated/torch.nn.TransformerEncoder.html#torch.nn.TransformerEncoder) | [paddle.nn.TransformerEncoder](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TransformerEncoder_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.TransformerEncoder.md) | +| 317 | [torch.nn.SmoothL1Loss](https://pytorch.org/docs/stable/generated/torch.nn.SmoothL1Loss.html?highlight=smoothl1loss#torch.nn.SmoothL1Loss) | [paddle.nn.SmoothL1Loss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SmoothL1Loss_cn.html#smoothl1loss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SmoothL1Loss.md) | +| 318 | [torch.nn.MultiLabelSoftMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.MultiLabelSoftMarginLoss.html#torch.nn.MultiLabelSoftMarginLoss) | [paddle.nn.MultiLabelSoftMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MultiLabelSoftMarginLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MultiLabelSoftMarginLoss.md) | +| 319 | [torch.nn.CosineEmbeddingLoss](https://pytorch.org/docs/stable/generated/torch.nn.CosineEmbeddingLoss.html#torch.nn.CosineEmbeddingLoss) | [paddle.nn.CosineEmbeddingLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CosineEmbeddingLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CosineEmbeddingLoss.md) | +| 320 | [torch.nn.MaxPool3d](https://pytorch.org/docs/stable/generated/torch.nn.MaxPool3d.html?highlight=maxpool3d#torch.nn.MaxPool3d) | [paddle.nn.MaxPool3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MaxPool3D_cn.html#maxpool3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MaxPool3d.md) | +| 321 | [torch.nn.SELU](https://pytorch.org/docs/stable/generated/torch.nn.SELU.html#torch.nn.SELU) | [paddle.nn.SELU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SELU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SELU.md) | +| 322 | [torch.nn.parallel.DistributedDataParallel](https://pytorch.org/docs/stable/generated/torch.nn.parallel.DistributedDataParallel.html#torch.nn.parallel.DistributedDataParallel) | [paddle.DataParallel](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/DataParallel_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.parallel.DistributedDataParallel.md) | +| 323 | [torch.nn.TransformerEncoderLayer](https://pytorch.org/docs/stable/generated/torch.nn.TransformerEncoderLayer.html#torch.nn.TransformerEncoderLayer) | [paddle.nn.TransformerEncoderLayer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TransformerEncoderLayer_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.TransformerEncoderLayer.md) | +| 324 | [torch.nn.SoftMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.SoftMarginLoss.html#torch.nn.SoftMarginLoss) | [paddle.nn.SoftMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SoftMarginLoss_cn.html#softmarginloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SoftMarginLoss.md) | +| 325 | [torch.nn.DataParallel](https://pytorch.org/docs/stable/generated/torch.nn.DataParallel.html?highlight=dataparallel#torch.nn.DataParallel) | [paddle.DataParallel](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/DataParallel_cn.html#dataparallel) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.DataParallel.md) | +| 326 | [torch.nn.Module.register_forward_hook](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.register_forward_hook) | [paddle.nn.Layer.register_forward_post_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-forward-post-hook-hook) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.register_forward_hook.md) | +| 327 | [torch.nn.TransformerDecoderLayer](https://pytorch.org/docs/stable/generated/torch.nn.TransformerDecoderLayer.html?highlight=transformerdecoderlayer#torch.nn.TransformerDecoderLayer) | [paddle.nn.TransformerDecoderLayer](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TransformerDecoderLayer_cn.html#transformerdecoderlayer) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.TransformerDecoderLayer.md) | +| 328 | [torch.nn.CELU](https://pytorch.org/docs/stable/generated/torch.nn.CELU.html#torch.nn.CELU) | [paddle.nn.CELU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CELU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CELU.md) | +| 329 | [torch.nn.MultiMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.MultiMarginLoss) | [paddle.nn.MultiMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MultiMarginLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MultiMarginLoss.md) | +| 330 | [torch.nn.Dropout2d](https://pytorch.org/docs/stable/generated/torch.nn.Dropout2d.html?highlight=dropout2d#torch.nn.Dropout2d) | [paddle.nn.Dropout2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Dropout2D_cn.html#dropout2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Dropout2d.md) | +| 331 | [torch.nn.SyncBatchNorm.convert_sync_batchnorm](https://pytorch.org/docs/stable/generated/torch.nn.SyncBatchNorm.html?highlight=convert_sync_batchnorm#torch.nn.SyncBatchNorm.convert_sync_batchnorm) | [paddle.nn.SyncBatchNorm.convert_sync_batchnorm](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/SyncBatchNorm_cn.html#convert-sync-batchnorm-layer) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.SyncBatchNorm.convert_sync_batchnorm.md) | +| 332 | [torch.nn.AlphaDropout](https://pytorch.org/docs/stable/generated/torch.nn.AlphaDropout.html#torch.nn.AlphaDropout) | [paddle.nn.AlphaDropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/AlphaDropout_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.AlphaDropout.md) | +| 333 | [torch.nn.CTCLoss](https://pytorch.org/docs/stable/generated/torch.nn.CTCLoss.html#torch.nn.CTCLoss) | [paddle.nn.CTCLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CTCLoss_cn.html#ctcloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CTCLoss.md) | +| 334 | [torch.nn.RReLU](https://pytorch.org/docs/stable/generated/torch.nn.RReLU.html#torch.nn.RReLU) | [paddle.nn.RReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/RReLU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.RReLU.md) | +| 335 | [torch.nn.L1Loss](https://pytorch.org/docs/stable/generated/torch.nn.L1Loss.html?highlight=l1loss#torch.nn.L1Loss) | [paddle.nn.L1Loss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/L1Loss_cn.html#l1loss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.L1Loss.md) | +| 336 | [torch.nn.ReLU](https://pytorch.org/docs/stable/generated/torch.nn.ReLU.html?highlight=relu#torch.nn.ReLU) | [paddle.nn.ReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ReLU_cn.html#relu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReLU.md) | +| 337 | [torch.nn.PReLU](https://pytorch.org/docs/stable/generated/torch.nn.PReLU.html?highlight=prelu#torch.nn.PReLU) | [paddle.nn.PReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/PReLU_cn.html#prelu) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.PReLU.md) | +| 338 | [torch.nn.RNNBase](https://pytorch.org/docs/stable/generated/torch.nn.RNNBase.html#torch.nn.RNNBase) | [paddle.nn.layer.rnn.RNNBase](https://github.com/PaddlePaddle/Paddle/blob/e25e86f4f6d1bbd043b621a75e93d0070719c3d8/python/paddle/nn/layer/rnn.py#L1300) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.RNNBase.md) | +| 339 | [torch.nn.MarginRankingLoss](https://pytorch.org/docs/stable/generated/torch.nn.MarginRankingLoss.html#marginrankingloss) | [paddle.nn.MarginRankingLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MarginRankingLoss_cn.html#marginrankingloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MarginRankingLoss.md) | +| 340 | [torch.nn.Threshold](https://pytorch.org/docs/stable/generated/torch.nn.Threshold.html#torch.nn.Threshold) | [paddle.nn.ThresholdedReLU](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ThresholdedReLU_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Threshold.md) | +| 341 | [torch.nn.KLDivLoss](https://pytorch.org/docs/stable/generated/torch.nn.KLDivLoss.html?highlight=kldivloss#torch.nn.KLDivLoss) | [paddle.nn.KLDivLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/KLDivLoss_cn.html#kldivloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.KLDivLoss.md) | +| 342 | [torch.nn.MSELoss](https://pytorch.org/docs/stable/generated/torch.nn.MSELoss.html?highlight=mseloss#torch.nn.MSELoss) | [paddle.nn.MSELoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MSELoss_cn.html#mseloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MSELoss.md) | +| 343 | [torch.nn.BCELoss](https://pytorch.org/docs/stable/generated/torch.nn.BCELoss.html?highlight=bceloss#torch.nn.BCELoss) | [paddle.nn.BCELoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/BCELoss_cn.html#bceloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.BCELoss.md) | +| 344 | [torch.nn.TripletMarginLoss](https://pytorch.org/docs/stable/generated/torch.nn.TripletMarginLoss.html#torch.nn.TripletMarginLoss) | [paddle.nn.TripletMarginLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/TripletMarginLoss_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.TripletMarginLoss.md) | +| 345 | [torch.nn.FeatureAlphaDropout](https://pytorch.org/docs/stable/generated/torch.nn.FeatureAlphaDropout.html#torch.nn.FeatureAlphaDropout) | [paddle.nn.FeatureAlphaDropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/FeatureAlphaDropout_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.FeatureAlphaDropout.md) | +| 346 | [torch.nn.ReLU6](https://pytorch.org/docs/stable/generated/torch.nn.ReLU6.html#torch.nn.ReLU6) | [paddle.nn.ReLU6](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/ReLU6_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReLU6.md) | +| 347 | [torch.nn.HingeEmbeddingLoss](https://pytorch.org/docs/stable/generated/torch.nn.HingeEmbeddingLoss.html#hingeembeddingloss) | [paddle.nn.HingeEmbeddingLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/HingeEmbeddingLoss_cn.html#hingeembeddingloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.HingeEmbeddingLoss.md) | +| 348 | [torch.nn.Hardsigmoid](https://pytorch.org/docs/stable/generated/torch.nn.Hardsigmoid.html?highlight=hardsigmoid#torch.nn.Hardsigmoid) | [paddle.nn.Hardsigmoid](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Hardsigmoid_cn.html#hardsigmoid) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Hardsigmoid.md) | +| 349 | [torch.nn.CrossEntropyLoss](https://pytorch.org/docs/stable/generated/torch.nn.CrossEntropyLoss.html#torch.nn.CrossEntropyLoss) | [paddle.nn.CrossEntropyLoss](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/CrossEntropyLoss_cn.html#crossentropyloss) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.CrossEntropyLoss.md) | +| 350 | [torch.nn.Dropout1d](https://pytorch.org/docs/stable/generated/torch.nn.Dropout1d.html#torch.nn.Dropout1d) | [paddle.nn.Dropout](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Dropout_cn.html#dropout) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Dropout1d.md) | +| 351 | [torch.nn.MaxPool2d](https://pytorch.org/docs/stable/generated/torch.nn.MaxPool2d.html?highlight=maxpool2d#torch.nn.MaxPool2d) | [paddle.nn.MaxPool2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MaxPool2D_cn.html#maxpool2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MaxPool2d.md) | +| 352 | [torch.nn.MultiheadAttention](https://pytorch.org/docs/stable/generated/torch.nn.MultiheadAttention.html#torch.nn.MultiheadAttention) | [paddle.nn.MultiHeadAttention](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/MultiHeadAttention_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.MultiheadAttention.md) | +| 353 | [torch.utils.data.SubsetRandomSampler](https://pytorch.org/docs/stable/data.html#torch.utils.data.SubsetRandomSampler) | [paddle.io.SubsetRandomSampler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/SubsetRandomSampler_cn.html#paddle.io.SubsetRandomSampler) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.data.SubsetRandomSampler.md) | +| 354 | [torch.utils.cpp_extension.CUDAExtension](https://pytorch.org/docs/stable/cpp_extension.html?highlight=torch+utils+cpp_extension+cudaextension#torch.utils.cpp_extension.CUDAExtension) | [paddle.utils.cpp_extension.CUDAExtension](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/cpp_extension/CUDAExtension_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.cpp_extension.CUDAExtension.md) | +| 355 | [torch.utils.checkpoint.checkpoint](https://pytorch.org/docs/stable/checkpoint.html#torch.utils.checkpoint.checkpoint) | [paddle.distributed.fleet.utils.recompute](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/cpp_extension/CppExtension_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.checkpoint.checkpoint.md) | +| 356 | [torch.utils.cpp_extension.CppExtension](https://pytorch.org/docs/stable/cpp_extension.html?highlight=torch+utils+cpp_extension+cppextension#torch.utils.cpp_extension.CppExtension) | [paddle.utils.cpp_extension.CppExtension](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/cpp_extension/CppExtension_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.cpp_extension.CppExtension.md) | +| 357 | [torch.utils.data.DataLoader](https://pytorch.org/docs/stable/data.html?highlight=dataloader#torch.utils.data.DataLoader) | [paddle.io.DataLoader](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/DataLoader_cn.html#dataloader) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.data.DataLoader.md) | +| 358 | [torch.utils.data.distributed.DistributedSampler](https://docs.pytorch.org/docs/stable/data.html#torch.utils.data.distributed.DistributedSampler) | [paddle.io.DistributedBatchSampler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/io/DistributedBatchSampler_cn.html#distributedbatchsampler) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.data.distributed.DistributedSampler.md) | +| 359 | [torch.utils.cpp_extension.load](https://pytorch.org/docs/stable/cpp_extension.html?highlight=torch+utils+cpp_extension+load#torch.utils.cpp_extension.load) | [paddle.utils.cpp_extension.load](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/utils/cpp_extension/load_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.cpp_extension.load.md) | +| 360 | [torch.signal.windows.general_cosine](https://pytorch.org/docs/stable/generated/torch.signal.windows.general_cosine.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.general_cosine.md) | +| 361 | [torch.signal.windows.general_hamming](https://pytorch.org/docs/stable/generated/torch.signal.windows.general_hamming.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.general_hamming.md) | +| 362 | [torch.signal.windows.hann](https://pytorch.org/docs/stable/generated/torch.signal.windows.hann.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.hann.md) | +| 363 | [torch.signal.windows.exponential](https://pytorch.org/docs/stable/generated/torch.signal.windows.exponential.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.exponential.md) | +| 364 | [torch.signal.windows.hamming](https://pytorch.org/docs/stable/generated/torch.signal.windows.hamming.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.hamming.md) | +| 365 | [torch.signal.windows.gaussian](https://pytorch.org/docs/stable/generated/torch.signal.windows.gaussian.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.gaussian.md) | +| 366 | [torch.signal.windows.blackman](https://pytorch.org/docs/stable/generated/torch.signal.windows.blackman.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.blackman.md) | +| 367 | [torch.signal.windows.cosine](https://pytorch.org/docs/stable/generated/torch.signal.windows.cosine.html) | [paddle.audio.functional.get_window](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/audio/functional/get_window_cn.html#get-window) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/audio/functional/torch.signal.windows.cosine.md) | +| 368 | [torch.distributions.transforms.SigmoidTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.SigmoidTransform) | [paddle.distribution.SigmoidTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/SigmoidTransform_cn.html#sigmoidtransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.SigmoidTransform.md) | +| 369 | [torch.distributions.transformed_distribution.TransformedDistribution](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transformed_distribution.TransformedDistribution) | [paddle.distribution.TransformedDistribution](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/TransformedDistribution_cn.html#transformeddistribution) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transformed_distribution.TransformedDistribution.md) | +| 370 | [torch.distributions.gamma.Gamma](https://pytorch.org/docs/stable/distributions.html#gamma) | [paddle.distribution.Gamma](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Gamma_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.gamma.Gamma.md) | +| 371 | [torch.distributions.transforms.StackTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.StackTransform) | [paddle.distribution.StackTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/StackTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.StackTransform.md) | +| 372 | [torch.distributions.transforms.PowerTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.SigmoidTransform) | [paddle.distribution.PowerTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/PowerTransform_cn.html#powertransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.PowerTransform.md) | +| 373 | [torch.distributions.beta.Beta](https://pytorch.org/docs/stable/distributions.html#torch.distributions.beta.Beta) | [paddle.distribution.Beta](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Beta_cn.html#beta) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.beta.Beta.md) | +| 374 | [torch.distributions.transforms.Transform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.Transform) | [paddle.distribution.Transform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Transform_cn.html#transform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.Transform.md) | +| 375 | [torch.distributions.transforms.SoftmaxTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.SoftmaxTransform) | [paddle.distribution.SoftmaxTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/SoftmaxTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.SoftmaxTransform.md) | +| 376 | [torch.distributions.log_normal.LogNormal](https://pytorch.org/docs/stable/distributions.html#torch.distributions.log_normal.LogNormal) | [paddle.distribution.LogNormal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/LogNormal_cn.html#lognormal) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.log_normal.LogNormal.md) | +| 377 | [torch.distributions.bernoulli.Bernoulli](https://pytorch.org/docs/stable/distributions.html#torch.distributions.bernoulli.Bernoulli) | [paddle.distribution.Bernoulli](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Bernoulli_cn.html#bernoulli) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.bernoulli.Bernoulli.md) | +| 378 | [torch.distributions.binomial.Binomial](https://pytorch.org/docs/stable/distributions.html#torch.distributions.binomial.Binomial) | [paddle.distribution.Binomial](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/distribution/Binomial_cn.html#binomial) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.binomial.Binomial.md) | +| 379 | [torch.distributions.laplace.Laplace](https://pytorch.org/docs/stable/distributions.html#torch.distributions.laplace.Laplace) | [paddle.distribution.Laplace](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Laplace_cn.html#laplace) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.laplace.Laplace.md) | +| 380 | [torch.distributions.lkj_cholesky.LKJCholesky](https://pytorch.org/docs/stable/distributions.html#torch.distributions.lkj_cholesky.LKJCholesky) | [paddle.distribution.LKJCholesky](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distribution/LKJCholesky_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.lkj_cholesky.LKJCholesky.md) | +| 381 | [torch.distributions.cauchy.Cauchy](https://pytorch.org/docs/stable/distributions.html#torch.distributions.cauchy.Cauchy) | [paddle.distribution.Cauchy](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Cauchy_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.cauchy.Cauchy.md) | +| 382 | [torch.distributions.studentT.StudentT](https://pytorch.org/docs/stable/distributions.html#studentt) | [paddle.distribution.StudentT](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distribution/StudentT_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.studentT.StudentT.md) | +| 383 | [torch.distributions.continuous_bernoulli.ContinuousBernoulli](https://pytorch.org/docs/stable/distributions.html) | [paddle.distribution.ContinuousBernoulli](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/distribution/ContinuousBernoulli_cn.html#continuousbernoulli) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.continuous_bernoulli.ContinuousBernoulli.md) | +| 384 | [torch.distributions.multinomial.Multinomial](https://pytorch.org/docs/stable/distributions.html#torch.distributions.multinomial.Multinomial) | [paddle.distribution.Multinomial](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Multinomial_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.multinomial.Multinomial.md) | +| 385 | [torch.distributions.dirichlet.Dirichlet](https://pytorch.org/docs/stable/distributions.html#torch.distributions.dirichlet.Dirichlet) | [paddle.distribution.Dirichlet](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Dirichlet_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.dirichlet.Dirichlet.md) | +| 386 | [torch.distributions.exp_family.ExponentialFamily](https://pytorch.org/docs/stable/distributions.html#torch.distributions.exp_family.ExponentialFamily) | [paddle.distribution.ExponentialFamily](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/ExponentialFamily_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.exp_family.ExponentialFamily.md) | +| 387 | [torch.distributions.categorical.Categorical](https://pytorch.org/docs/stable/distributions.html#torch.distributions.categorical.Categorical) | [paddle.distribution.Categorical](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Categorical_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.categorical.Categorical.md) | +| 388 | [torch.distributions.transforms.ReshapeTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.ReshapeTransform) | [paddle.distribution.ReshapeTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/ReshapeTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.ReshapeTransform.md) | +| 389 | [torch.distributions.gumbel.Gumbel](https://pytorch.org/docs/stable/distributions.html#torch.distributions.gumbel.Gumbel) | [paddle.distribution.Gumbel](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Gumbel_cn.html#gumbel) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.gumbel.Gumbel.md) | +| 390 | [torch.distributions.transforms.AbsTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.AbsTransform) | [paddle.distribution.AbsTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/AbsTransform_cn.html#paddle.distribution.AbsTransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.AbsTransform.md) | +| 391 | [torch.distributions.normal.Normal](https://pytorch.org/docs/stable/distributions.html#torch.distributions.normal.Normal) | [paddle.distribution.Normal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Normal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.normal.Normal.md) | +| 392 | [torch.distributions.transforms.ExpTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.ExpTransform) | [paddle.distribution.ExpTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/ExpTransform_cn.html#exptransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.ExpTransform.md) | +| 393 | [torch.distributions.chi2.Chi2](https://pytorch.org/docs/stable/distributions.html#chi2) | [paddle.distribution.Chi2](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Chi2_cn.html#prob-value) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.chi2.Chi2.md) | +| 394 | [torch.distributions.uniform.Uniform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.uniform.Uniform) | [paddle.distribution.Uniform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Uniform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.uniform.Uniform.md) | +| 395 | [torch.distributions.transforms.StickBreakingTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.StickBreakingTransform) | [paddle.distribution.StickBreakingTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/StickBreakingTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.StickBreakingTransform.md) | +| 396 | [torch.distributions.exponential.Exponential](https://pytorch.org/docs/stable/distributions.html#torch.distributions.exponential.Exponential.arg_constraints) | [paddle.distribution.Exponential](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/distribution/ExponentialFamily_cn.html#exponential) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.exponential.Exponential.md) | +| 397 | [torch.distributions.multivariate_normal.MultivariateNormal](https://pytorch.org/docs/stable/distributions.html#multivariatenormal) | [paddle.distribution.MultivariateNormal](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.6/api/paddle/distribution/MultivariateNormal_cn.html#multivariatenormal) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.multivariate_normal.MultivariateNormal.md) | +| 398 | [torch.distributions.geometric.Geometric](https://pytorch.org/docs/stable/distributions.html#torch.distributions.geometric.Geometric) | [paddle.distribution.Geometric](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Geometric_cn.html#geometric) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.geometric.Geometric.md) | +| 399 | [torch.distributions.transforms.ComposeTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.ComposeTransform) | [paddle.distribution.ChainTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/ChainTransform_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.ComposeTransform.md) | +| 400 | [torch.distributions.transforms.AffineTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.AffineTransform) | [paddle.distribution.AffineTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/AffineTransform_cn.html#affinetransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.AffineTransform.md) | +| 401 | [torch.distributions.independent.Independent](https://pytorch.org/docs/stable/distributions.html#torch.distributions.independent.Independent) | [paddle.distribution.Independent](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Independent_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.independent.Independent.md) | +| 402 | [torch.distributions.poisson.Poisson](https://pytorch.org/docs/stable/distributions.html#poisson) | [paddle.distribution.Poisson](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/distribution/Poisson_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.poisson.Poisson.md) | +| 403 | [torch.distributions.transforms.IndependentTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.IndependentTransform) | [paddle.distribution.IndependentTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/IndependentTransform_cn.html#independenttransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.IndependentTransform.md) | +| 404 | [torch.distributions.distribution.Distribution](https://pytorch.org/docs/stable/distributions.html#torch.distributions.distribution.Distribution) | [paddle.distribution.Distribution](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/Distribution_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.distribution.Distribution.md) | +| 405 | [torch.distributions.transforms.TanhTransform](https://pytorch.org/docs/stable/distributions.html#torch.distributions.transforms.TanhTransform) | [paddle.distribution.TanhTransform](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distribution/TanhTransform_cn.html#tanhtransform) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.TanhTransform.md) | +| 406 | [flash_attn.flash_attn_interface.flash_attn_func](https://github.com/Dao-AILab/flash-attention/blob/72e27c6320555a37a83338178caa25a388e46121/flash_attn/flash_attn_interface.py#L808) | [paddle.nn.functional.flash_attention.flash_attention](https://github.com/PaddlePaddle/Paddle/blob/900d27c40ef4567d7ea6342f3f0eedd394885ecb/python/paddle/nn/functional/flash_attention.py#L248) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/flash_attn/flash_attn.flash_attn_interface.flash_attn_func.md) | +| 407 | [flash_attn.flash_attn_interface.flash_attn_unpadded_func](https://github.com/Dao-AILab/flash-attention/blob/d0787acc16c3667156b51ce5b01bdafc7594ed39/flash_attn/flash_attn_interface.py#L1050) | [paddle.nn.functional.flash_attention.flash_attn_unpadded](https://github.com/PaddlePaddle/Paddle/blob/b32b51b7c21ad62bf794512c849a603c8c0ece44/python/paddle/nn/functional/flash_attention.py#L664) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/flash_attn/flash_attn.flash_attn_interface.flash_attn_unpadded_func.md) | +| 408 | [torchvision.ops.RoIAlign](https://pytorch.org/vision/main/generated/torchvision.ops.RoIAlign.html) | [paddle.vision.ops.RoIAlign](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/ops/RoIAlign_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.ops.RoIAlign.md) | +| 409 | [torchvision.transforms.functional.normalize](https://pytorch.org/vision/stable/generated/torchvision.transforms.functional.normalize.html) | [paddle.vision.transforms.normalize](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/transforms/normalize_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.functional.normalize.md) | +| 410 | [torchvision.transforms.Normalize](https://pytorch.org/vision/main/generated/torchvision.transforms.Normalize.html) | [paddle.vision.transforms.Normalize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/Normalize__upper_cn.html#normalize) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.Normalize.md) | +| 411 | [torchvision.datasets.ImageFolder](https://pytorch.org/vision/main/generated/torchvision.datasets.ImageFolder.html) | [paddle.vision.datasets.ImageFolder](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/datasets/ImageFolder_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.datasets.ImageFolder.md) | +| 412 | [fairscale.nn.model_parallel.layers.RowParallelLinear](https://github.com/facebookresearch/fairscale/blob/164cc0f3170b4a3951dd84dda29c3e1504ac4d6e/fairscale/nn/model_parallel/layers.py#L299) | [paddle.distributed.fleet.meta_parallel.RowParallelLinear](https://github.com/PaddlePaddle/Paddle/blob/016766cc89fabc10181453ce70b701dd8ed019f6/python/paddle/distributed/fleet/layers/mpu/mp_layers.py#L291) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/fairscale/fairscale.nn.model_parallel.layers.RowParallelLinear.md) | +| 413 | [fairscale.nn.model_parallel.layers.ColumnParallelLinear](https://github.com/facebookresearch/fairscale/blob/164cc0f3170b4a3951dd84dda29c3e1504ac4d6e/fairscale/nn/model_parallel/layers.py#L218) | [paddle.distributed.fleet.meta_parallel.ColumnParallelLinear](https://github.com/PaddlePaddle/Paddle/blob/016766cc89fabc10181453ce70b701dd8ed019f6/python/paddle/distributed/fleet/layers/mpu/mp_layers.py#L153) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/fairscale/fairscale.nn.model_parallel.layers.ColumnParallelLinear.md) | +| 414 | [fairscale.nn.model_parallel.layers.ParallelEmbedding](https://github.com/facebookresearch/fairscale/blob/164cc0f3170b4a3951dd84dda29c3e1504ac4d6e/fairscale/nn/model_parallel/layers.py#L152) | [paddle.distributed.fleet.meta_parallel.VocabParallelEmbedding](https://github.com/PaddlePaddle/Paddle/blob/016766cc89fabc10181453ce70b701dd8ed019f6/python/paddle/distributed/fleet/layers/mpu/mp_layers.py#L37) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/fairscale/fairscale.nn.model_parallel.layers.ParallelEmbedding.md) | +| 415 | [transformers.GenerationConfig](https://hf-mirror.com/docs/transformers/v4.42.0/en/main_classes/text_generation#transformers.GenerationConfig) | [paddlenlp.generation.GenerationConfig](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/generation/configuration_utils.py#L62) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.GenerationConfig.md) | +| 416 | [transformers.AddedToken](https://github.com/huggingface/transformers/blob/d625294d79341662784495551abdf45e6cb9372f/src/transformers/tokenization_utils_base.py#L84) | [paddlenlp.transformers.AddedToken](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/transformers/tokenizer_utils_base.py#L48) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.AddedToken.md) | +| 417 | [transformers.PretrainedConfig](https://hf-mirror.com/docs/transformers/v4.42.0/en/main_classes/configuration#transformers.PretrainedConfig) | [paddlenlp.transformers.PretrainedConfig](https://github.com/PaddlePaddle/PaddleNLP/blob/57000fa12ce67024238f0b56a6fde63c592c54ce/paddlenlp/transformers/configuration_utils.py#L317) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.PretrainedConfig.md) | ## 7. 输入参数用法不一致 **分类简介** -此类 API 对输入参数的处理方式不同 - - +此类 API 对输入参数的处理方式不同。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| @@ -1494,9 +1498,7 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) ## 8. 输入参数类型不一致 **分类简介** -此类 API 要求的输入数据类型不同 - - +此类 API 要求的输入数据类型不同。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| @@ -1512,90 +1514,86 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) | 10 | [torch.Tensor.gt_](https://pytorch.org/docs/stable/generated/torch.Tensor.gt_.html) | paddle.Tensor.greater_than_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.gt_.md) | | 11 | [torch.Tensor.ne](https://pytorch.org/docs/stable/generated/torch.Tensor.ne.html?highlight=ne) | [paddle.Tensor.not_equal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#not-equal-y-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.ne.md) | | 12 | [torch.Tensor.qr](https://pytorch.org/docs/stable/generated/torch.Tensor.qr.html?highlight=torch+tensor+qr#torch.Tensor.qr) | [paddle.Tensor.qr](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/linalg/qr_cn.html#qr) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.qr.md) | -| 13 | [torch.Tensor.mul](https://pytorch.org/docs/stable/generated/torch.Tensor.mul.html) | [paddle.Tensor.multiply](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#multiply-y-axis-1-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.mul.md) | -| 14 | [torch.Tensor.floor_divide_](https://pytorch.org/docs/stable/generated/torch.Tensor.floor_divide_.html) | paddle.Tensor.floor_divide_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.floor_divide_.md) | -| 15 | [torch.Tensor.lt](https://pytorch.org/docs/stable/generated/torch.Tensor.lt.html) | [paddle.Tensor.less_than](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#less-than-y-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lt.md) | -| 16 | [torch.Tensor.fmod_](https://pytorch.org/docs/stable/generated/torch.Tensor.fmod_.html#torch.Tensor.fmod_) | paddle.Tensor.mod_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.fmod_.md) | -| 17 | [torch.Tensor.gt](https://pytorch.org/docs/stable/generated/torch.Tensor.gt.html?highlight=torch+tensor+gt#torch.Tensor.gt) | [paddle.Tensor.greater_than](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#greater-than-y-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.gt.md) | -| 18 | [torch.Tensor.slice_scatter](https://pytorch.org/docs/stable/generated/torch.Tensor.slice_scatter.html#torch-tensor-slice-scatter) | [paddle.Tensor.slice_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#slice_scatter-value-axes-starts-ends-strides-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.slice_scatter.md) | -| 19 | [torch.Tensor.ge_](https://pytorch.org/docs/stable/ge_nerated/torch.Tensor.ge_.html) | paddle.Tensor.greater_equal_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.ge_.md) | -| 20 | [torch.Tensor.fmod](https://pytorch.org/docs/stable/generated/torch.Tensor.fmod.html#torch.Tensor.fmod) | [paddle.Tensor.mod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mod-y-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.fmod.md) | -| 21 | [torch.Tensor.lt_](https://pytorch.org/docs/stable/generated/torch.Tensor.lt_.html) | paddle.Tensor.less_than_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lt_.md) | -| 22 | [torch.Tensor.eq_](https://pytorch.org/docs/stable/generated/torch.Tensor.eq_.html) | paddle.Tensor.equal_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.eq_.md) | -| 23 | [torch.Tensor.ne_](https://pytorch.org/docs/stable/generated/torch.Tensor.ne_.html) | paddle.Tensor.not_equal_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.ne_.md) | -| 24 | [torch.linalg.lu_solve](https://pytorch.org/docs/stable/generated/torch.linalg.lu_solve.html#torch.linalg.lu_solve) | [paddle.linalg.lu_solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_solve_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lu_solve.md) | -| 25 | [torch.set_default_device](https://pytorch.org/docs/stable/generated/torch.set_default_device.html#torch-set-default-device) | [paddle.device.set_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/set_device_cn.html#set-device) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.set_default_device.md) | -| 26 | [torch.cartesian_prod](https://pytorch.org/docs/stable/generated/torch.cartesian_prod.html#torch-cartesian-prod) | [paddle.cartesian_prod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cartesian_prod_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cartesian_prod.md) | -| 27 | [torch.broadcast_tensors](https://pytorch.org/docs/stable/generated/torch.broadcast_tensors.html?highlight=broadcast_tensors#torch.broadcast_tensors) | [paddle.broadcast_tensors](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/broadcast_tensors_cn.html#broadcast-tensors) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.broadcast_tensors.md) | -| 28 | [torch.block_diag](https://pytorch.org/docs/stable/generated/torch.block_diag.html#torch-block-diag) | [paddle.block_diag](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/block_diag_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.block_diag.md) | -| 29 | [torch.le](https://pytorch.org/docs/stable/generated/torch.le.html) | [paddle.less_equal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/less_equal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.le.md) | -| 30 | [torch.set_default_tensor_type](https://pytorch.org/docs/stable/generated/torch.set_default_tensor_type.html) | [paddle.set_default_dtype](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/set_default_dtype_cn.html#set-default-dtype) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.set_default_tensor_type.md) | -| 31 | [torch.floor_divide](https://pytorch.org/docs/stable/generated/torch.floor_divide.html?highlight=torch+floor_divide#torch.floor_divide) | [paddle.floor_divide](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/floor_divide_cn.html#floor-divide) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.floor_divide.md) | -| 32 | [torch.cpu.set_device](https://pytorch.org/docs/stable/generated/torch.cpu.set_device.html) | [paddle.device.set_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/set_device_cn.html#set-device) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cpu.set_device.md) | -| 33 | [torch.cuda.device](https://pytorch.org/docs/stable/generated/torch.cuda.device.html#torch.cuda.device) | [paddle.device._convert_to_place](https://github.com/PaddlePaddle/Paddle/blob/c8ccc9b154632ef41ade1b8e97b87d54fde7e8f8/python/paddle/device/__init__.py#L174) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.device.md) | -| 34 | [torch.cuda.synchronize](https://pytorch.org/docs/stable/generated/torch.cuda.synchronize.html#torch.cuda.synchronize) | [paddle.device.synchronize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/synchronize_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.synchronize.md) | -| 35 | [torch.cuda.set_device](https://pytorch.org/docs/stable/generated/torch.cuda.set_device.html#torch.cuda.set_device) | [paddle.device.set_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/device/set_device_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.set_device.md) | -| 36 | [torch.cuda.current_stream](https://pytorch.org/docs/stable/generated/torch.cuda.current_stream.html#torch.cuda.current_stream) | [paddle.device.current_stream](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/current_stream_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.current_stream.md) | -| 37 | [torch.cuda.get_device_properties](https://pytorch.org/docs/stable/generated/torch.cuda.get_device_properties.html#torch.cuda.get_device_properties) | [paddle.device.cuda.get_device_properties](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/get_device_properties_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.get_device_properties.md) | -| 38 | [torch.cuda.set_rng_state_all](https://pytorch.org/docs/stable/generated/torch.cuda.set_rng_state_all.html#torch.cuda.set_rng_state_all) | paddle.set_rng_state | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.set_rng_state_all.md) | -| 39 | [torch.distributed.reduce_scatter_tensor](https://docs.pytorch.org/docs/stable/distributed.html#torch.distributed.reduce_scatter_tensor) | [paddle.distributed.reduce_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/reduce_scatter_cn.html#reduce-scatter) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.reduce_scatter_tensor.md) | -| 40 | [torch.nn.ReflectionPad3d](https://pytorch.org/docs/stable/generated/torch.nn.ReflectionPad3d.html?highlight=pad#torch.nn.ReflectionPad3d) | [paddle.nn.Pad3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad3D_cn.html#pad3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReflectionPad3d.md) | -| 41 | [torch.nn.Module.type](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.type) | [paddle.nn.Layer.astype](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#astype-dtype-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.type.md) | -| 42 | [torch.nn.ReplicationPad1d](https://pytorch.org/docs/stable/generated/torch.nn.ReplicationPad1d.html?highlight=pad#torch.nn.ReplicationPad1d) | [paddle.nn.Pad1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad1D_cn.html#pad1d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReplicationPad1d.md) | -| 43 | [torch.nn.ReflectionPad1d](https://pytorch.org/docs/stable/generated/torch.nn.ReflectionPad1d.html?highlight=pad#torch.nn.ReflectionPad1d) | [paddle.nn.Pad1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad1D_cn.html#pad1d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReflectionPad1d.md) | -| 44 | [torch.nn.ReplicationPad2d](https://pytorch.org/docs/stable/generated/torch.nn.ReplicationPad2d.html?highlight=pad#torch.nn.ReplicationPad2d) | [paddle.nn.Pad2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad2D_cn.html#pad2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReplicationPad2d.md) | -| 45 | [torch.nn.ReplicationPad3d](https://pytorch.org/docs/stable/generated/torch.nn.ReplicationPad3d.html?highlight=pad#torch.nn.ReplicationPad3d) | [paddle.nn.Pad3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad3D_cn.html#pad3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReplicationPad3d.md) | -| 46 | [torch.nn.ReflectionPad2d](https://pytorch.org/docs/stable/generated/torch.nn.ReflectionPad2d.html?highlight=pad#torch.nn.ReflectionPad2d) | [paddle.nn.Pad2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad2D_cn.html#pad2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReflectionPad2d.md) | -| 47 | [torchvision.models.resnet50](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet50.html) | [paddle.vision.models.resnet50](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet50_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet50.md) | -| 48 | [torchvision.models.resnext101_64x4d](https://pytorch.org/vision/main/models/generated/torchvision.models.resnext101_64x4d.html) | [paddle.vision.models.resnext101_64x4d](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnext101_64x4d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnext101_64x4d.md) | -| 49 | [torchvision.transforms.functional.rotate](https://pytorch.org/vision/stable/generated/torchvision.transforms.functional.rotate.html) | [paddle.vision.transforms.rotate](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/transforms/rotate_cn.html#cn-api-paddle-vision-transforms-rotate) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.functional.rotate.md) | -| 50 | [torchvision.models.squeezenet1_1](https://pytorch.org/vision/main/models/generated/torchvision.models.squeezenet1_1.html) | [paddle.vision.models.squeezenet1_1](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/squeezenet1_1_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.squeezenet1_1.md) | -| 51 | [torchvision.transforms.functional.resize](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.resize.html) | [paddle.vision.transforms.resize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/resize_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transform.functional.resize.md) | -| 52 | [torchvision.models.densenet161](https://pytorch.org/vision/main/models/generated/torchvision.models.densenet161.html) | [paddle.vision.models.densenet161](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/densenet161_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.densenet161.md) | -| 53 | [torchvision.models.shufflenet_v2_x2_0](https://pytorch.org/vision/main/models/generated/torchvision.models.shufflenet_v2_x2_0.html) | [paddle.vision.models.shufflenet_v2_x2_0](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/shufflenet_v2_x2_0_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.shufflenet_v2_x2_0.md) | -| 54 | [torchvision.models.inception_v3](https://pytorch.org/vision/main/models/generated/torchvision.models.inception_v3.html) | [paddle.vision.models.inception_v3](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/inception_v3_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.inception_v3.md) | -| 55 | [torchvision.transforms.functional.affine](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.affine.html) | [paddle.vision.transforms.affine](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/affine_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.functional.affine.md) | -| 56 | [torchvision.models.alexnet](https://pytorch.org/vision/stable/models/generated/torchvision.models.alexnet.html) | [paddle.vision.models.alexnet](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/alexnet_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.alexnet.md) | -| 57 | [torchvision.models.vgg16_bn](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg16_bn.html) | [paddle.vision.models.vgg16](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg16_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg16_bn.md) | -| 58 | [torchvision.models.shufflenet_v2_x0_5](https://pytorch.org/vision/main/models/generated/torchvision.models.shufflenet_v2_x0_5.html) | [paddle.vision.models.shufflenet_v2_x0_5](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/shufflenet_v2_x0_5_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.shufflenet_v2_x0_5.md) | -| 59 | [torchvision.models.densenet169](https://pytorch.org/vision/main/models/generated/torchvision.models.densenet169.html) | [paddle.vision.models.densenet169](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/densenet169_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.densenet169.md) | -| 60 | [torchvision.models.resnet18](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet18.html) | [paddle.vision.models.resnet18](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet18_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet18.md) | -| 61 | [torchvision.transforms.RandomRotation](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomRotation.html) | [paddle.vision.transforms.RandomRotation](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/RandomRotation_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.RandomRotation.md) | -| 62 | [torchvision.models.mobilenet_v3_small](https://pytorch.org/vision/main/models/generated/torchvision.models.mobilenet_v3_small.html) | [paddle.vision.models.mobilenet_v3_small](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/mobilenet_v3_small_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.mobilenet_v3_small.md) | -| 63 | [torchvision.models.vgg11_bn](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg11_bn.html) | [paddle.vision.models.vgg11](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg11_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg11_bn.md) | -| 64 | [torchvision.transforms.RandomAffine](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomAffine.html) | [paddle.vision.transforms.RandomAffine](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/RandomAffine_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.RandomAffine.md) | -| 65 | [torchvision.models.vgg16](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg16.html) | [paddle.vision.models.vgg16](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg16_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg16.md) | -| 66 | [torchvision.models.squeezenet1_0](https://pytorch.org/vision/main/models/generated/torchvision.models.squeezenet1_0.html) | [paddle.vision.models.squeezenet1_0](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/squeezenet1_0_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.squeezenet1_0.md) | -| 67 | [torchvision.transforms.RandomResizedCrop](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomResizedCrop.html) | [paddle.vision.transforms.RandomResizedCrop](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/RandomResizedCrop_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.RandomResizedCrop.md) | -| 68 | [torchvision.transforms.functional.perspective](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.perspective.html#perspective) | [paddle.vision.transforms.perspective](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/transforms/perspective_cn.html#cn-api-paddle-vision-transforms-perspective) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.functional.perspective.md) | -| 69 | [torchvision.io.decode_jpeg](https://pytorch.org/vision/main/generated/torchvision.io.decode_jpeg.html) | [paddle.vision.ops.decode_jpeg](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/ops/decode_jpeg_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.io.decode_jpeg.md) | -| 70 | [torchvision.models.vgg19](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg19.html) | [paddle.vision.models.vgg19](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg19_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg19.md) | -| 71 | [torchvision.models.wide_resnet101_2](https://pytorch.org/vision/stable/models/generated/torchvision.models.wide_resnet101_2.html) | [paddle.vision.models.wide_resnet101_2](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/wide_resnet101_2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.wide_resnet101_2.md) | -| 72 | [torchvision.models.shufflenet_v2_x1_5](https://pytorch.org/vision/main/models/generated/torchvision.models.shufflenet_v2_x1_5.html) | [paddle.vision.models.shufflenet_v2_x1_5](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/shufflenet_v2_x1_5_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.shufflenet_v2_x1_5.md) | -| 73 | [torchvision.transforms.Resize](https://pytorch.org/vision/stable/generated/torchvision.transforms.Resize.html#torchvision.transforms.Resize) | [paddle.vision.transforms.Resize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/Resize__upper_cn.html#resize) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.Resize.md) | -| 74 | [torchvision.models.vgg13_bn](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg13_bn.html) | [paddle.vision.models.vgg13](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg13_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg13_bn.md) | -| 75 | [torchvision.models.densenet201](https://pytorch.org/vision/main/models/generated/torchvision.models.densenet201.html) | [paddle.vision.models.densenet201](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/densenet201_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.densenet201.md) | -| 76 | [torchvision.models.shufflenet_v2_x1_0](https://pytorch.org/vision/main/models/generated/torchvision.models.shufflenet_v2_x1_0.html) | [paddle.vision.models.shufflenet_v2_x1_0](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/shufflenet_v2_x1_0_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.shufflenet_v2_x1_0.md) | -| 77 | [torchvision.models.resnet101](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet101.html) | [paddle.vision.models.resnet101](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet101_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet101.md) | -| 78 | [torchvision.models.vgg13](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg13.html) | [paddle.vision.models.vgg13](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg13_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg13.md) | -| 79 | [torchvision.transforms.RandomPerspective](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomPerspective.html?highlight=randomperspective#torchvision.transforms.RandomPerspective) | [paddle.vision.transforms.RandomPerspective](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/RandomPerspective_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.RandomPerspective.md) | -| 80 | [torchvision.models.vgg11](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg11.html) | [paddle.vision.models.vgg11](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg11_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg11.md) | -| 81 | [torchvision.models.vgg19_bn](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg19_bn.html) | [paddle.vision.models.vgg19](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg19_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg19_bn.md) | -| 82 | [torchvision.models.resnet34](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet34.html) | [paddle.vision.models.resnet34](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet34_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet34.md) | -| 83 | [torchvision.models.wide_resnet50_2](https://pytorch.org/vision/stable/models/generated/torchvision.models.wide_resnet50_2.html) | [paddle.vision.models.wide_resnet50_2](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/wide_resnet50_2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.wide_resnet50_2.md) | -| 84 | [torchvision.models.googlenet](https://pytorch.org/vision/main/models/generated/torchvision.models.googlenet.html) | [paddle.vision.models.googlenet](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/googlenet_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.googlenet.md) | -| 85 | [torchvision.models.resnext50_32x4d](https://pytorch.org/vision/main/models/generated/torchvision.models.resnext50_32x4d.html) | [paddle.vision.models.resnext50_32x4d](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnext50_32x4d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnext50_32x4d.md) | -| 86 | [torchvision.models.resnet152](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet152.html) | [paddle.vision.models.resnet152](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet152_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet152.md) | -| 87 | [torchvision.models.mobilenet_v3_large](https://pytorch.org/vision/main/models/generated/torchvision.models.mobilenet_v3_large.html) | [paddle.vision.models.mobilenet_v3_large](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/mobilenet_v3_large_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.mobilenet_v3_large.md) | -| 88 | [torchvision.models.mobilenet_v2](https://pytorch.org/vision/stable/models/generated/torchvision.models.mobilenet_v2.html) | [paddle.vision.models.mobilenet_v2](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/mobilenet_v2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.mobilenet_v2.md) | -| 89 | [torchvision.models.densenet121](https://pytorch.org/vision/main/models/generated/torchvision.models.densenet121.html) | [paddle.vision.models.densenet121](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/densenet121_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.densenet121.md) | +| 13 | [torch.Tensor.floor_divide_](https://pytorch.org/docs/stable/generated/torch.Tensor.floor_divide_.html) | paddle.Tensor.floor_divide_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.floor_divide_.md) | +| 14 | [torch.Tensor.lt](https://pytorch.org/docs/stable/generated/torch.Tensor.lt.html) | [paddle.Tensor.less_than](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#less-than-y-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lt.md) | +| 15 | [torch.Tensor.fmod_](https://pytorch.org/docs/stable/generated/torch.Tensor.fmod_.html#torch.Tensor.fmod_) | paddle.Tensor.mod_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.fmod_.md) | +| 16 | [torch.Tensor.gt](https://pytorch.org/docs/stable/generated/torch.Tensor.gt.html?highlight=torch+tensor+gt#torch.Tensor.gt) | [paddle.Tensor.greater_than](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#greater-than-y-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.gt.md) | +| 17 | [torch.Tensor.slice_scatter](https://pytorch.org/docs/stable/generated/torch.Tensor.slice_scatter.html#torch-tensor-slice-scatter) | [paddle.Tensor.slice_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#slice_scatter-value-axes-starts-ends-strides-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.slice_scatter.md) | +| 18 | [torch.Tensor.ge_](https://pytorch.org/docs/stable/ge_nerated/torch.Tensor.ge_.html) | paddle.Tensor.greater_equal_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.ge_.md) | +| 19 | [torch.Tensor.fmod](https://pytorch.org/docs/stable/generated/torch.Tensor.fmod.html#torch.Tensor.fmod) | [paddle.Tensor.mod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#mod-y-name-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.fmod.md) | +| 20 | [torch.Tensor.lt_](https://pytorch.org/docs/stable/generated/torch.Tensor.lt_.html) | paddle.Tensor.less_than_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.lt_.md) | +| 21 | [torch.Tensor.eq_](https://pytorch.org/docs/stable/generated/torch.Tensor.eq_.html) | paddle.Tensor.equal_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.eq_.md) | +| 22 | [torch.Tensor.ne_](https://pytorch.org/docs/stable/generated/torch.Tensor.ne_.html) | paddle.Tensor.not_equal_ | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.ne_.md) | +| 23 | [torch.linalg.lu_solve](https://pytorch.org/docs/stable/generated/torch.linalg.lu_solve.html#torch.linalg.lu_solve) | [paddle.linalg.lu_solve](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/linalg/lu_solve_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lu_solve.md) | +| 24 | [torch.set_default_device](https://pytorch.org/docs/stable/generated/torch.set_default_device.html#torch-set-default-device) | [paddle.device.set_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/set_device_cn.html#set-device) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.set_default_device.md) | +| 25 | [torch.cartesian_prod](https://pytorch.org/docs/stable/generated/torch.cartesian_prod.html#torch-cartesian-prod) | [paddle.cartesian_prod](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/cartesian_prod_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cartesian_prod.md) | +| 26 | [torch.broadcast_tensors](https://pytorch.org/docs/stable/generated/torch.broadcast_tensors.html?highlight=broadcast_tensors#torch.broadcast_tensors) | [paddle.broadcast_tensors](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/broadcast_tensors_cn.html#broadcast-tensors) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.broadcast_tensors.md) | +| 27 | [torch.block_diag](https://pytorch.org/docs/stable/generated/torch.block_diag.html#torch-block-diag) | [paddle.block_diag](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/block_diag_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.block_diag.md) | +| 28 | [torch.le](https://pytorch.org/docs/stable/generated/torch.le.html) | [paddle.less_equal](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/less_equal_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.le.md) | +| 29 | [torch.set_default_tensor_type](https://pytorch.org/docs/stable/generated/torch.set_default_tensor_type.html) | [paddle.set_default_dtype](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/set_default_dtype_cn.html#set-default-dtype) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.set_default_tensor_type.md) | +| 30 | [torch.cpu.set_device](https://pytorch.org/docs/stable/generated/torch.cpu.set_device.html) | [paddle.device.set_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/set_device_cn.html#set-device) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.cpu.set_device.md) | +| 31 | [torch.cuda.device](https://pytorch.org/docs/stable/generated/torch.cuda.device.html#torch.cuda.device) | [paddle.device._convert_to_place](https://github.com/PaddlePaddle/Paddle/blob/c8ccc9b154632ef41ade1b8e97b87d54fde7e8f8/python/paddle/device/__init__.py#L174) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.device.md) | +| 32 | [torch.cuda.synchronize](https://pytorch.org/docs/stable/generated/torch.cuda.synchronize.html#torch.cuda.synchronize) | [paddle.device.synchronize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/synchronize_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.synchronize.md) | +| 33 | [torch.cuda.set_device](https://pytorch.org/docs/stable/generated/torch.cuda.set_device.html#torch.cuda.set_device) | [paddle.device.set_device](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/device/set_device_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.set_device.md) | +| 34 | [torch.cuda.current_stream](https://pytorch.org/docs/stable/generated/torch.cuda.current_stream.html#torch.cuda.current_stream) | [paddle.device.current_stream](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/current_stream_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.current_stream.md) | +| 35 | [torch.cuda.get_device_properties](https://pytorch.org/docs/stable/generated/torch.cuda.get_device_properties.html#torch.cuda.get_device_properties) | [paddle.device.cuda.get_device_properties](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/get_device_properties_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.get_device_properties.md) | +| 36 | [torch.cuda.set_rng_state_all](https://pytorch.org/docs/stable/generated/torch.cuda.set_rng_state_all.html#torch.cuda.set_rng_state_all) | paddle.set_rng_state | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.set_rng_state_all.md) | +| 37 | [torch.distributed.reduce_scatter_tensor](https://docs.pytorch.org/docs/stable/distributed.html#torch.distributed.reduce_scatter_tensor) | [paddle.distributed.reduce_scatter](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/distributed/reduce_scatter_cn.html#reduce-scatter) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.reduce_scatter_tensor.md) | +| 38 | [torch.nn.ReflectionPad3d](https://pytorch.org/docs/stable/generated/torch.nn.ReflectionPad3d.html?highlight=pad#torch.nn.ReflectionPad3d) | [paddle.nn.Pad3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad3D_cn.html#pad3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReflectionPad3d.md) | +| 39 | [torch.nn.Module.type](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.type) | [paddle.nn.Layer.astype](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#astype-dtype-none) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.type.md) | +| 40 | [torch.nn.ReplicationPad1d](https://pytorch.org/docs/stable/generated/torch.nn.ReplicationPad1d.html?highlight=pad#torch.nn.ReplicationPad1d) | [paddle.nn.Pad1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad1D_cn.html#pad1d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReplicationPad1d.md) | +| 41 | [torch.nn.ReflectionPad1d](https://pytorch.org/docs/stable/generated/torch.nn.ReflectionPad1d.html?highlight=pad#torch.nn.ReflectionPad1d) | [paddle.nn.Pad1D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad1D_cn.html#pad1d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReflectionPad1d.md) | +| 42 | [torch.nn.ReplicationPad2d](https://pytorch.org/docs/stable/generated/torch.nn.ReplicationPad2d.html?highlight=pad#torch.nn.ReplicationPad2d) | [paddle.nn.Pad2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad2D_cn.html#pad2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReplicationPad2d.md) | +| 43 | [torch.nn.ReplicationPad3d](https://pytorch.org/docs/stable/generated/torch.nn.ReplicationPad3d.html?highlight=pad#torch.nn.ReplicationPad3d) | [paddle.nn.Pad3D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad3D_cn.html#pad3d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReplicationPad3d.md) | +| 44 | [torch.nn.ReflectionPad2d](https://pytorch.org/docs/stable/generated/torch.nn.ReflectionPad2d.html?highlight=pad#torch.nn.ReflectionPad2d) | [paddle.nn.Pad2D](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Pad2D_cn.html#pad2d) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.ReflectionPad2d.md) | +| 45 | [torchvision.models.resnet50](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet50.html) | [paddle.vision.models.resnet50](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet50_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet50.md) | +| 46 | [torchvision.models.resnext101_64x4d](https://pytorch.org/vision/main/models/generated/torchvision.models.resnext101_64x4d.html) | [paddle.vision.models.resnext101_64x4d](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnext101_64x4d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnext101_64x4d.md) | +| 47 | [torchvision.transforms.functional.rotate](https://pytorch.org/vision/stable/generated/torchvision.transforms.functional.rotate.html) | [paddle.vision.transforms.rotate](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/transforms/rotate_cn.html#cn-api-paddle-vision-transforms-rotate) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.functional.rotate.md) | +| 48 | [torchvision.models.squeezenet1_1](https://pytorch.org/vision/main/models/generated/torchvision.models.squeezenet1_1.html) | [paddle.vision.models.squeezenet1_1](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/squeezenet1_1_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.squeezenet1_1.md) | +| 49 | [torchvision.transforms.functional.resize](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.resize.html) | [paddle.vision.transforms.resize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/resize_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transform.functional.resize.md) | +| 50 | [torchvision.models.densenet161](https://pytorch.org/vision/main/models/generated/torchvision.models.densenet161.html) | [paddle.vision.models.densenet161](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/densenet161_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.densenet161.md) | +| 51 | [torchvision.models.shufflenet_v2_x2_0](https://pytorch.org/vision/main/models/generated/torchvision.models.shufflenet_v2_x2_0.html) | [paddle.vision.models.shufflenet_v2_x2_0](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/shufflenet_v2_x2_0_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.shufflenet_v2_x2_0.md) | +| 52 | [torchvision.models.inception_v3](https://pytorch.org/vision/main/models/generated/torchvision.models.inception_v3.html) | [paddle.vision.models.inception_v3](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/inception_v3_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.inception_v3.md) | +| 53 | [torchvision.transforms.functional.affine](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.affine.html) | [paddle.vision.transforms.affine](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/affine_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.functional.affine.md) | +| 54 | [torchvision.models.alexnet](https://pytorch.org/vision/stable/models/generated/torchvision.models.alexnet.html) | [paddle.vision.models.alexnet](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/alexnet_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.alexnet.md) | +| 55 | [torchvision.models.vgg16_bn](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg16_bn.html) | [paddle.vision.models.vgg16](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg16_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg16_bn.md) | +| 56 | [torchvision.models.shufflenet_v2_x0_5](https://pytorch.org/vision/main/models/generated/torchvision.models.shufflenet_v2_x0_5.html) | [paddle.vision.models.shufflenet_v2_x0_5](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/shufflenet_v2_x0_5_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.shufflenet_v2_x0_5.md) | +| 57 | [torchvision.models.densenet169](https://pytorch.org/vision/main/models/generated/torchvision.models.densenet169.html) | [paddle.vision.models.densenet169](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/densenet169_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.densenet169.md) | +| 58 | [torchvision.models.resnet18](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet18.html) | [paddle.vision.models.resnet18](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet18_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet18.md) | +| 59 | [torchvision.transforms.RandomRotation](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomRotation.html) | [paddle.vision.transforms.RandomRotation](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/RandomRotation_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.RandomRotation.md) | +| 60 | [torchvision.models.mobilenet_v3_small](https://pytorch.org/vision/main/models/generated/torchvision.models.mobilenet_v3_small.html) | [paddle.vision.models.mobilenet_v3_small](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/mobilenet_v3_small_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.mobilenet_v3_small.md) | +| 61 | [torchvision.models.vgg11_bn](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg11_bn.html) | [paddle.vision.models.vgg11](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg11_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg11_bn.md) | +| 62 | [torchvision.transforms.RandomAffine](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomAffine.html) | [paddle.vision.transforms.RandomAffine](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/RandomAffine_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.RandomAffine.md) | +| 63 | [torchvision.models.vgg16](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg16.html) | [paddle.vision.models.vgg16](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg16_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg16.md) | +| 64 | [torchvision.models.squeezenet1_0](https://pytorch.org/vision/main/models/generated/torchvision.models.squeezenet1_0.html) | [paddle.vision.models.squeezenet1_0](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/squeezenet1_0_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.squeezenet1_0.md) | +| 65 | [torchvision.transforms.RandomResizedCrop](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomResizedCrop.html) | [paddle.vision.transforms.RandomResizedCrop](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/RandomResizedCrop_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.RandomResizedCrop.md) | +| 66 | [torchvision.transforms.functional.perspective](https://pytorch.org/vision/main/generated/torchvision.transforms.functional.perspective.html#perspective) | [paddle.vision.transforms.perspective](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/transforms/perspective_cn.html#cn-api-paddle-vision-transforms-perspective) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.functional.perspective.md) | +| 67 | [torchvision.io.decode_jpeg](https://pytorch.org/vision/main/generated/torchvision.io.decode_jpeg.html) | [paddle.vision.ops.decode_jpeg](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/ops/decode_jpeg_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.io.decode_jpeg.md) | +| 68 | [torchvision.models.vgg19](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg19.html) | [paddle.vision.models.vgg19](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg19_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg19.md) | +| 69 | [torchvision.models.wide_resnet101_2](https://pytorch.org/vision/stable/models/generated/torchvision.models.wide_resnet101_2.html) | [paddle.vision.models.wide_resnet101_2](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/wide_resnet101_2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.wide_resnet101_2.md) | +| 70 | [torchvision.models.shufflenet_v2_x1_5](https://pytorch.org/vision/main/models/generated/torchvision.models.shufflenet_v2_x1_5.html) | [paddle.vision.models.shufflenet_v2_x1_5](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/shufflenet_v2_x1_5_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.shufflenet_v2_x1_5.md) | +| 71 | [torchvision.transforms.Resize](https://pytorch.org/vision/stable/generated/torchvision.transforms.Resize.html#torchvision.transforms.Resize) | [paddle.vision.transforms.Resize](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/Resize__upper_cn.html#resize) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.Resize.md) | +| 72 | [torchvision.models.vgg13_bn](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg13_bn.html) | [paddle.vision.models.vgg13](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg13_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg13_bn.md) | +| 73 | [torchvision.models.densenet201](https://pytorch.org/vision/main/models/generated/torchvision.models.densenet201.html) | [paddle.vision.models.densenet201](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/densenet201_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.densenet201.md) | +| 74 | [torchvision.models.shufflenet_v2_x1_0](https://pytorch.org/vision/main/models/generated/torchvision.models.shufflenet_v2_x1_0.html) | [paddle.vision.models.shufflenet_v2_x1_0](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/shufflenet_v2_x1_0_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.shufflenet_v2_x1_0.md) | +| 75 | [torchvision.models.resnet101](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet101.html) | [paddle.vision.models.resnet101](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet101_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet101.md) | +| 76 | [torchvision.models.vgg13](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg13.html) | [paddle.vision.models.vgg13](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg13_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg13.md) | +| 77 | [torchvision.transforms.RandomPerspective](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomPerspective.html?highlight=randomperspective#torchvision.transforms.RandomPerspective) | [paddle.vision.transforms.RandomPerspective](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/vision/transforms/RandomPerspective_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.transforms.RandomPerspective.md) | +| 78 | [torchvision.models.vgg11](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg11.html) | [paddle.vision.models.vgg11](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg11_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg11.md) | +| 79 | [torchvision.models.vgg19_bn](https://pytorch.org/vision/main/models/generated/torchvision.models.vgg19_bn.html) | [paddle.vision.models.vgg19](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/vgg19_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.vgg19_bn.md) | +| 80 | [torchvision.models.resnet34](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet34.html) | [paddle.vision.models.resnet34](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet34_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet34.md) | +| 81 | [torchvision.models.wide_resnet50_2](https://pytorch.org/vision/stable/models/generated/torchvision.models.wide_resnet50_2.html) | [paddle.vision.models.wide_resnet50_2](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/wide_resnet50_2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.wide_resnet50_2.md) | +| 82 | [torchvision.models.googlenet](https://pytorch.org/vision/main/models/generated/torchvision.models.googlenet.html) | [paddle.vision.models.googlenet](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/googlenet_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.googlenet.md) | +| 83 | [torchvision.models.resnext50_32x4d](https://pytorch.org/vision/main/models/generated/torchvision.models.resnext50_32x4d.html) | [paddle.vision.models.resnext50_32x4d](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnext50_32x4d_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnext50_32x4d.md) | +| 84 | [torchvision.models.resnet152](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet152.html) | [paddle.vision.models.resnet152](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/resnet152_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.resnet152.md) | +| 85 | [torchvision.models.mobilenet_v3_large](https://pytorch.org/vision/main/models/generated/torchvision.models.mobilenet_v3_large.html) | [paddle.vision.models.mobilenet_v3_large](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/mobilenet_v3_large_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.mobilenet_v3_large.md) | +| 86 | [torchvision.models.mobilenet_v2](https://pytorch.org/vision/stable/models/generated/torchvision.models.mobilenet_v2.html) | [paddle.vision.models.mobilenet_v2](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/mobilenet_v2_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.mobilenet_v2.md) | +| 87 | [torchvision.models.densenet121](https://pytorch.org/vision/main/models/generated/torchvision.models.densenet121.html) | [paddle.vision.models.densenet121](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/vision/models/densenet121_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/torchvision/torchvision.models.densenet121.md) | ## 9. 返回参数类型不一致 **分类简介** -​此类 API 返回值的类型或结构不同 - - +​此类 API 返回值的类型或结构不同。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| @@ -1632,37 +1630,187 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) ## 10. 组合替代实现 **分类简介** -此类功能在 PaddlePaddle 中没有直接对应的单一 API,需要通过多个 PaddlePaddle API 组合来实现 - - +此类功能在 PaddlePaddle 中没有直接对应的单一 API,需要通过多个 PaddlePaddle API 组合来实现。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| -| 1 | [torch.Tensor.histogram](https://pytorch.org/docs/stable/generated/torch.Tensor.histogram.html#torch.Tensor.histogram) | [paddle.Tensor.histogram](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#histogram-bins-100-min-0-max-0) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.histogram.md) | -| 2 | [torch.Tensor.requires_grad_](https://pytorch.org/docs/stable/generated/torch.Tensor.requires_grad_.html?highlight=requires_grad_#torch.Tensor.requires_grad_) | [paddle.Tensor.stop_gradient](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#stop-gradient) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.requires_grad_.md) | -| 3 | [torch.optim.lr_scheduler.LambdaLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.LambdaLR.html) | [paddle.optimizer.lr.LambdaDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/LambdaDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.LambdaLR.md) | -| 4 | [torch.optim.lr_scheduler.MultiplicativeLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.MultiplicativeLR.html) | [paddle.optimizer.lr.MultiplicativeDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/MultiplicativeDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.MultiplicativeLR.md) | -| 5 | [torch.optim.lr_scheduler.CyclicLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.CyclicLR.html) | [paddle.optimizer.lr.CyclicLR](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/CyclicLR_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.CyclicLR.md) | -| 6 | [torch.optim.lr_scheduler.ReduceLROnPlateau](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.ReduceLROnPlateau.html) | [paddle.optimizer.lr.ReduceOnPlateau](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/ReduceOnPlateau_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.ReduceLROnPlateau.md) | -| 7 | [torch.optim.lr_scheduler.ConstantLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.ConstantLR.html) | [paddle.optimizer.lr.PiecewiseDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/PiecewiseDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.ConstantLR.md) | -| 8 | [torch.optim.lr_scheduler.CosineAnnealingLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.CosineAnnealingLR.html) | [paddle.optimizer.lr.CosineAnnealingDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/CosineAnnealingDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.CosineAnnealingLR.md) | -| 9 | [torch.optim.lr_scheduler.CosineAnnealingWarmRestarts](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.CosineAnnealingWarmRestarts.html) | [paddle.optimizer.lr.CosineAnnealingWarmRestarts](https://github.com/PaddlePaddle/Paddle/blob/d6ea911bd1bfda5604807eeb18318e71b395ac58/python/paddle/optimizer/lr.py#L2371) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.CosineAnnealingWarmRestarts.md) | -| 10 | [torch.optim.lr_scheduler.LRScheduler](https://docs.pytorch.org/docs/2.7/generated/torch.optim.lr_scheduler.LRScheduler.html#torch.optim.lr_scheduler.LRScheduler) | [paddle.optimizer.lr.LRScheduler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/LRScheduler_cn.html#lrscheduler) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.LRScheduler.md) | -| 11 | [torch.optim.lr_scheduler.StepLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.StepLR.html) | [paddle.optimizer.lr.StepDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/StepDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.StepLR.md) | -| 12 | [torch.optim.lr_scheduler.MultiStepLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.MultiStepLR.html) | [paddle.optimizer.lr.MultiStepDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/MultiStepDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.MultiStepLR.md) | -| 13 | [torch.optim.lr_scheduler.ExponentialLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.ExponentialLR.html) | [paddle.optimizer.lr.ExponentialDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/ExponentialDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.ExponentialLR.md) | -| 14 | [torch.optim.lr_scheduler.OneCycleLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.OneCycleLR.html) | [paddle.optimizer.lr.OneCycleLR](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/OneCycleLR_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.OneCycleLR.md) | -| 15 | [torch.optim.lr_scheduler.LinearLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.LinearLR.html) | [paddle.optimizer.lr.LinearLR](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/LinearLR_cn.html#linearlr) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.LinearLR.md) | -| 16 | [torch.histogram](https://pytorch.org/docs/stable/generated/torch.histogram.html#torch.histogram) | [paddle.histogram](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/histogram_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.histogram.md) | -| 17 | [torch.cuda.is_available](https://pytorch.org/docs/stable/generated/torch.cuda.is_available.html#torch-cuda-is-available) | [paddle.device.cuda.device_count](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/device_count_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.is_available.md) | -| 18 | [torch.nn.modules.module.register_module_forward_pre_hook](https://pytorch.org/docs/stable/generated/torch.nn.modules.module.register_module_forward_pre_hook.html) | [paddle.nn.Layer.register_forward_pre_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-forward-pre-hook-hook) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.modules.module.register_module_forward_pre_hook.md) | -| 19 | [torch.nn.modules.module.register_module_forward_hook](https://pytorch.org/docs/stable/generated/torch.nn.modules.module.register_module_forward_hook.html) | [paddle.nn.Layer.register_forward_post_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-forward-post-hook-hook) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.modules.module.register_module_forward_hook.md) | -| 20 | [transformers.PreTrainedModel](https://hf-mirror.com/docs/transformers/v4.42.0/en/main_classes/model#transformers.PreTrainedModel) | [paddlenlp.transformers.PreTrainedModel](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/transformers/model_utils.py#L843) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.PreTrainedModel.md) | +| 1 | [torch.nn.functional.softmin](https://pytorch.org/docs/stable/generated/torch.nn.functional.softmin.html#torch.nn.functional.softmin) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/functional/torch.nn.functional.softmin.md) | +| 2 | [torch.nn.functional._Reduction.get_enum](https://github.com/pytorch/pytorch/blob/3045b16488f14c9d941d33d63417e6ea52fb2544/torch/nn/_reduction.py#L7) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/functional/torch.nn.functional._Reduction.get_enum.md) | +| 3 | [torch.Tensor.select](https://pytorch.org/docs/stable/generated/torch.Tensor.select.html?highlight=select#torch.Tensor.select) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.select.md) | +| 4 | [torch.Tensor.dim_order](https://pytorch.org/docs/stable/generated/torch.Tensor.dim_order.html?highlight=dim_order#torch.Tensor.dim_order) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.dim_order.md) | +| 5 | [torch.Tensor.is_signed](https://pytorch.org/docs/stable/generated/torch.Tensor.is_signed.html#torch.Tensor.is_signed) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.is_signed.md) | +| 6 | [torch.Tensor.addcdiv](https://pytorch.org/docs/stable/generated/torch.Tensor.addcdiv.html#torch.Tensor.addcdiv) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addcdiv.md) | +| 7 | [torch.Tensor.addcmul_](https://pytorch.org/docs/stable/generated/torch.Tensor.addcmul_.html#torch-tensor-addcmul) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addcmul_.md) | +| 8 | [torch.Tensor.narrow_copy](https://pytorch.org/docs/stable/generated/torch.Tensor.narrow_copy.html#torch.Tensor.narrow_copy) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.narrow_copy.md) | +| 9 | [torch.Tensor.addmv](https://pytorch.org/docs/stable/generated/torch.Tensor.addmv.html#torch.Tensor.addmv) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addmv.md) | +| 10 | [torch.Tensor.erfc](https://pytorch.org/docs/stable/generated/torch.Tensor.erfc.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.erfc.md) | +| 11 | [torch.Tensor.addbmm](https://pytorch.org/docs/stable/generated/torch.Tensor.addbmm.html#torch.Tensor.addbmm) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addbmm.md) | +| 12 | [torch.Tensor.xlogy_](https://pytorch.org/docs/stable/generated/torch.Tensor.xlogy_.html#torch.Tensor.xlogy_) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.xlogy_.md) | +| 13 | [torch.Tensor.aminmax](https://pytorch.org/docs/stable/generated/torch.Tensor.aminmax.html#torch.Tensor.aminmax) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.aminmax.md) | +| 14 | [torch.Tensor.mH](https://pytorch.org/docs/stable/tensors.html?#torch.Tensor.mH) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.mH.md) | +| 15 | [torch.Tensor.xlogy](https://pytorch.org/docs/stable/generated/torch.Tensor.xlogy.html#torch.Tensor.xlogy) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.xlogy.md) | +| 16 | [torch.Tensor.histogram](https://pytorch.org/docs/stable/generated/torch.Tensor.histogram.html#torch.Tensor.histogram) | [paddle.Tensor.histogram](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#histogram-bins-100-min-0-max-0) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.histogram.md) | +| 17 | [torch.Tensor.addr](https://pytorch.org/docs/stable/generated/torch.Tensor.addr.html#torch.Tensor.addr) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addr.md) | +| 18 | [torch.Tensor.reshape_as](https://pytorch.org/docs/stable/generated/torch.Tensor.reshape_as.html#torch.Tensor.reshape_as) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.reshape_as.md) | +| 19 | [torch.Tensor.float_power_](https://pytorch.org/docs/stable/generated/torch.Tensor.float_power_.html#torch.Tensor.float_power_) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.float_power_.md) | +| 20 | [torch.Tensor.addr_](https://pytorch.org/docs/stable/generated/torch.Tensor.addr_.html#torch.Tensor.addr_) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addr_.md) | +| 21 | [torch.Tensor.erfc_](https://pytorch.org/docs/stable/generated/torch.Tensor.erfc_.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.erfc_.md) | +| 22 | [torch.Tensor.addmv_](https://pytorch.org/docs/stable/generated/torch.Tensor.addmv_.html#torch.Tensor.addmv_) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addmv_.md) | +| 23 | [torch.Tensor.float_power](https://pytorch.org/docs/stable/generated/torch.Tensor.float_power.html#torch.Tensor.float_power) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.float_power.md) | +| 24 | [torch.Tensor.nbytes](https://pytorch.org/docs/stable/generated/torch.Tensor.nbytes.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.nbytes.md) | +| 25 | [torch.Tensor.adjoint](https://pytorch.org/docs/stable/generated/torch.Tensor.adjoint.html#torch.Tensor.adjoint) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.adjoint.md) | +| 26 | [torch.Tensor.addbmm_](https://pytorch.org/docs/stable/generated/torch.Tensor.addbmm_.html#torch.Tensor.addbmm_) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addbmm_.md) | +| 27 | [torch.Tensor.requires_grad_](https://pytorch.org/docs/stable/generated/torch.Tensor.requires_grad_.html?highlight=requires_grad_#torch.Tensor.requires_grad_) | [paddle.Tensor.stop_gradient](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/Tensor_cn.html#stop-gradient) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.requires_grad_.md) | +| 28 | [torch.Tensor.resize_as_](https://pytorch.org/docs/stable/generated/torch.Tensor.resize_as_.html?highlight=resize_as#torch.Tensor.resize_as_) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.resize_as_.md) | +| 29 | [torch.Tensor.logdet](https://pytorch.org/docs/stable/generated/torch.Tensor.logdet.html#torch.Tensor.logdet) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.logdet.md) | +| 30 | [torch.Tensor.logaddexp2](https://pytorch.org/docs/stable/generated/torch.Tensor.logaddexp2.html#torch.Tensor.logaddexp2) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.logaddexp2.md) | +| 31 | [torch.Tensor.addcmul](https://pytorch.org/docs/stable/generated/torch.Tensor.addcmul.html#torch.Tensor.addcmul) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addcmul.md) | +| 32 | [torch.Tensor.index_copy_](https://pytorch.org/docs/stable/generated/torch.Tensor.index_copy_.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.index_copy_.md) | +| 33 | [torch.Tensor.H](https://pytorch.org/docs/stable/tensors.html?#torch.Tensor.H) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.H.md) | +| 34 | [torch.Tensor.addcdiv_](https://pytorch.org/docs/stable/generated/torch.Tensor.addcdiv_.html#torch.Tensor.addcdiv_) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.addcdiv_.md) | +| 35 | [torch.linalg.lu](https://pytorch.org/docs/stable/generated/torch.linalg.lu.html?highlight=torch+linalg+lu#torch.linalg.lu) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/linalg/torch.linalg.lu.md) | +| 36 | os.environ.get | - | - | +| 37 | [torch.special.exp2](https://pytorch.org/docs/stable/special.html#torch.special.exp2) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.exp2.md) | +| 38 | setuptools.setup | - | - | +| 39 | [torch.testing.make_tensor](https://pytorch.org/docs/stable/testing.html#torch.testing.make_tensor) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.testing.make_tensor.md) | +| 40 | [torch.testing.assert_close](https://pytorch.org/docs/stable/testing.html?highlight=assert_close#torch.testing.assert_close) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.testing.assert_close.md) | +| 41 | [torch.backends.cudnn.is_available](https://pytorch.org/docs/stable/backends.html?highlight=torch+backends+cudnn+is_available#torch.backends.cudnn.is_available) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.backends.cudnn.is_available.md) | +| 42 | [torch.special.xlogy](https://pytorch.org/docs/stable/special.html#torch.special.xlogy) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.xlogy.md) | +| 43 | [torch.special.expit](https://pytorch.org/docs/stable/special.html#torch.special.expit) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.expit.md) | +| 44 | [torch.special.ndtr](https://pytorch.org/docs/stable/special.html#torch.special.ndtr) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.ndtr.md) | +| 45 | [torch.special.xlog1py](https://pytorch.org/docs/stable/special.html#torch.special.xlog1py) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.xlog1py.md) | +| 46 | [torch.special.erfc](https://pytorch.org/docs/stable/special.html#torch.special.erfc) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.erfc.md) | +| 47 | [torch.testing.assert_allclose](https://pytorch.org/docs/stable/testing.html?highlight=torch+testing+assert_allclose#torch.testing.assert_allclose) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.testing.assert_allclose.md) | +| 48 | [torch.special.erfcx](https://pytorch.org/docs/stable/special.html#torch.special.erfcx) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.erfcx.md) | +| 49 | [torch.special.ndtri](https://pytorch.org/docs/stable/special.html#torch.special.ndtri) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/others/torch.special.ndtri.md) | +| 50 | [torch.optim.lr_scheduler.LambdaLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.LambdaLR.html) | [paddle.optimizer.lr.LambdaDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/LambdaDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.LambdaLR.md) | +| 51 | [torch.optim.lr_scheduler.MultiplicativeLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.MultiplicativeLR.html) | [paddle.optimizer.lr.MultiplicativeDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/MultiplicativeDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.MultiplicativeLR.md) | +| 52 | [torch.optim.lr_scheduler.CyclicLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.CyclicLR.html) | [paddle.optimizer.lr.CyclicLR](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/CyclicLR_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.CyclicLR.md) | +| 53 | [torch.optim.lr_scheduler.ReduceLROnPlateau](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.ReduceLROnPlateau.html) | [paddle.optimizer.lr.ReduceOnPlateau](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/ReduceOnPlateau_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.ReduceLROnPlateau.md) | +| 54 | [torch.optim.lr_scheduler.ConstantLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.ConstantLR.html) | [paddle.optimizer.lr.PiecewiseDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/PiecewiseDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.ConstantLR.md) | +| 55 | [torch.optim.lr_scheduler.CosineAnnealingLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.CosineAnnealingLR.html) | [paddle.optimizer.lr.CosineAnnealingDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/CosineAnnealingDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.CosineAnnealingLR.md) | +| 56 | [torch.optim.lr_scheduler.CosineAnnealingWarmRestarts](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.CosineAnnealingWarmRestarts.html) | [paddle.optimizer.lr.CosineAnnealingWarmRestarts](https://github.com/PaddlePaddle/Paddle/blob/d6ea911bd1bfda5604807eeb18318e71b395ac58/python/paddle/optimizer/lr.py#L2371) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.CosineAnnealingWarmRestarts.md) | +| 57 | [torch.optim.lr_scheduler.LRScheduler](https://docs.pytorch.org/docs/2.7/generated/torch.optim.lr_scheduler.LRScheduler.html#torch.optim.lr_scheduler.LRScheduler) | [paddle.optimizer.lr.LRScheduler](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/LRScheduler_cn.html#lrscheduler) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.LRScheduler.md) | +| 58 | [torch.optim.lr_scheduler.StepLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.StepLR.html) | [paddle.optimizer.lr.StepDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/StepDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.StepLR.md) | +| 59 | [torch.optim.lr_scheduler.MultiStepLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.MultiStepLR.html) | [paddle.optimizer.lr.MultiStepDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/MultiStepDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.MultiStepLR.md) | +| 60 | [torch.optim.lr_scheduler.ExponentialLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.ExponentialLR.html) | [paddle.optimizer.lr.ExponentialDecay](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/ExponentialDecay_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.ExponentialLR.md) | +| 61 | [torch.optim.lr_scheduler.OneCycleLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.OneCycleLR.html) | [paddle.optimizer.lr.OneCycleLR](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/OneCycleLR_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.OneCycleLR.md) | +| 62 | [torch.optim.lr_scheduler.LinearLR](https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.LinearLR.html) | [paddle.optimizer.lr.LinearLR](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/optimizer/lr/LinearLR_cn.html#linearlr) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/optimizer/torch.optim.lr_scheduler.LinearLR.md) | +| 63 | torch.\_foreach_round_ | - | - | +| 64 | [torch.Tensor.is_pinned](https://pytorch.org/docs/stable/generated/torch.Tensor.is_pinned.html?highlight=is_pinned#torch.Tensor.is_pinned) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.is_pinned.md) | +| 65 | [torch.aminmax](https://pytorch.org/docs/stable/generated/torch.aminmax.html#torch.aminmax) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.aminmax.md) | +| 66 | [torch.seed](https://pytorch.org/docs/stable/generated/torch.seed.html#torch.seed) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.seed.md) | +| 67 | torch.\_foreach_ceil_ | - | - | +| 68 | torch.\_foreach_frac_ | - | - | +| 69 | torch.\_foreach_floor | - | - | +| 70 | [torch.set_num_interop_threads](https://pytorch.org/docs/stable/generated/torch.set_num_interop_threads.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.set_num_interop_threads.md) | +| 71 | [torch.logdet](https://pytorch.org/docs/stable/generated/torch.logdet.html#torch.logdet) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.logdet.md) | +| 72 | torch.\_foreach_tan | - | - | +| 73 | torch.\_foreach_ceil | - | - | +| 74 | torch.\_foreach_atan_ | - | - | +| 75 | [torch.narrow_copy](https://pytorch.org/docs/stable/generated/torch.narrow_copy.html#torch.narrow_copy) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.narrow_copy.md) | +| 76 | torch.\_foreach_log | - | - | +| 77 | torch.\_foreach_sin | - | - | +| 78 | [torch.frombuffer](https://pytorch.org/docs/stable/generated/torch.frombuffer.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.frombuffer.md) | +| 79 | [torch.histogram](https://pytorch.org/docs/stable/generated/torch.histogram.html#torch.histogram) | [paddle.histogram](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/histogram_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.histogram.md) | +| 80 | torch.\_foreach_log10 | - | - | +| 81 | torch.\_foreach_cos | - | - | +| 82 | [torch.addcdiv](https://pytorch.org/docs/stable/generated/torch.addcdiv.html#torch.addcdiv) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.addcdiv.md) | +| 83 | torch.\_foreach_erf_ | - | - | +| 84 | [torch.var_mean](https://pytorch.org/docs/stable/generated/torch.var_mean.html?highlight=var_mean#torch.var_mean) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.var_mean.md) | +| 85 | [torch.multiprocessing.cpu_count](https://github.com/pytorch/pytorch/blob/main/torch/multiprocessing/__init__.py) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.multiprocessing.cpu_count.md) | +| 86 | torch.\_foreach_sinh_ | - | - | +| 87 | [torch.chain_matmul](https://pytorch.org/docs/stable/generated/torch.chain_matmul.html?highlight=chain_matmul#torch.chain_matmul) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.chain_matmul.md) | +| 88 | [torch.get_num_threads](https://pytorch.org/docs/stable/generated/torch.get_num_threads.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.get_num_threads.md) | +| 89 | [torch.set_num_threads](https://pytorch.org/docs/stable/generated/torch.set_num_threads.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.set_num_threads.md) | +| 90 | [torch.adjoint](https://pytorch.org/docs/stable/generated/torch.adjoint.html#torch.adjoint) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.adjoint.md) | +| 91 | torch.\_foreach_expm1_ | - | - | +| 92 | [torch.std_mean](https://pytorch.org/docs/stable/generated/torch.std_mean.html?highlight=std_mean#torch.std_mean) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.std_mean.md) | +| 93 | [torch.addcmul](https://pytorch.org/docs/stable/generated/torch.addcmul.html#torch.addcmul) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.addcmul.md) | +| 94 | torch.\_foreach_acos_ | - | - | +| 95 | torch.\_foreach_reciprocal | - | - | +| 96 | [torch.addmv](https://pytorch.org/docs/stable/generated/torch.addmv.html?highlight=addmv#torch.addmv) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.addmv.md) | +| 97 | torch.\_foreach_sigmoid | - | - | +| 98 | torch.\_foreach_exp | - | - | +| 99 | [torch.Generator](https://pytorch.org/docs/stable/generated/torch.Generator.html#generator) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.Generator.md) | +| 100 | [torch.inference_mode](https://pytorch.org/docs/stable/generated/torch.inference_mode.html#torch.inference_mode) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.inference_mode.md) | +| 101 | [torch._assert](https://pytorch.org/docs/stable/generated/torch._assert.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch._assert.md) | +| 102 | torch.\_foreach_cosh | - | - | +| 103 | torch.\_foreach_log2 | - | - | +| 104 | torch.\_foreach_asin | - | - | +| 105 | [torch.autograd.Variable](https://pytorch.org/docs/stable/autograd.html#variable-deprecated) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.autograd.Variable.md) | +| 106 | [torch.device](https://pytorch.org/docs/stable/tensor_attributes.html#torch-device) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.device.md) | +| 107 | torch.\_foreach_erf | - | - | +| 108 | torch.\_foreach_cosh_ | - | - | +| 109 | torch.\_foreach_log1p_ | - | - | +| 110 | torch.\_foreach_sqrt | - | - | +| 111 | [torch.detach](https://pytorch.org/docs/stable/autograd.html#variable-deprecated) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.detach.md) | +| 112 | torch.\_foreach_acos | - | - | +| 113 | [torch.index_copy](https://pytorch.org/docs/stable/generated/torch.index_copy.html#torch.index_copy) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.index_copy.md) | +| 114 | torch.\_foreach_lgamma_ | - | - | +| 115 | torch.\_foreach_floor_ | - | - | +| 116 | torch.\_foreach_sqrt_ | - | - | +| 117 | torch.\_foreach_zero_ | - | - | +| 118 | torch.\_foreach_erfc | - | - | +| 119 | torch.\_foreach_abs | - | - | +| 120 | torch.\_foreach_cos_ | - | - | +| 121 | [torch.addr](https://pytorch.org/docs/stable/generated/torch.addr.html?highlight=addr#torch.addr) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.addr.md) | +| 122 | torch.\_foreach_sin_ | - | - | +| 123 | [torch.addbmm](https://pytorch.org/docs/stable/generated/torch.addbmm.html#torch.addbmm) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.addbmm.md) | +| 124 | torch.\_foreach_exp_ | - | - | +| 125 | [torch.initial_seed](https://pytorch.org/docs/stable/generated/torch.initial_seed.html?highlight=initial_seed) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.initial_seed.md) | +| 126 | torch.\_foreach_neg_ | - | - | +| 127 | [torch.can_cast](https://pytorch.org/docs/stable/generated/torch.can_cast.html#torch-can-cast) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.can_cast.md) | +| 128 | torch.\_foreach_asin_ | - | - | +| 129 | torch.\_foreach_abs_ | - | - | +| 130 | torch.\_foreach_atan | - | - | +| 131 | torch.\_foreach_trunc | - | - | +| 132 | torch.\_foreach_sinh | - | - | +| 133 | torch.\_foreach_sigmoid_ | - | - | +| 134 | torch.\_foreach_frac | - | - | +| 135 | torch.\_foreach_lgamma | - | - | +| 136 | torch.\_foreach_log2_ | - | - | +| 137 | torch.\_foreach_neg | - | - | +| 138 | [torch.select](https://pytorch.org/docs/stable/generated/torch.select.html#torch.select) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.select.md) | +| 139 | [torch.logaddexp2](https://pytorch.org/docs/stable/generated/torch.logaddexp2.html#torch.logaddexp2) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.logaddexp2.md) | +| 140 | torch.\_foreach_log1p | - | - | +| 141 | [torch.is_nonzero](https://pytorch.org/docs/stable/generated/torch.is_nonzero.html#torch.is_nonzero) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.is_nonzero.md) | +| 142 | torch.\_foreach_tan_ | - | - | +| 143 | torch.\_foreach_log10_ | - | - | +| 144 | torch.\_foreach_trunc_ | - | - | +| 145 | [torch.get_num_interop_threads](https://pytorch.org/docs/stable/generated/torch.get_num_interop_threads.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.get_num_interop_threads.md) | +| 146 | torch.\_foreach_log_ | - | - | +| 147 | torch.\_foreach_erfc_ | - | - | +| 148 | torch.\_foreach_expm1 | - | - | +| 149 | torch.\_foreach_round | - | - | +| 150 | torch.\_foreach_reciprocal_ | - | - | +| 151 | [torch.float_power](https://pytorch.org/docs/stable/generated/torch.float_power.html#torch-float-power) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/torch/torch.float_power.md) | +| 152 | [torch.cuda.set_per_process_memory_fraction](https://pytorch.org/docs/stable/generated/torch.cuda.set_per_process_memory_fraction.html) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.set_per_process_memory_fraction.md) | +| 153 | [torch.cuda.initial_seed](https://pytorch.org/docs/stable/generated/torch.cuda.initial_seed.html?highlight=torch+cuda+initial_seed#torch.cuda.initial_seed) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.initial_seed.md) | +| 154 | [torch.cuda.is_available](https://pytorch.org/docs/stable/generated/torch.cuda.is_available.html#torch-cuda-is-available) | [paddle.device.cuda.device_count](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/device/cuda/device_count_cn.html) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/cuda/torch.cuda.is_available.md) | +| 155 | [torch.distributed.Backend](https://pytorch.org/docs/stable/distributed.html#torch.distributed.Backend) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributed/torch.distributed.Backend.md) | +| 156 | [torch.nn.modules.module.register_module_forward_pre_hook](https://pytorch.org/docs/stable/generated/torch.nn.modules.module.register_module_forward_pre_hook.html) | [paddle.nn.Layer.register_forward_pre_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-forward-pre-hook-hook) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.modules.module.register_module_forward_pre_hook.md) | +| 157 | [torch.nn.Module.get_buffer](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.get_buffer) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.get_buffer.md) | +| 158 | [torch.nn.modules.utils._ntuple](https://github.com/pytorch/pytorch/blob/1f4d4d3b7836d38d936a21665e6b2ab0b39d7092/torch/nn/modules/utils.py#L8) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.modules.utils._ntuple.md) | +| 159 | [torch.nn.Softmin](https://pytorch.org/docs/stable/generated/torch.nn.Softmin.html#softmin) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Softmin.md) | +| 160 | [torch.nn.Module.get_parameter](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.get_parameter) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.get_parameter.md) | +| 161 | [torch.nn.Module.get_submodule](https://pytorch.org/docs/stable/generated/torch.nn.Module.html#torch.nn.Module.get_submodule) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.Module.get_submodule.md) | +| 162 | [torch.nn.modules.module.register_module_forward_hook](https://pytorch.org/docs/stable/generated/torch.nn.modules.module.register_module_forward_hook.html) | [paddle.nn.Layer.register_forward_post_hook](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/api/paddle/nn/Layer_cn.html#register-forward-post-hook-hook) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.modules.module.register_module_forward_hook.md) | +| 163 | [torch.nn.modules.utils._pair](https://github.com/pytorch/pytorch/blob/1f4d4d3b7836d38d936a21665e6b2ab0b39d7092/torch/nn/modules/utils.py#L198) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/nn/torch.nn.modules.utils._pair.md) | +| 164 | [torch.utils.set_module](https://docs.pytorch.org/docs/stable/generated/torch.utils.set_module.html#torch-utils-set-module) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/utils/torch.utils.set_module.md) | +| 165 | [torch.distributions.transforms.PositiveDefiniteTransform](https://pytorch.org/docs/stable/distributions.html#module-torch.distributions.transforms) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/distributions/torch.distributions.transforms.PositiveDefiniteTransform.md) | +| 166 | [flash_attn.layers.rotary.apply_rotary_emb_func](https://github.com/Dao-AILab/flash-attention/blob/c4b9015d74bd9f638c6fd574482accf4bbbd4197/flash_attn/layers/rotary.py#L128) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/flash_attn/flash_attn.layers.rotary.apply_rotary_emb_func.md) | +| 167 | [fairscale.nn.model_parallel.initialize.model_parallel_is_initialized](https://github.com/facebookresearch/fairscale/blob/164cc0f3170b4a3951dd84dda29c3e1504ac4d6e/fairscale/nn/model_parallel/initialize.py#L119) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/fairscale/fairscale.nn.model_parallel.initialize.model_parallel_is_initialized.md) | +| 168 | [fairscale.nn.model_parallel.initialize.initialize_model_parallel](https://github.com/facebookresearch/fairscale/blob/164cc0f3170b4a3951dd84dda29c3e1504ac4d6e/fairscale/nn/model_parallel/initialize.py#L41) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/fairscale/fairscale.nn.model_parallel.initialize.initialize_model_parallel.md) | +| 169 | [transformers.PreTrainedModel.get_head_mask](https://hf-mirror.com/docs/transformers/v4.42.0/en/main_classes/model#transformers.modeling_utils.ModuleUtilsMixin.get_head_mask) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.PreTrainedModel.get_head_mask.md) | +| 170 | [transformers.PreTrainedModel](https://hf-mirror.com/docs/transformers/v4.42.0/en/main_classes/model#transformers.PreTrainedModel) | [paddlenlp.transformers.PreTrainedModel](https://github.com/PaddlePaddle/PaddleNLP/blob/e336e78c338d2514ee6c937982ce5d8c960b85ff/paddlenlp/transformers/model_utils.py#L843) | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.PreTrainedModel.md) | +| 171 | [transformers.logging.get_logger](https://github.com/huggingface/transformers/blob/d625294d79341662784495551abdf45e6cb9372f/src/transformers/utils/logging.py#L147) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.logging.get_logger.md) | +| 172 | [transformers.PreTrainedModel.post_init](https://hf-mirror.com/docs/transformers/v4.42.0/en/main_classes/model#transformers.PreTrainedModel.post_init) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference_third_party/transformers/transformers.PreTrainedModel.post_init.md) | ## 11. 可删除 **分类简介** -此类 PyTorch API 在 PaddlePaddle 中可以直接删除 +此类 PyTorch API 在 PaddlePaddle 中可以直接删除。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| @@ -1671,9 +1819,8 @@ model = paddle.nn.Softplus(beta=0.5, threshold=15) ## 12. 功能缺失 **分类简介** -此类 PyTorch API 的功能在 PaddlePaddle 中暂时没有等效实现 +此类 PyTorch API 的功能在 PaddlePaddle 中暂时没有等效实现。 | 序号 | Pytorch 最新 release | Paddle develop | 备注 | |------|-------------------|---------------|------| - -新增中...... +| 1 | [torch.Tensor.int_repr](https://pytorch.org/docs/stable/generated/torch.Tensor.int_repr.html#torch.Tensor.int_repr) | - | [差异对比](https://github.com/Paddle/docs/tree/develop/docs/guides/model_convert/convert_from_pytorch/tools/../api_difference/Tensor/torch.Tensor.int_repr.md) |