Skip to content
15 changes: 0 additions & 15 deletions tests/networks/nets/test_autoencoderkl.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,21 +99,6 @@
(1, 1, 16, 16),
(1, 4, 4, 4),
],
[
{
"spatial_dims": 2,
"in_channels": 1,
"out_channels": 1,
"channels": (4, 4, 4),
"latent_channels": 4,
"attention_levels": (False, False, False),
"num_res_blocks": 1,
"norm_num_groups": 4,
},
(1, 1, 16, 16),
(1, 1, 16, 16),
(1, 4, 4, 4),
],
[
{
"spatial_dims": 2,
Expand Down
17 changes: 0 additions & 17 deletions tests/networks/nets/test_spade_autoencoderkl.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,23 +99,6 @@
(1, 1, 16, 16),
(1, 4, 4, 4),
],
[
{
"spatial_dims": 2,
"label_nc": 3,
"in_channels": 1,
"out_channels": 1,
"channels": (4, 4, 4),
"latent_channels": 4,
"attention_levels": (False, False, False),
"num_res_blocks": 1,
"norm_num_groups": 4,
},
(1, 1, 16, 16),
(1, 3, 16, 16),
(1, 1, 16, 16),
(1, 4, 4, 4),
],
[
{
"spatial_dims": 2,
Expand Down
1 change: 0 additions & 1 deletion tests/transforms/test_border_pad.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
[{"spatial_border": 2}, (3, 8, 8, 4), (3, 12, 12, 8)],
[{"spatial_border": [1, 2, 3]}, (3, 8, 8, 4), (3, 10, 12, 10)],
[{"spatial_border": [1, 2, 3, 4, 5, 6]}, (3, 8, 8, 4), (3, 11, 15, 15)],
[{"spatial_border": [1, 2, 3, 4, 5, 6]}, (3, 8, 8, 4), (3, 11, 15, 15)],
]


Expand Down
2 changes: 0 additions & 2 deletions tests/transforms/test_border_padd.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
[{"keys": "img", "spatial_border": 2}, (3, 8, 8, 4), (3, 12, 12, 8)],
[{"keys": "img", "spatial_border": [1, 2, 3]}, (3, 8, 8, 4), (3, 10, 12, 10)],
[{"keys": "img", "spatial_border": [1, 2, 3, 4, 5, 6]}, (3, 8, 8, 4), (3, 11, 15, 15)],
[{"keys": "img", "spatial_border": 2}, (3, 8, 8, 4), (3, 12, 12, 8)],
[{"keys": "img", "spatial_border": 2}, (3, 8, 8, 4), (3, 12, 12, 8)],
]


Expand Down
1 change: 0 additions & 1 deletion tests/transforms/test_center_spatial_crop.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
TEST_SHAPES = [
[{"roi_size": [2, 2, -1]}, (3, 3, 3, 3), (3, 2, 2, 3), True],
[{"roi_size": [2, 2, 2]}, (3, 3, 3, 3), (3, 2, 2, 2), True],
[{"roi_size": [2, 2, 2]}, (3, 3, 3, 3), (3, 2, 2, 2), True],
[{"roi_size": [2, 1, 2]}, (3, 3, 3, 3), (3, 2, 1, 2), False],
[{"roi_size": [2, 1, 3]}, (3, 3, 1, 3), (3, 2, 1, 3), True],
]
Expand Down
1 change: 0 additions & 1 deletion tests/transforms/test_spatial_padd.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
TESTS = [
[{"keys": ["img"], "spatial_size": [15, 8, 8], "method": "symmetric"}, (3, 8, 8, 5), (3, 15, 8, 8)],
[{"keys": ["img"], "spatial_size": [15, 8, 8], "method": "end"}, (3, 8, 8, 5), (3, 15, 8, 8)],
[{"keys": ["img"], "spatial_size": [15, 8, 8], "method": "end"}, (3, 8, 8, 5), (3, 15, 8, 8)],
[{"keys": ["img"], "spatial_size": [15, 8, -1], "method": "end"}, (3, 8, 5, 4), (3, 15, 8, 4)],
]

Expand Down
Loading