(self, opt, module: nn.Module)
| 11 | |
| 12 | class BaseModel(nn.Module): |
| 13 | def __init__(self, opt, module: nn.Module): |
| 14 | super(BaseModel, self).__init__() |
| 15 | self.opt = opt |
| 16 | self.model = module |
| 17 | |
| 18 | def forward(self, *inputs, **kwargs): |
| 19 | outputs = self.model(*inputs, **kwargs) |
nothing calls this directly
no outgoing calls
no test coverage detected