Set the outputs of the model to None.
(self)
| 1270 | return out_dict |
| 1271 | |
| 1272 | def reset_outputs(self): |
| 1273 | """ |
| 1274 | Set the outputs of the model to None. |
| 1275 | """ |
| 1276 | for name in self.outputs_name: |
| 1277 | setattr(self, name, None) |
| 1278 | |
| 1279 | def reset_losses(self): |
| 1280 | """ |
no outgoing calls