| 9 | |
| 10 | |
| 11 | class AbstractEncoder(nn.Module): |
| 12 | def __init__(self): |
| 13 | super().__init__() |
| 14 | |
| 15 | def encode(self, *args, **kwargs): |
| 16 | raise NotImplementedError |
| 17 | |
| 18 | |
| 19 | class IdentityEncoder(AbstractEncoder): |
nothing calls this directly
no outgoing calls
no test coverage detected