Forward pass logic :return: Model output
(self, *input)
| 12 | self.logger = logging.getLogger(self.__class__.__name__) |
| 13 | |
| 14 | def forward(self, *input): |
| 15 | """ |
| 16 | Forward pass logic |
| 17 | |
| 18 | :return: Model output |
| 19 | """ |
| 20 | raise NotImplementedError |
| 21 | |
| 22 | def summary(self): |
| 23 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected