(self, in_channels, out_channels)
| 22 | |
| 23 | class VNLinear(nn.Module): |
| 24 | def __init__(self, in_channels, out_channels): |
| 25 | super(VNLinear, self).__init__() |
| 26 | self.map_to_feat = nn.Linear(in_channels, out_channels, bias=False) |
| 27 | |
| 28 | def forward(self, x): |
| 29 | ''' |
no outgoing calls
no test coverage detected