identification
identification
¶
compute_bias(y_obs, y_pred, feature=None, weights=None, *, functional='mean', level=0.5, n_bins=10, bin_method='quantile')
¶
Compute generalised bias conditional on a feature.
This function computes and aggregates the generalised bias, i.e. the values of the
canonical identification function, versus (grouped by) a feature.
This is a good way to assess whether a model is conditionally calibrated or not.
Well calibrated models have bias terms around zero.
For the mean functional, the generalised bias is the negative residual
y_pred - y_obs
.
See Notes for further details.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
y_obs |
array-like of shape (n_obs)
|
Observed values of the response variable. For binary classification, y_obs is expected to be in the interval [0, 1]. |
required |
y_pred |
array-like of shape (n_obs) or (n_obs, n_models)
|
Predicted values, e.g. for the conditional expectation of the response,
|
required |
feature |
array-like of shape (n_obs) or None
|
Some feature column. |
None
|
weights |
array-like of shape (n_obs) or None
|
Case weights. If given, the bias is calculated as weighted average of the identification function with these weights. Note that the standard errors and p-values in the output are based on the assumption that the variance of the bias is inverse proportional to the weights. See the Notes section for details. |
None
|
functional |
str
|
The functional that is induced by the identification function
|
'mean'
|
level |
float
|
The level of the expectile of quantile. (Often called \(\alpha\).)
It must be |
0.5
|
n_bins |
int
|
The number of bins for numerical features and the maximal number of (most
frequent) categories shown for categorical features. Due to ties, the effective
number of bins might be smaller than |
10
|
bin_method |
str
|
The method to use for finding bin edges (boundaries). Options are:
|
'quantile'
|
Returns:
Name | Type | Description |
---|---|---|
df |
DataFrame
|
The result table contains at least the columns:
If
|
Notes
A model
A model \(m(X)\) is conditionally calibrated iff
\(\mathbb{E}(V(m(X), Y)|X)=0\) almost surely with canonical identification
function \(V\).
The empirical version, given some data, reads
\(\bar{V} = \frac{1}{n}\sum_i \phi(x_i) V(m(x_i), y_i)\) with a test function
\(\phi(x_i)\) that projects on the specified feature.
For a feature with only two distinct values "a"
and "b"
, this becomes
\(\bar{V} = \frac{1}{n_a}\sum_{i \text{ with }x_i=a} V(m(a), y_i)\) with
\(n_a=\sum_{i \text{ with }x_i=a}\) and similar for "b"
.
With case weights, this reads
\(\bar{V} = \frac{1}{\sum_i w_i}\sum_i w_i \phi(x_i) V(m(x_i), y_i)\).
This generalises the classical residual (up to a minus sign) for target functionals
other than the mean. See [FLM2022]
.
The standard error for \(\bar{V}\) is calculated in the standard way as \(\mathrm{SE} = \sqrt{\operatorname{Var}(\bar{V})} = \frac{\sigma}{\sqrt{n}}\) and the standard variance estimator for \(\sigma^2 = \operatorname{Var}(\phi(x_i) V(m(x_i), y_i))\) with Bessel correction, i.e. division by \(n-1\) instead of \(n\).
With case weights, the variance estimator becomes \(\operatorname{Var}(\bar{V}) = \frac{1}{n-1} \frac{1}{\sum_i w_i} \sum_i w_i (V(m(x_i), y_i) - \bar{V})^2\) with the implied relation \(\operatorname{Var}(V(m(x_i), y_i)) \sim \frac{1}{w_i} \). If your weights are for repeated observations, so-called frequency weights, then the above estimate is conservative because it uses \(n - 1\) instead of \((\sum_i w_i) - 1\).
References
[FLM2022]
-
T. Fissler, C. Lorentzen, and M. Mayer. "Model Comparison and Calibration Assessment". (2022) arxiv:2202.12780.
Examples:
>>> compute_bias(y_obs=[0, 0, 1, 1], y_pred=[-1, 1, 1 , 2])
shape: (1, 5)
┌───────────┬────────────┬──────────────┬─────────────┬──────────┐
│ bias_mean ┆ bias_count ┆ bias_weights ┆ bias_stderr ┆ p_value │
│ --- ┆ --- ┆ --- ┆ --- ┆ --- │
│ f64 ┆ u32 ┆ f64 ┆ f64 ┆ f64 │
╞═══════════╪════════════╪══════════════╪═════════════╪══════════╡
│ 0.25 ┆ 4 ┆ 4.0 ┆ 0.478714 ┆ 0.637618 │
└───────────┴────────────┴──────────────┴─────────────┴──────────┘
>>> compute_bias(y_obs=[0, 0, 1, 1], y_pred=[-1, 1, 1 , 2],
... feature=["a", "a", "b", "b"])
shape: (2, 6)
┌─────────┬───────────┬────────────┬──────────────┬─────────────┬─────────┐
│ feature ┆ bias_mean ┆ bias_count ┆ bias_weights ┆ bias_stderr ┆ p_value │
│ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- │
│ str ┆ f64 ┆ u32 ┆ f64 ┆ f64 ┆ f64 │
╞═════════╪═══════════╪════════════╪══════════════╪═════════════╪═════════╡
│ a ┆ 0.0 ┆ 2 ┆ 2.0 ┆ 1.0 ┆ 1.0 │
│ b ┆ 0.5 ┆ 2 ┆ 2.0 ┆ 0.5 ┆ 0.5 │
└─────────┴───────────┴────────────┴──────────────┴─────────────┴─────────┘
Source code in src/model_diagnostics/calibration/identification.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 |
|
compute_marginal(y_obs, y_pred, X=None, feature_name=None, predict_function=None, weights=None, *, n_bins=10, bin_method='uniform', n_max=1000, rng=None)
¶
Compute the marginal expectation conditional on a single feature.
This function computes the (weighted) average of observed response and predictions conditional on a given feature.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
y_obs |
array-like of shape (n_obs)
|
Observed values of the response variable. For binary classification, y_obs is expected to be in the interval [0, 1]. |
required |
y_pred |
array-like of shape (n_obs) or (n_obs, n_models)
|
Predicted values, e.g. for the conditional expectation of the response,
|
required |
X |
array-like of shape (n_obs, n_features) or None
|
The dataframe or array of features to be passed to the model predict function. |
None
|
feature_name |
(int, str or None)
|
Column name (str) or index (int) of feature in |
None
|
predict_function |
callable or None
|
A callable to get prediction, i.e. |
None
|
weights |
array-like of shape (n_obs) or None
|
Case weights. If given, the bias is calculated as weighted average of the identification function with these weights. |
None
|
n_bins |
int
|
The number of bins for numerical features and the maximal number of (most
frequent) categories shown for categorical features. Due to ties, the effective
number of bins might be smaller than |
10
|
bin_method |
str
|
The method to use for finding bin edges (boundaries). Options are:
|
'uniform'
|
n_max |
int or None
|
Used only for partial dependence computation. The number of rows to subsample from X. This speeds up computation, in particular for slow predict functions. |
1000
|
rng |
(Generator, int or None)
|
Used only for partial dependence computation. The random number generator used
for subsampling of |
None
|
Returns:
Name | Type | Description |
---|---|---|
df |
DataFrame
|
The result table contains at least the columns:
If
If
|
Notes
The marginal values are computed as an estimation of:
y_obs
: \(\mathbb{E}(Y|feature)\)y_pred
: \(\mathbb{E}(m(X)|feature)\)
with \(feature\) the column specified by feature_name
.
Computationally that is more or less a group-by-aggregate operation on a dataset.
The standard error for both are calculated in the standard way as \(\mathrm{SE} = \sqrt{\operatorname{Var}(\bar{Y})} = \frac{\sigma}{\sqrt{n}}\) and the standard variance estimator for \(\sigma^2\) with Bessel correction, i.e. division by \(n-1\) instead of \(n\).
With case weights, the variance estimator becomes \(\operatorname{Var}(\bar{Y}) = \frac{1}{n-1} \frac{1}{\sum_i w_i} \sum_i w_i (y_i - \bar{y})^2\) with the implied relation \(\operatorname{Var}(y_i) \sim \frac{1}{w_i} \). If your weights are for repeated observations, so-called frequency weights, then the above estimate is conservative because it uses \(n - 1\) instead of \((\sum_i w_i) - 1\).
Examples:
>>> compute_marginal(y_obs=[0, 0, 1, 1], y_pred=[-1, 1, 1, 2])
shape: (1, 6)
┌────────────┬─────────────┬──────────────┬───────────────┬───────┬─────────┐
│ y_obs_mean ┆ y_pred_mean ┆ y_obs_stderr ┆ y_pred_stderr ┆ count ┆ weights │
│ --- ┆ --- ┆ --- ┆ --- ┆ --- ┆ --- │
│ f64 ┆ f64 ┆ f64 ┆ f64 ┆ u32 ┆ f64 │
╞════════════╪═════════════╪══════════════╪═══════════════╪═══════╪═════════╡
│ 0.5 ┆ 0.75 ┆ 0.288675 ┆ 0.629153 ┆ 4 ┆ 4.0 │
└────────────┴─────────────┴──────────────┴───────────────┴───────┴─────────┘
>>> import polars as pl
>>> from sklearn.linear_model import Ridge
>>> pl.Config.set_tbl_width_chars(84)
<class 'polars.config.Config'>
>>> y_obs, X =[0, 0, 1, 1], [[0, 1], [1, 1], [1, 2], [2, 2]]
>>> m = Ridge().fit(X, y_obs)
>>> compute_marginal(y_obs=y_obs, y_pred=m.predict(X), X=X, feature_name=0,
... predict_function=m.predict)
shape: (3, 9)
┌──────────┬─────────┬─────────┬─────────┬───┬───────┬─────────┬─────────┬─────────┐
│ feature ┆ y_obs_m ┆ y_pred_ ┆ y_obs_s ┆ … ┆ count ┆ weights ┆ bin_edg ┆ partial │
│ 0 ┆ ean ┆ mean ┆ tderr ┆ ┆ --- ┆ --- ┆ es ┆ _depend │
│ --- ┆ --- ┆ --- ┆ --- ┆ ┆ u32 ┆ f64 ┆ --- ┆ ence │
│ f64 ┆ f64 ┆ f64 ┆ f64 ┆ ┆ ┆ ┆ array[f ┆ --- │
│ ┆ ┆ ┆ ┆ ┆ ┆ ┆ 64, 3] ┆ f64 │
╞══════════╪═════════╪═════════╪═════════╪═══╪═══════╪═════════╪═════════╪═════════╡
│ 0.0 ┆ 0.0 ┆ 0.1 ┆ 0.0 ┆ … ┆ 1 ┆ 1.0 ┆ [0.0, ┆ 0.3 │
│ ┆ ┆ ┆ ┆ ┆ ┆ ┆ 0.0, ┆ │
│ ┆ ┆ ┆ ┆ ┆ ┆ ┆ 0.2] ┆ │
│ 1.0 ┆ 0.5 ┆ 0.5 ┆ 0.5 ┆ … ┆ 2 ┆ 2.0 ┆ [0.8, ┆ 0.5 │
│ ┆ ┆ ┆ ┆ ┆ ┆ ┆ 0.0, ┆ │
│ ┆ ┆ ┆ ┆ ┆ ┆ ┆ 1.0] ┆ │
│ 2.0 ┆ 1.0 ┆ 0.9 ┆ 0.0 ┆ … ┆ 1 ┆ 1.0 ┆ [1.8, ┆ 0.7 │
│ ┆ ┆ ┆ ┆ ┆ ┆ ┆ 0.0, ┆ │
│ ┆ ┆ ┆ ┆ ┆ ┆ ┆ 2.0] ┆ │
└──────────┴─────────┴─────────┴─────────┴───┴───────┴─────────┴─────────┴─────────┘
Source code in src/model_diagnostics/calibration/identification.py
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 |
|
identification_function(y_obs, y_pred, *, functional='mean', level=0.5)
¶
Canonical identification function.
Identification functions act as generalised residuals. See Notes for further details.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
y_obs |
array-like of shape (n_obs)
|
Observed values of the response variable. For binary classification, y_obs is expected to be in the interval [0, 1]. |
required |
y_pred |
array-like of shape (n_obs)
|
Predicted values of the |
required |
functional |
str
|
The functional that is induced by the identification function
|
'mean'
|
level |
float
|
The level of the expectile of quantile. (Often called \(\alpha\).)
It must be |
0.5
|
Returns:
Name | Type | Description |
---|---|---|
V |
ndarray of shape (n_obs)
|
Values of the identification function. |
Notes
The function The function \(V(y, z)\) for observation \(y=y_{pred}\) and prediction \(z=y_{pred}\) is a strict identification function for the functional \(T\), or induces the functional \(T\) as:
for some class of distributions \(\mathcal{F}\). Implemented examples of the functional \(T\) are mean, median, expectiles and quantiles.
functional | strict identification function \(V(y, z)\) |
---|---|
mean | \(z - y\) |
median | \(\mathbf{1}\{z \ge y\} - \frac{1}{2}\) |
expectile | \(2 \mid\mathbf{1}\{z \ge y\} - \alpha\mid (z - y)\) |
quantile | \(\mathbf{1}\{z \ge y\} - \alpha\) |
For level
\(\alpha\).
References
[Gneiting2011]
-
T. Gneiting. "Making and Evaluating Point Forecasts". (2011) doi:10.1198/jasa.2011.r10138 arxiv:0912.0902
Examples:
>>> identification_function(y_obs=[0, 0, 1, 1], y_pred=[-1, 1, 1 , 2])
array([-1, 1, 0, 1])
Source code in src/model_diagnostics/calibration/identification.py
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
|