Created
December 9, 2020 03:03
-
-
Save andiac/4da7deb49050771334fc45c746549b90 to your computer and use it in GitHub Desktop.
Evaluate ECE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def evaluate_ECE(data_iter, net, device, M=15): | |
| net.eval() | |
| bins, n = [0.0 for _ in range(M)], 0 | |
| with torch.no_grad(): | |
| for X_batch, y_batch in data_iter: | |
| p_batch = torch.exp(lsoftmax(net(X_batch.to(device)))) | |
| y_hat_batch = net(X_batch.to(device)).argmax(dim=1) | |
| for p, y_hat, y in zip(p_batch.numpy(), y_hat_batch.numpy(), y_batch.numpy()): | |
| p[p > 1.0] = 1.0 | |
| p[p < 0.0] = 0.0 | |
| idx = math.floor(p[y_hat] * M) | |
| if idx >= M: | |
| idx = M - 1 | |
| bins[idx] += float(y_hat == y) - p[y_hat] | |
| n += y_batch.shape[0] | |
| return sum(map(abs, bins)) / n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment