(self, batch, batch_idx)
| 25 | return self.allsplit_step("train", batch, batch_idx) |
| 26 | |
| 27 | def validation_step(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) |
nothing calls this directly
no test coverage detected