Bilinear — PyTorch 1.10.1 documentation
pytorch.org › generated › torchBilinear — PyTorch 1.10.0 documentation Bilinear class torch.nn.Bilinear(in1_features, in2_features, out_features, bias=True, device=None, dtype=None) [source] Applies a bilinear transformation to the incoming data: y = x_1^T A x_2 + b y = x1T Ax2 +b Parameters in1_features – size of each first input sample
torch.nn.functional.bilinear — PyTorch 1.10.1 documentation
pytorch.org › torchLearn about PyTorch’s features and capabilities. Community. Join the PyTorch developer community to contribute, learn, and get your questions answered. Developer Resources. Find resources and get questions answered. Forums. A place to discuss PyTorch code, issues, install, research. Models (Beta) Discover, publish, and reuse pre-trained models
UpsamplingBilinear2d — PyTorch 1.10.1 documentation
pytorch.org › torchUpsamplingBilinear2d — PyTorch 1.10.0 documentation UpsamplingBilinear2d class torch.nn.UpsamplingBilinear2d(size=None, scale_factor=None) [source] Applies a 2D bilinear upsampling to an input signal composed of several input channels. To specify the scale, it takes either the size or the scale_factor as it’s constructor argument.