Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

映射文档 No. 35 #5832

Merged
merged 11 commits into from
Apr 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## [torch 参数更多 ]torch.absolute

### [torch.absolute](https://pytorch.org/docs/stable/generated/torch.absolute.html?highlight=absolute#torch.absolute)
### [torch.absolute](https://pytorch.org/docs/1.13/generated/torch.absolute.html?highlight=absolute#torch.absolute)

```python
torch.absolute(input,
Expand All @@ -15,21 +15,24 @@ paddle.abs(x,
name=None)
```

其中 Pytorch 相比 Paddle 支持更多其他参数,具体如下:
Pytorch 相比 Paddle 支持更多其他参数,具体如下:

### 参数映射
| PyTorch | PaddlePaddle | 备注 |
| ------------- | ------------ | ------------------------------------------------------ |
| <font color='red'> input </font> | <font color='red'> x </font> | 输入的 Tensor ,仅参数名不同。 |
| <font color='red'> out </font> | - | 表示输出的 Tensor,PaddlePaddle 无此参数,需要进行转写。 |

| PyTorch | PaddlePaddle | 备注 |
| ------- | ------------ | -------------------------------------------------------- |
| input | x | 表示输入的 Tensor ,仅参数名不一致。 |
| out | - | 表示输出的 Tensor,PaddlePaddle 无此参数,需要进行转写。 |


### 转写示例

#### out:指定输出

```python
# Pytorch 写法
torch.absolute([-3, -5], out=y)
torch.absolute(torch.tensor([-3, -5]), out=y)

# Paddle 写法
paddle.assign(paddle.abs([-3, -5]), y)
paddle.assign(paddle.abs(paddle.to_tensor([-3, -5])), y)
```
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## [torch 参数更多 ]torch.acos

### [torch.acos](https://pytorch.org/docs/stable/generated/torch.acos.html?highlight=acos#torch.acos)
### [torch.acos](https://pytorch.org/docs/1.13/generated/torch.acos.html?highlight=acos#torch.acos)

```python
torch.acos(input,
Expand All @@ -15,21 +15,24 @@ paddle.acos(x,
name=None)
```

其中 Pytorch 相比 Paddle 支持更多其他参数,具体如下:
Pytorch 相比 Paddle 支持更多其他参数,具体如下:

### 参数映射
| PyTorch | PaddlePaddle | 备注 |
| ------------- | ------------ | ------------------------------------------------------ |
| <font color='red'> input </font> | <font color='red'> x </font> | 输入的 Tensor ,仅参数名不同。 |
| <font color='red'> out </font> | - | 表示输出的 Tensor,PaddlePaddle 无此参数,需要进行转写。 |

| PyTorch | PaddlePaddle | 备注 |
| ------- | :----------- | -------------------------------------------------------- |
| input | x | 表示输入的 Tensor ,仅参数名不一致。 |
| out | - | 表示输出的 Tensor,PaddlePaddle 无此参数,需要进行转写。 |

### 转写示例

#### out:指定输出

```python
# Pytorch 写法
torch.acos([3, 5], out=y)
torch.acos(torch.tensor([0.3348, -0.5889]), out=y)

# Paddle 写法
paddle.assign(paddle.acos([3, 5]), y)
paddle.assign(paddle.acos(paddle.to_tensor([0.3348, -0.5889])), y)

```
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## [torch 参数更多 ]torch.acosh

### [torch.acosh](https://pytorch.org/docs/1.13/generated/torch.acosh.html?highlight=acosh#torch.acosh)

```python
torch.acosh(input,
*,
out=None)
```

### [paddle.acosh](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/acosh_cn.html#acos)

```python
paddle.acosh(x,
name=None)
```

Pytorch 相比 Paddle 支持更多其他参数,具体如下:

### 参数映射

| PyTorch | PaddlePaddle | 备注 |
| ------- | ------------ | --------------------------------------------------------- |
| input | x | 表示输入的 Tensor ,仅参数名不一致。 |
| out | - | 表示输出的 Tensor ,PaddlePaddle 无此参数,需要进行转写。 |


### 转写示例

#### out:指定输出

```python
# Pytorch 写法
torch.acosh(torch.tensor([1.3192, 1.9915]), out=y)

# Paddle 写法
paddle.assign(paddle.acosh(paddle.to_tensor([1.3192, 1.9915])), y)
```
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## [torch 参数更多 ]torch.add

### [torch.add](https://pytorch.org/docs/stable/generated/torch.add.html?highlight=torch+add#torch.add)
### [torch.add](https://pytorch.org/docs/1.13/generated/torch.add.html?highlight=add#torch.add)

```python
torch.add(input,
Expand All @@ -18,32 +18,36 @@ paddle.add(x,
name=None)
```

其中 Pytorch 相比 Paddle 支持更多其他参数,具体如下:
Pytorch 相比 Paddle 支持更多其他参数,具体如下:

### 参数映射
| PyTorch | PaddlePaddle | 备注 |
| ------------- | ------------ | ------------------------------------------------------ |
| <font color='red'> input </font> | <font color='red'> x </font> | 输入的 Tensor ,仅参数名不同。 |
| <font color='red'> other </font> | <font color='red'> y </font> | 输入的 Tensor ,仅参数名不同。 |
| <font color='red'> alpha </font> | - | other 的乘数,PaddlePaddle 无此参数,需要进行转写。 |
| <font color='red'> out </font> | - | 表示输出的 Tensor,PaddlePaddle 无此参数,需要进行转写。 |

| PyTorch | PaddlePaddle | 备注 |
| ------- | ------------ | -------------------------------------------------------- |
| input | x | 表示输入的 Tensor ,仅参数名不一致。 |
| other | y | 表示输入的 Tensor ,仅参数名不一致。 |
| alpha | - | 表示 other 的乘数,PaddlePaddle 无此参数,需要进行转写。 |
| out | - | 表示输出的 Tensor,PaddlePaddle 无此参数,需要进行转写。 |


### 转写示例

#### alpha:other 的乘数

```python
# Pytorch 写法
torch.add([3, 5], [2, 3], alpha=2)
torch.add(torch.tensor([3, 5]), torch.tensor([2, 3]), alpha=2)

# Paddle 写法
paddle.add([3, 5], 2 * [2, 3])
paddle.add(paddle.to_tensor([3, 5]), 2 * paddle.to_tensor( [2, 3]))
```

#### out:指定输出

```python
# Pytorch 写法
torch.add([3, 5], [2, 3], out=y)
torch.add(torch.tensor([3, 5]), torch.tensor([2, 3]), out=y)

# Paddle 写法
paddle.assign(paddle.add([3, 5], [2, 3]), y)
paddle.assign(paddle.add(paddle.to_tensor([3, 5]), paddle.to_tensor([2, 3])), y)
```
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## [torch 参数更多 ]torch.arccos

### [torch.arccos](https://pytorch.org/docs/stable/generated/torch.arccos.html?highlight=arccos#torch.arccos)
### [torch.arccos](https://pytorch.org/docs/1.13/generated/torch.arccos.html?highlight=arccos#torch.arccos)

```python
torch.arccos(input,
Expand All @@ -15,21 +15,24 @@ paddle.acos(x,
name=None)
```

其中 Pytorch 相比 Paddle 支持更多其他参数,具体如下:
Pytorch 相比 Paddle 支持更多其他参数,具体如下:

### 参数映射
| PyTorch | PaddlePaddle | 备注 |
| ------------- | ------------ | ------------------------------------------------------ |
| <font color='red'>input</font> | <font color='red'>x</font> | 表示输入的 Tensor ,仅参数名不同。 |
| <font color='red'>out</font> | - | 表示输出的 Tensor ,PaddlePaddle 无此参数,需要转写。 |

| PyTorch | PaddlePaddle | 备注 |
| ------- | ------------ | --------------------------------------------------------- |
| input | x | 表示输入的 Tensor ,仅参数名不一致。 |
| out | - | 表示输出的 Tensor ,PaddlePaddle 无此参数,需要进行转写。 |


### 转写示例

#### out:指定输出

```python
# Pytorch 写法
torch.arccos([3, 5], out=y)
torch.arccos(torch.tensor([0.3348, -0.5889]), out=y)

# Paddle 写法
paddle.assign(paddle.acos([3, 5]), y)
paddle.assign(paddle.acos(paddle.to_tensor([0.3348, -0.5889])), y)
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## [torch 参数更多 ]torch.arccosh

### [torch.arccosh](https://pytorch.org/docs/1.13/generated/torch.arccosh.html?highlight=arccosh#torch.arccosh)

```python
torch.arccosh(input,
*,
out=None)
```

### [paddle.acosh](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/acosh_cn.html#acos)

```python
paddle.acosh(x,
name=None)
```

Pytorch 相比 Paddle 支持更多其他参数,具体如下:

### 参数映射

| PyTorch | PaddlePaddle | 备注 |
| ------- | ------------ | --------------------------------------------------------- |
| input | x | 表示输入的 Tensor ,仅参数名不一致。 |
| out | - | 表示输出的 Tensor ,PaddlePaddle 无此参数,需要进行转写。 |


### 转写示例

#### out:指定输出

```python
# Pytorch 写法
torch.arccosh(torch.tensor([1.3192, 1.9915]), out=y)

# Paddle 写法
paddle.assign(paddle.acosh(paddle.to_tensor([1.3192, 1.9915])), y)
```
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## [torch 参数更多 ]torch.load
### [torch.load](https://pytorch.org/docs/stable/generated/torch.load.html?highlight=load#torch.load)

### [torch.load](https://pytorch.org/docs/1.13/generated/torch.load.html?highlight=load#torch.load)

```python
torch.load(f,
Expand All @@ -17,16 +18,15 @@ paddle.load(path,
**configs)
```

其中 Pytorch 相比 Paddle 支持更多其他参数,具体如下:
### 参数映射
| PyTorch | PaddlePaddle | 备注 |
| ------------- | ------------ | ------------------------------------------------------ |
| f | path | 载入目标对象实例的路径/内存对象, 仅参数名不一致。 |
| map_location | - | 表示加载模型的位置,PaddlePaddle 无此参数。 |
| pickle_module | - | 表示用于 unpickling 元数据和对象的模块,PaddlePaddle 无此参数。 |
| weights_only | - | 指示 unpickler 是否应限制为仅加载张量、基元类型和字典,PaddlePaddle 无此参数。 |
| pickle_load_args| - | 传递给 pickle_module.load()和 pickle_mdule.Unpickler()的可选关键字参数,PaddlePaddle 无此参数。 |
Pytorch 相比 Paddle 支持更多其他参数,具体如下:

### 参数映射

### 转写示例
四个 torch 多支持的参数(map_location,pickle_modeule,weights_only,pickle_load_args),Paddle 暂无转写方式
| PyTorch | PaddlePaddle | 备注 |
| ---------------- | ------------ | ------------------------------------------------------------ |
| f | path | 载入目标对象实例的路径/内存对象, 仅参数名不一致。 |
| map_location | - | 表示如何重新映射存储位置,Paddle 暂无转写方式。 |
| pickle_module | - | 表示用于 unpickling 元数据和对象的模块,Paddle 暂无转写方式。 |
| weights_only | - | 指示 unpickler 是否应限制为仅加载张量、原始类型和字典,Paddle 暂无转写方式。 |
| pickle_load_args | - | 传递给 pickle_module.load()和 pickle_mdule.Unpickler()的可选关键字参数,Paddle 暂无转写方式。 |
| - | configs | 表示其他用于兼容的载入配置选项。PyTorch 无此参数, Paddle 保持默认即可。 |
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## [torch 参数更多 ]torch.randint
### [torch.randint](https://pytorch.org/docs/stable/generated/torch.randint.html?highlight=randint#torch.randint)
### [torch.randint](https://pytorch.org/docs/1.13/generated/torch.randint.html?highlight=randint#torch.randint)
```python
torch.randint(low=0,
high,
Expand All @@ -22,19 +22,19 @@ paddle.randint(low=0,
name=None)
```

其中 Pytorch 相比 Paddle 支持更多其他参数,具体如下:
Pytorch 相比 Paddle 支持更多其他参数,具体如下:
### 参数映射
| PyTorch | PaddlePaddle | 备注 |
| ------------- | ------------ | ------------------------------------------------------ |
| low | low | 表示生成的随机值范围的下限 |
| high | high | 表示生成的随机值范围的上限 |
| size | shape | 表示输出形状大小。 |
| <font color='red'>generator</font> | - | 用于采样的伪随机数生成器, Paddle 无此参数,一般对网络训练结果影响不大,可直接删除。 |
| <font color='red'> out </font> | - | 表示输出的 Tensor , Paddle 无此参数,需要进行转写。 |
| dtype | dtype | 表示输出 Tensor 的数据类型。 |
| <font color='red'> layout </font> | - | 表示布局方式, Paddle 无此参数,一般对网络训练结果影响不大,可直接删除。 |
| <font color='red'> device </font> | - | 表示 Tensor 存放设备位置,Paddle 无此参数,需要进行转写。 |
| <font color='red'> requires_grad </font> | - | 表示是否计算梯度, Paddle 无此参数,需要进行转写。 |
| low | low | 表示生成的随机值范围的下限(区间一般包含)。 |
| high | high | 表示生成的随机值范围的上限(区间一般不包含)。 |
| size | shape | 表示输出形状大小。 |
| generator | - | 用于采样的伪随机数生成器,Paddle 无此参数,一般对网络训练结果影响不大,可直接删除。 |
| out | - | 表示输出的 Tensor , Paddle 无此参数,需要进行转写。 |
| dtype | dtype | 表示数据类型。 |
| layout | - | 表示布局方式, Paddle 无此参数,一般对网络训练结果影响不大,可直接删除。 |
| device | - | 表示 Tensor 存放设备位置,Paddle 无此参数,需要进行转写。 |
| requires_grad | - | 表示是否计算梯度, Paddle 无此参数,需要进行转写。 |


### 转写示例
Expand All @@ -44,17 +44,17 @@ paddle.randint(low=0,
torch.randint(10, (2, 2), out=y)

# Paddle 写法
paddle.assign(paddle.randint(10, [2, 2]), y)
paddle.assign(paddle.randint(10, shape=[2, 2]), y)
```


#### requires_grad:是否需要求反向梯度,需要修改该 Tensor 的 stop_gradient 属性
#### requires_grad:是否求梯度
```python
# Pytorch 写法
x = torch.randint(10, (2, 2), requires_grad=True)

# Paddle 写法
x = paddle.randint(10, [2, 2])
x = paddle.randint(10, shape=[2, 2])
x.stop_gradient = False
```

Expand All @@ -64,6 +64,6 @@ x.stop_gradient = False
torch.randint(10, (2, 2), device=torch.device('cpu'))

# Paddle 写法
y = paddle.randint(10, [2, 2])
y = paddle.randint(10, shape=[2, 2])
y.cpu()
```
Loading