本文簡要介紹python語言中 torch.nn.Bilinear
的用法。
用法:
class torch.nn.Bilinear(in1_features, in2_features, out_features, bias=True, device=None, dtype=None)
in1_features-每個第一個輸入樣本的大小
in2_features-每個第二個輸入樣本的大小
out_features-每個輸出樣本的大小
bias-如果設置為 False,該層將不會學習附加偏差。默認值:
True
~Bilinear.weight(torch.Tensor) -形狀為 的模塊的可學習權重。這些值從 初始化,其中
~Bilinear.bias-形狀為
bias
是True
,則從 初始化值,其中 的模塊的可學習偏差。如果
對輸入數據應用雙線性變換:
- 形狀:
輸入 1: 其中 和 表示任意數量的附加維度。除了輸入的最後一個維度之外的所有維度都應該相同。
輸入 2: 其中 。
輸出: 其中 和除最後一個維度之外的所有維度都與輸入的形狀相同。
例子:
>>> m = nn.Bilinear(20, 30, 40) >>> input1 = torch.randn(128, 20) >>> input2 = torch.randn(128, 30) >>> output = m(input1, input2) >>> print(output.size()) torch.Size([128, 40])
參數:
變量:
相關用法
- Python PyTorch Binomial用法及代碼示例
- Python PyTorch Bernoulli用法及代碼示例
- Python PyTorch BucketBatcher用法及代碼示例
- Python PyTorch BCELoss用法及代碼示例
- Python PyTorch BatchSampler用法及代碼示例
- Python PyTorch BatchNorm1d用法及代碼示例
- Python PyTorch BCEWithLogitsLoss用法及代碼示例
- Python PyTorch BatchNorm3d用法及代碼示例
- Python PyTorch Batcher用法及代碼示例
- Python PyTorch Beta用法及代碼示例
- Python PyTorch BatchNorm2d用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
- Python PyTorch vdot用法及代碼示例
- Python PyTorch ELU用法及代碼示例
- Python PyTorch ScaledDotProduct.__init__用法及代碼示例
- Python PyTorch gumbel_softmax用法及代碼示例
- Python PyTorch get_tokenizer用法及代碼示例
- Python PyTorch saved_tensors_hooks用法及代碼示例
- Python PyTorch positive用法及代碼示例
- Python PyTorch renorm用法及代碼示例
- Python PyTorch AvgPool2d用法及代碼示例
- Python PyTorch MaxUnpool3d用法及代碼示例
- Python PyTorch Tensor.unflatten用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nn.Bilinear。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。