(self, config)
| 72 | |
| 73 | class Encoder(nn.Module): |
| 74 | def __init__(self, config): |
| 75 | super().__init__() |
| 76 | self.config = config |
| 77 | self.blocks = self.init_blocks(config) |
| 78 | |
| 79 | def init_blocks(self, config): |
| 80 | blocks = [] |
nothing calls this directly
no test coverage detected