(self, *args, **kwargs)
| 7 | |
| 8 | class MultiBlock(nn.Module): |
| 9 | def __init__(self, *args, **kwargs) -> None: |
| 10 | super().__init__(*args, **kwargs) |
| 11 | self.block_list = nn.ModuleList([]) |
| 12 | |
| 13 | def add_block(self, block): |
| 14 | self.block_list.append(block) |
nothing calls this directly
no outgoing calls
no test coverage detected