From 2d415407e93a78ae086b8d476dd2c34da3ecd3ef Mon Sep 17 00:00:00 2001 From: shahules786 Date: Wed, 14 Sep 2022 11:48:46 +0530 Subject: [PATCH] tests loss --- tests/loss_function_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/loss_function_test.py b/tests/loss_function_test.py index f08ac65..637d6f3 100644 --- a/tests/loss_function_test.py +++ b/tests/loss_function_test.py @@ -21,7 +21,7 @@ def test_loss_input_shapes(loss): check_loss_shapes_compatibility(loss) @pytest.mark.parametrize("loss",loss_functions) -def test_loss_output_shapes(loss): +def test_loss_output_type(loss): batch_size = 4 prediction, target = torch.rand(batch_size,1,1000),torch.rand(batch_size,1,1000)