(self, x)
| 15 | self.layers = torch.nn.Sequential(*fcs) |
| 16 | |
| 17 | def forward(self, x): |
| 18 | return self.layers(x) |
| 19 | |
| 20 | class NetConv(torch.nn.Module): |
| 21 | def __init__(self, in_nf, in_ef, out_nf, h1=16, h2=16): |
nothing calls this directly
no outgoing calls
no test coverage detected