Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions tests/inferers/test_patch_inferer.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,17 +231,6 @@
TEST_CASE_ERROR_8 = [torch.zeros(2, 2), dict(splitter=None), ValueError]
# invalid inputs: split patches MetaTensor without location metadata
TEST_CASE_ERROR_9 = [MetaTensor(torch.zeros(2, 2)), dict(splitter=None), ValueError]
# merged_shape is not provided for the merger
TEST_CASE_ERROR_10 = [
[
(TENSOR_4x4[..., :2, :2], (0, 0)),
(TENSOR_4x4[..., :2, 2:], (0, 2)),
(TENSOR_4x4[..., 2:, :2], (2, 0)),
(TENSOR_4x4[..., 2:, 2:], (2, 2)),
],
dict(splitter=SlidingWindowSplitter(patch_size=(2, 2))),
ValueError,
]


class PatchInfererTests(unittest.TestCase):
Expand Down
Loading