(self, input)
| 114 | self.bias = Parameter(torch.randn(1, 1)) |
| 115 | |
| 116 | def forward(self, input): |
| 117 | return ScipyConv2dFunction.apply(input, self.filter, self.bias) |
| 118 | |
| 119 | |
| 120 | ############################################################### |
nothing calls this directly
no outgoing calls
no test coverage detected