Ensemble
EnsembleDistPool
¶
A class to compute the weights and apply the ensemble of multiple models.
Attributes¶
df : pd.DataFrame Processed DataFrame containing model predictions. dist : str The distribution type used for modeling. Currently, it only accepts 'log_normal'. order_models : list List of models in a specific order for weight computation.
Methods¶
compute_weights(df_obs: pd.DataFrame, metric: str = 'crps') Computes the weights for the ensemble based on observed data and a specified metric.
apply_ensemble(weights: dict = None) Computes the final ensemble distribution using either precomputed or provided weights.
Source code in mosqlient/forecast/ensemble.py
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 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | |
__init__(df, order_models, mixture='log', dist='log_normal')
¶
Initializes the Ensemble class by processing the input DataFrame and defining key attributes.
Parameters¶
df : pd.DataFrame
DataFrame containing columns date, pred, lower, upper, and model_id.
order_models : list
List defining the order of models for weight computation.
mixture: str
Determine how the predictions are combined. Choose linear for a weighted
linear mixture or log for logarithmic pooling.
dist : str, optional
The distribution type used for parameterizing predictions. Currently, it only accepts 'log_normal'.
fn_loss : str, optional
Loss function used for estimation ('median' or 'lower'). Default is 'median'.
Raises¶
ValueError If the input DataFrame does not contain the required columns.
Source code in mosqlient/forecast/ensemble.py
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 | |
apply_ensemble(weights=None, p=np.array([0.025, 0.05, 0.1, 0.25, 0.5, 0.75, 0.9, 0.95, 0.975]))
¶
Computes the final ensemble distribution using either precomputed or user-provided weights.
Parameters¶
weights : np.array Array containing weights for each model. If None, uses precomputed weights.
np.array
Returned percentile values
Returns¶
pd.DataFrame
DataFrame containing the ensemble predictions with quantiles (pred, lower, upper).
Source code in mosqlient/forecast/ensemble.py
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 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | |
compute_weights(df_obs, metric='crps', bounds=(-100, 100))
¶
Computes the optimal weights for the ensemble based on observed data and a specified metric.
Parameters¶
df_obs : pd.DataFrame
DataFrame containing observed values with columns date and casos.
metric : str, optional
Scoring metric used for optimization. Options: ['crps', 'log_score']. Default is 'crps'.
bounds: tuple
Tuple where the first element represents the minimum value and the second
represents the maximum value for the bounds.
Returns¶
dict Dictionary containing the computed weights for each model and the loss value.
Source code in mosqlient/forecast/ensemble.py
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 | |
alpha_01(alpha_inv)
¶
Function that maps from R^n to the open simplex.
Parameters¶
alpha_inv: array of float
Returns¶
array Vector on the (n+1) open simplex.
Source code in mosqlient/forecast/ensemble.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | |
compute_ppf(mu, sigma, weights, p=np.array([0.5, 0.05, 0.95]))
¶
Compute the Percent-Point Function (PPF), which is the inverse of the CDF, for a mixture of lognormal distributions.
The function takes the parameters of a lognormal mixture (mean, standard deviation, and weights) and returns the mixture values for the 5th, 50th, and 95th percentiles.
Parameters¶
mu: np.array
Mean values (in log-space) for the lognormal components of the mixture.
sigma: np.array
Standard deviation values (in log-space) for the lognormal components of the mixture.
weights: np.array
Weights of each component in the lognormal mixture. These should sum to 1.
Returns¶
np.array
The x-values corresponding to the 5th, 50th, and 95th percentiles.
Source code in mosqlient/forecast/ensemble.py
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 | |
crps_lognormal_mix(obs, mu, sigma, weights)
¶
Compute the score of a mix of lognormal distributions.
Parameters¶
obs: np.array or float
Values where the mixture score is evaluated.
mu: np.array
Mu parameter (in log-space) for the lognormal components.
sigma: np.array
Standard deviations (in log-space) for the lognormal components.
weight: array-like
Mixture weights (must sum to 1).
Returns¶
float
The score evaluated.
Source code in mosqlient/forecast/ensemble.py
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 | |
dlnorm_mix(obs, mu, sigma, weights, log=False)
¶
Compute the PDF or log-PDF of a mixture of lognormal distributions for omega values.
Parameters¶
obs: np.array or float
Values where the mixture density is evaluated. Can be a single value or an array.
mu: np.array
Mu parameter (in log-space) for the lognormal components.
sigma: np.array
Standard deviations (in log-space) for the lognormal components.
weight: array-like
Mixture weights (must sum to 1).
log: bool
Whether to return the log-density.
Returns¶
array: The mixture density or log-density evaluated at obs.
Source code in mosqlient/forecast/ensemble.py
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 | |
ensemble_vincentization(df_preds, models=None, index_cols=['date'], model_col='model_id')
¶
Construct a median ensemble forecast using Vincentization.
Vincentization combines forecasts by taking the median of corresponding
quantiles across a set of models. For each forecast horizon (defined by
index_cols), the ensemble quantiles are obtained as the median of the
same quantile from all included models.
The function expects the following quantile columns to be present:
lower_95lower_90lower_80lower_50pred(point forecast / median)upper_50upper_80upper_90upper_95
After aggregation, the resulting quantiles are checked for monotonicity. An exception is raised if any forecast has crossing quantiles.
Parameters¶
df_preds : pandas.DataFrame
DataFrame containing forecasts from multiple models. Each row
corresponds to a model forecast and must include the quantile columns
listed above, along with the columns specified by index_cols and
model_col.
list-like, optional, default=None
Subset of model identifiers to include in the ensemble. If None,
all available models are used.
list of str, optional, default=["date"]
Columns defining a unique forecast target (e.g., forecast date, location, horizon). Forecasts are aggregated separately for each unique combination of these columns.
str, optional, default="model_id"
Name of the column containing model identifiers.
Returns¶
pandas.DataFrame
Ensemble forecast DataFrame containing index_cols and the
aggregated quantile columns. Each quantile is the median across models
for the corresponding forecast target.
Raises¶
Exception If the resulting ensemble contains non-monotonic quantiles (i.e., quantile crossing).
Source code in mosqlient/forecast/ensemble.py
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 | |
find_opt_weights_linear(obs, preds, order_models, dist, metric, bounds=(-100, 100))
¶
Find the weights of a linear mix distributions that minimizes the metric selected.
Parameters¶
obs: pd.Dataframe
Dataframe with the columns: date and casos
preds: pd.Dataframe
Dataframe with the columns: date, mu, sigma, model_id
order_models : list
List defining the order of models for weight computation.
dist : str, optional
The distribution type used for parameterizing predictions. Currently, it only accepts 'log_normal'.
metric : str, optional
Metric used for optimization. Options: crps, log_score.
bounds: tuple
Tuple where the first element represents the minimum value and the second
represents the maximum value for the bounds.
Return¶
dict
A dictionary containing:
- weights: The optimized weights for the models.
- loss: The minimized loss value based on the selected metric.
Source code in mosqlient/forecast/ensemble.py
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 | |
find_opt_weights_linear_mix_log(obs, preds, order_models, metric, bounds)
¶
Find the weights of a lognormal linear mix distributions that minimizes the metric selected.
Parameters¶
obs: pd.Dataframe
Dataframe with the columns: date and casos
preds: pd.Dataframe
Dataframe with the columns: date, mu, sigma, model_id
order_models: list
Order of the different models in the model_id column
metric: str ['crps', 'log_score']
Metric used to optimize the weights
bounds: tuple
Tuple where the first element represents the minimum value and the second
represents the maximum value for the bounds.
Return¶
dict
A dictionary containing:
- weights: The optimized weights for the models.
- loss: The minimized loss value based on the selected metric.
Source code in mosqlient/forecast/ensemble.py
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 | |
find_opt_weights_log(obs, preds, order_models, dist='log_normal', metric='crps', bounds=(-100, 100))
¶
Function that generate the weights of the ensemble minimizing the metric selected.
Parameters¶
obs: pd.dataframe Dataframe with columns date and casos;
pd.dataframe
Dataframe with columns date, mu, sigma, and model_id
list
Order of the different models in the model_id column
str ['log_normal']
Distribution used to represent the forecast. Currently, it only accepts 'log_normal'.
str ['crps', 'log_score']
Metric used to optimize the weights
tuple
Tuple where the first element represents the minimum value and the second represents the maximum value for the bounds.
Returns¶
dict The dict contains the keys: - weights: the optmize weights by the loss - loss: loss function value
Source code in mosqlient/forecast/ensemble.py
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 | |
get_ci_columns(p)
¶
Function that given the confidence interval return the columns names
Parameters¶
p: NDArray[np.float64] percentile values
Returns¶
List of columns name
Source code in mosqlient/forecast/ensemble.py
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 | |
get_epiweek(date)
¶
Function to capture the epidemiological year and week from the date
Source code in mosqlient/forecast/ensemble.py
230 231 232 233 234 235 | |
get_quantiles_linear(dist, weights, preds, p=np.array([0.5, 0.05, 0.95]))
¶
Function to get the quantiles of the linear mixture.
Parameters¶
dist : str, optional The distribution type used for parameterizing predictions. Currently, it only accepts 'log_normal'.. weights: np.array The weights assigned to each prediction. preds: pd.DataFrame The Dataframe with the predictions. p: np.array Returned percentile values
Returns¶
quantiles: np.array The quantiles obtained according to p.
Source code in mosqlient/forecast/ensemble.py
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 | |
get_quantiles_log(dist, weights, ms, vs, p=np.array([0.5, 0.05, 0.95]))
¶
Function to get the quantiles of a logarithmic pooling.
Parameters¶
dist : str, optional The distribution type used for parameterizing predictions. Currently, it only accepts 'log_normal'.. weights: np.array The weights assigned to each prediction. ms: np.array The mu parameter of each prediction. vs: np.array The variance parameter of each prediction. p: np.array Returned percentile values
Returns¶
quantiles: np.array The quantiles obtained according to p.
Source code in mosqlient/forecast/ensemble.py
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 | |
get_score(obs, mu, sd, dist='log_normal', metric='crps')
¶
Function to compute the score given a distribution and a predefined metric.
Parameters¶
obs: float The real observation.
mu:float The mu parameter of the distribution
float
The sd parameter associated with the distribution
str ['log_normal']
Distribution type. Currently, it only accepts 'log_normal'.
str ['crps', 'log_score']
Scoring metric, either 'crps' or 'log_score'.
Returns¶
float The computed score based on the given metric and distribution.
Source code in mosqlient/forecast/ensemble.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | |
pool_par_gauss(alpha, m, v)
¶
Function to get the output distribution from a logarithmic pool of lognormal distrutions
Parameters¶
alpha : array of float Weigths assigned to each distribution in the pool. m : array of float mu parameter v : array of float variance parameter Returns
tuple A tuple containing two elements. The first one is the mu and the second one the sd parameter of the distribution.
Notes¶
The logarithmic pooling method is based on the work of Carvalho, L. M., Villela, D. A., Coelho, F. C., & Bastos, L. S. (2023). Bayesian inference for the weights in logarithmic pooling. Bayesian Analysis, 18(1), 223-251.
Source code in mosqlient/forecast/ensemble.py
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 | |