(self, batch, batch_idx)
| 28 | return self.allsplit_step("val", batch, batch_idx) |
| 29 | |
| 30 | def test_step(self, batch, batch_idx): |
| 31 | outputs = self.allsplit_step("test", batch, batch_idx) |
| 32 | self.test_step_outputs.append(outputs) |
| 33 | return outputs |
| 34 | |
| 35 | def predict_step(self, batch, batch_idx): |
| 36 | return self.forward(batch) |
nothing calls this directly
no test coverage detected