Skip to content

Commit 4b45742

Browse files
committed
fix
1 parent cbe4988 commit 4b45742

File tree

6 files changed

+0
-12
lines changed

6 files changed

+0
-12
lines changed

docs/guides/model_convert/convert_from_pytorch/api_difference/torch_more_args/torch.nn.HingeEmbeddingLoss.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,3 @@ torch.nn.HingeEmbeddingLoss(weight=w, reduction='sum')
9898
# Paddle 写法
9999
paddle.nn.HingeEmbeddingLoss(weight=w, reduction='sum')
100100
```
101-
reduction = 'none'
102-
```

docs/guides/model_convert/convert_from_pytorch/api_difference/torch_more_args/torch.nn.MultiLabelMarginLoss.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,3 @@ torch.nn.MultiLabelMarginLoss(weight=w, reduction='sum')
9292
# Paddle 写法
9393
paddle.nn.MultiLabelMarginLoss(weight=w, reduction='sum')
9494
```
95-
reduction = 'none'
96-
```

docs/guides/model_convert/convert_from_pytorch/api_difference/torch_more_args/torch.nn.MultiLabelSoftMarginLoss.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,3 @@ torch.nn.MultiLabelSoftMarginLoss(weight=w, reduction='sum')
9393
# Paddle 写法
9494
paddle.nn.MultiLabelSoftMarginLoss(weight=w, reduction='sum')
9595
```
96-
reduction = 'none'
97-
```

docs/guides/model_convert/convert_from_pytorch/api_difference/torch_more_args/torch.nn.MultiMarginLoss.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,3 @@ torch.nn.MultiMarginLoss(weight=w, reduction='sum')
9595
# Paddle 写法
9696
paddle.nn.MultiMarginLoss(weight=w, reduction='sum')
9797
```
98-
reduction = 'none'
99-
```

docs/guides/model_convert/convert_from_pytorch/api_difference/torch_more_args/torch.nn.SoftMarginLoss.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,3 @@ torch.nn.TripletMarginLoss(weight=w, reduction='sum')
9595
# Paddle 写法
9696
paddle.nn.TripletMarginLoss(weight=w, reduction='sum')
9797
```
98-
reduction = 'none'
99-
```

docs/guides/model_convert/convert_from_pytorch/api_difference/torch_more_args/torch.nn.TripletMarginLoss.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,3 @@ torch.nn.TripletMarginLoss(weight=w, reduction='sum')
9696
# Paddle 写法
9797
paddle.nn.TripletMarginLoss(weight=w, reduction='sum')
9898
```
99-
reduction = 'none'
100-
```

0 commit comments

Comments
 (0)