(self, x)
| 54 | self.csv_path = f"{logger.find_save_path(experiment_id)}/metrics.csv" |
| 55 | |
| 56 | def forward(self, x): |
| 57 | return self.model(x) |
| 58 | |
| 59 | def training_step(self, batch, batch_idx): |
| 60 | inputs, targets = batch |
nothing calls this directly
no outgoing calls
no test coverage detected