(self)
| 78 | SegResNet(spatial_dims=4) |
| 79 | |
| 80 | def test_script(self): |
| 81 | input_param, input_shape, expected_shape = TEST_CASE_SEGRESNET[0] |
| 82 | net = SegResNet(**input_param) |
| 83 | test_data = torch.randn(input_shape) |
| 84 | test_script_save(net, test_data) |
| 85 | |
| 86 | |
| 87 | class TestResNetVAE(unittest.TestCase): |
nothing calls this directly
no test coverage detected