freeze_bn and unfreeze_bn must appear in pairs
(self)
| 387 | |
| 388 | class Bn_Controller: |
| 389 | def __init__(self): |
| 390 | """ |
| 391 | freeze_bn and unfreeze_bn must appear in pairs |
| 392 | """ |
| 393 | self.backup = {} |
| 394 | |
| 395 | def freeze_bn(self, model): |
| 396 | assert self.backup == {} |
nothing calls this directly
no outgoing calls
no test coverage detected