-
Notifications
You must be signed in to change notification settings - Fork 416
/
Copy pathauc.py
85 lines (73 loc) · 2.65 KB
/
auc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Copyright The PyTorch Lightning team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import Tuple
import torch
from torch import Tensor
def _auc_update(x: Tensor, y: Tensor) -> Tuple[Tensor, Tensor]:
if x.ndim > 1 or y.ndim > 1:
raise ValueError(
f'Expected both `x` and `y` tensor to be 1d, but got'
f' tensors with dimention {x.ndim} and {y.ndim}'
)
if x.numel() != y.numel():
raise ValueError(
f'Expected the same number of elements in `x` and `y`'
f' tensor but received {x.numel()} and {y.numel()}'
)
return x, y
def _auc_compute(x: Tensor, y: Tensor, reorder: bool = False) -> Tensor:
with torch.no_grad():
if reorder:
# TODO: include stable=True arg when pytorch v1.9 is released
x, x_idx = torch.sort(x)
y = y[x_idx]
dx = x[1:] - x[:-1]
if (dx < 0).any():
if (dx <= 0).all():
direction = -1.
else:
raise ValueError(
"The `x` tensor is neither increasing or decreasing."
" Try setting the reorder argument to `True`."
)
else:
direction = 1.
return direction * torch.trapz(y, x)
def auc(x: Tensor, y: Tensor, reorder: bool = False) -> Tensor:
"""
Computes Area Under the Curve (AUC) using the trapezoidal rule
Args:
x: x-coordinates
y: y-coordinates
reorder: if True, will reorder the arrays
Return:
Tensor containing AUC score (float)
Raises:
ValueError:
If both ``x`` and ``y`` tensors are not ``1d``.
ValueError:
If both ``x`` and ``y`` don't have the same numnber of elements.
ValueError:
If ``x`` tesnsor is neither increasing or decreasing.
Example:
>>> from torchmetrics.functional import auc
>>> x = torch.tensor([0, 1, 2, 3])
>>> y = torch.tensor([0, 1, 2, 2])
>>> auc(x, y)
tensor(4.)
>>> auc(x, y, reorder=True)
tensor(4.)
"""
x, y = _auc_update(x, y)
return _auc_compute(x, y, reorder=reorder)