(self)
| 48 | self.assertEqual(result.shape, expected_shape) |
| 49 | |
| 50 | def test_script(self): |
| 51 | net = Quicknat(num_classes=1, num_channels=1) |
| 52 | test_data = torch.randn(16, 1, 32, 32) |
| 53 | test_script_save(net, test_data) |
| 54 | |
| 55 | |
| 56 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected