Operates on a single batch of data from the training set and return loss.
(self, *args, **kwargs)
| 204 | raise NotImplementedError |
| 205 | |
| 206 | def training_step(self, *args, **kwargs): |
| 207 | """Operates on a single batch of data from the training set and return loss. |
| 208 | """ |
| 209 | raise NotImplementedError() |
| 210 | |
| 211 | def validation_step(self, *args, **kwargs): |
| 212 | """Operates on a single batch of data from the validation set. |