(self, img)
| 33 | self.filter.weight = nn.Parameter(G, requires_grad=False) |
| 34 | |
| 35 | def forward(self, img): |
| 36 | x = self.filter(img) |
| 37 | return x |
| 38 | |
| 39 | if __name__ == "__main__": |
| 40 | laplacian = Laplacian() |
nothing calls this directly
no outgoing calls
no test coverage detected