(self, config)
| 100 | nn.Sequential and multiple outputs) |
| 101 | """ |
| 102 | def __init__(self, config): |
| 103 | super().__init__() |
| 104 | self.config = config |
| 105 | self.blocks = self.init_blocks(config) |
| 106 | |
| 107 | def init_blocks(self, config): |
| 108 | return ClosedLoopBlock(**config['blocks'][0]) |
nothing calls this directly
no test coverage detected