(self)
| 54 | self.log('val_loss', loss) |
| 55 | |
| 56 | def configure_optimizers(self): |
| 57 | return torch.optim.Adam(self.parameters(), lr=1e-2) |
| 58 | |
| 59 | class TestPytorchLightning(unittest.TestCase): |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected