(self, *xs, **kwargs)
| 29 | self.module = model |
| 30 | |
| 31 | def forward(self, *xs, **kwargs): |
| 32 | return self.module(*xs, **kwargs) |
| 33 | |
| 34 | class NetworkFactory(object): |
| 35 | def __init__(self, db): |
nothing calls this directly
no outgoing calls
no test coverage detected