(self)
| 136 | SegResNetDS2(spatial_dims=4) |
| 137 | |
| 138 | def test_script(self): |
| 139 | input_param, input_shape, _ = TEST_CASE_SEGRESNET_DS[0] |
| 140 | net = SegResNetDS(**input_param) |
| 141 | test_data = torch.randn(input_shape) |
| 142 | test_script_save(net, test_data) |
| 143 | |
| 144 | |
| 145 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected