def test_vnet_shape(self, input_param, input_data, expected_shape): net = VNet(**input_param) net.eval() with torch.no_grad(): result = net.forward(input_data) self.assertEqual(result.shape, expected_shape)
def test_vnet_shape(self, input_param, input_shape, expected_shape): net = VNet(**input_param).to(device) net.eval() with torch.no_grad(): result = net.forward(torch.randn(input_shape).to(device)) self.assertEqual(result.shape, expected_shape)