nnf_bilinear {torch} | R Documentation |
Bilinear
Description
Applies a bilinear transformation to the incoming data:
y = x_1 A x_2 + b
Usage
nnf_bilinear(input1, input2, weight, bias = NULL)
Arguments
input1 |
|
input2 |
|
weight |
|
bias |
|
Value
output (N, *, H_{out})
where H_{out}=\mbox{out\_features}
and all but the last dimension are the same shape as the input.
[Package torch version 0.13.0 Index]