| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import unittest |
|
|
| import numpy as np |
| import torch |
| from parameterized import parameterized |
|
|
| from monai.metrics import compute_roc_auc |
|
|
| TEST_CASE_1 = [ |
| { |
| "y_pred": torch.tensor([[0.1, 0.9], [0.3, 1.4], [0.2, 0.1], [0.1, 0.5]]), |
| "y": torch.tensor([[0], [1], [0], [1]]), |
| "to_onehot_y": True, |
| "softmax": True, |
| }, |
| 0.75, |
| ] |
|
|
| TEST_CASE_2 = [{"y_pred": torch.tensor([[0.5], [0.5], [0.2], [8.3]]), "y": torch.tensor([[0], [1], [0], [1]])}, 0.875] |
|
|
| TEST_CASE_3 = [{"y_pred": torch.tensor([[0.5], [0.5], [0.2], [8.3]]), "y": torch.tensor([0, 1, 0, 1])}, 0.875] |
|
|
| TEST_CASE_4 = [{"y_pred": torch.tensor([0.5, 0.5, 0.2, 8.3]), "y": torch.tensor([0, 1, 0, 1])}, 0.875] |
|
|
| TEST_CASE_5 = [ |
| { |
| "y_pred": torch.tensor([[0.1, 0.9], [0.3, 1.4], [0.2, 0.1], [0.1, 0.5]]), |
| "y": torch.tensor([[0], [1], [0], [1]]), |
| "to_onehot_y": True, |
| "softmax": True, |
| "average": "none", |
| }, |
| [0.75, 0.75], |
| ] |
|
|
| TEST_CASE_6 = [ |
| { |
| "y_pred": torch.tensor([[0.1, 0.9], [0.3, 1.4], [0.2, 0.1], [0.1, 0.5], [0.1, 0.5]]), |
| "y": torch.tensor([[1, 0], [0, 1], [0, 0], [1, 1], [0, 1]]), |
| "softmax": True, |
| "average": "weighted", |
| }, |
| 0.56667, |
| ] |
|
|
| TEST_CASE_7 = [ |
| { |
| "y_pred": torch.tensor([[0.1, 0.9], [0.3, 1.4], [0.2, 0.1], [0.1, 0.5], [0.1, 0.5]]), |
| "y": torch.tensor([[1, 0], [0, 1], [0, 0], [1, 1], [0, 1]]), |
| "softmax": True, |
| "average": "micro", |
| }, |
| 0.62, |
| ] |
|
|
| TEST_CASE_8 = [ |
| { |
| "y_pred": torch.tensor([[0.1, 0.9], [0.3, 1.4], [0.2, 0.1], [0.1, 0.5]]), |
| "y": torch.tensor([[0], [1], [0], [1]]), |
| "to_onehot_y": True, |
| "other_act": lambda x: torch.log_softmax(x, dim=1), |
| }, |
| 0.75, |
| ] |
|
|
|
|
| class TestComputeROCAUC(unittest.TestCase): |
| @parameterized.expand( |
| [TEST_CASE_1, TEST_CASE_2, TEST_CASE_3, TEST_CASE_4, TEST_CASE_5, TEST_CASE_6, TEST_CASE_7, TEST_CASE_8] |
| ) |
| def test_value(self, input_data, expected_value): |
| result = compute_roc_auc(**input_data) |
| np.testing.assert_allclose(expected_value, result, rtol=1e-5) |
|
|
|
|
| if __name__ == "__main__": |
| unittest.main() |
|
|