(self, *input, **kwargs)
| 239 | return self.__class__.__name__ |
| 240 | |
| 241 | def __call__(self, *input, **kwargs): |
| 242 | if self.training: |
| 243 | return self.train_one_batch(*input, **kwargs) |
| 244 | else: |
| 245 | return self.forward(*input, **kwargs) |
| 246 | |
| 247 | def save_states(self, fpath, aux_states={}): |
| 248 | """Save states. |
nothing calls this directly
no test coverage detected