We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f813ffd commit 3730fefCopy full SHA for 3730fef
tests/models/test_arch_unet.py
@@ -50,7 +50,7 @@ def test_functional_unet(remote_sample: Callable) -> None:
50
pretrained = torch.load(pretrained_weights, map_location="cpu")
51
model.load_state_dict(pretrained)
52
output = model.infer_batch(model, batch, device=select_device(on_gpu=ON_GPU))
53
- _ = output["probabilities"][0]
+ _ = output[0]
54
55
# run untrained network to test for architecture
56
model = UNetModel(
0 commit comments