(self, inputs, disable=True, train=True, optimizer_idx=0)
| 484 | return dec |
| 485 | |
| 486 | def forward(self, inputs, disable=True, train=True, optimizer_idx=0): |
| 487 | if train: |
| 488 | return self.training_step(inputs, disable, optimizer_idx) |
| 489 | else: |
| 490 | return self.validation_step(inputs, disable) |
nothing calls this directly
no outgoing calls
no test coverage detected