(self, outs)
| 58 | return {'loss': loss} |
| 59 | |
| 60 | def training_epoch_end(self, outs): |
| 61 | self.log('train_acc_epoch', self.train_acc) |
| 62 | self.log('train_f1_epoch', self.train_f1) |
| 63 | |
| 64 | def validation_step(self, batch, batch_idx): |
| 65 | x, x_mask, y = batch |
nothing calls this directly
no outgoing calls
no test coverage detected