Construct the nn.Modules. No need to return the models --- they will be used through `self.xxxx`.
(self)
| 1056 | @customer |
| 1057 | @abstractmethod |
| 1058 | def construct_models(self): |
| 1059 | """ |
| 1060 | Construct the nn.Modules. |
| 1061 | No need to return the models --- they will be used through `self.xxxx`. |
| 1062 | """ |
| 1063 | raise NotImplementedError |
| 1064 | |
| 1065 | @customer |
| 1066 | @abstractmethod |