Skip to content

Commit

Permalink
Improve test cover
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeyiasemis committed Sep 21, 2023
1 parent 781322e commit 627d37b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/tests_nn/test_vsharp_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def create_sample(shape, **kwargs):
"normalized",
[True, False],
)
def test_unet_engine(shape, loss_fns, num_steps, num_steps_dc_gd, num_filters, num_pool_layers, normalized):
def test_vsharpnet_engine(shape, loss_fns, num_steps, num_steps_dc_gd, num_filters, num_pool_layers, normalized):
# Operators
forward_operator = functools.partial(fft2, centered=True)
backward_operator = functools.partial(ifft2, centered=True)
Expand Down Expand Up @@ -97,6 +97,7 @@ def test_unet_engine(shape, loss_fns, num_steps, num_steps_dc_gd, num_filters, n
"hfen_l2_norm_loss",
"kspace_nmse_loss",
"kspace_nmae_loss",
"ssim_3d_loss",
]
],
)
Expand All @@ -108,7 +109,7 @@ def test_unet_engine(shape, loss_fns, num_steps, num_steps_dc_gd, num_filters, n
"normalized",
[True, False],
)
def test_unet_engine(shape, loss_fns, num_steps, num_steps_dc_gd, num_filters, num_pool_layers, normalized):
def test_vsharpnet3d_engine(shape, loss_fns, num_steps, num_steps_dc_gd, num_filters, num_pool_layers, normalized):
# Operators
forward_operator = functools.partial(fft2, centered=True)
backward_operator = functools.partial(ifft2, centered=True)
Expand Down

0 comments on commit 627d37b

Please sign in to comment.