Skip to main content

ActEval

PyPI version Python versions CI License Typed

Model-agnostic evaluation for actuarial predictive models.

ActEval evaluates prediction arrays—not fitted model objects—across accuracy, calibration, discrimination, probabilistic quality, uncertainty, observed-tail risk, and financial decisions. It works with outputs from GLMs, scikit-learn, XGBoost, CatBoost, neural networks, or any other modelling stack.

The project is designed for non-life insurance pricing workflows. It keeps actuarial objectives separate and never creates an arbitrary universal model score.

Why ActEval?

A model with lower RMSE can still have worse aggregate calibration, weaker large-loss behavior, or a less favorable pricing consequence. ActEval makes those trade-offs visible through explicit metrics and reproducible metadata.

Capability Included diagnostics
Point predictions MAE, RMSE, Poisson/Gamma/Tweedie deviance
Calibration A/E, calibration by risk quantile, weighted calibration error
Discrimination Gini, normalized Gini, lift
Tail risk Observed-tail MAE, RMSE, A/E, large-loss bias
Predictive distributions CRPS, log, Brier, quantile, and interval scores
Uncertainty Coverage, width, variance, entropy, bootstrap intervals
Model comparison Metric-specific ranking and paired bootstrap differences
Monitoring Segment reports, temporal validation, prediction drift/PSI
Decisions Pricing regret, loss ratio, reserve/capital shortfall, reinsurance
Reporting DataFrame, dictionary, CSV, JSON, HTML, and plot export

Installation

ActEval requires Python 3.11 or newer.

python -m pip install acteval-insurance

Install the optional plotting support with:

python -m pip install "acteval-insurance[plot]"

The distribution name is acteval-insurance because acteval was already occupied on PyPI. The import remains concise:

import acteval as ae

Quick start

ActEval accepts ordinary NumPy-compatible arrays and returns structured result objects.

import acteval as ae

y_true = [0.0, 0.4, 1.0, 2.0, 4.0, 7.0]
y_pred = [0.1, 0.5, 0.9, 1.8, 3.6, 6.4]
exposure = [1.0, 0.5, 1.2, 0.8, 1.5, 2.0]

result = ae.evaluate(
    y_true,
    y_pred,
    exposure=exposure,
    task="claim_frequency",
)

print(result.to_dataframe())

Task defaults provide a balanced report. Metrics can be selected explicitly:

result = ae.evaluate(
    y_true,
    y_pred,
    task="claim_frequency",
    metrics=[
        "rmse",
        "poisson_deviance",
        "ae_ratio",
        "normalized_gini",
        "tail_ae_95",
    ],
)

Parameterized metrics use MetricSpec, keeping every assumption in result metadata:

result = ae.evaluate(
    y_true,
    y_pred,
    task="pure_premium",
    metrics=[
        ae.MetricSpec("tweedie_deviance", {"power": 1.7}),
        ae.MetricSpec("tail_mae", {"quantile": 0.99}, label="tail_mae_99"),
    ],
)

Compare models

comparison = ae.compare(
    y_true,
    {
        "GLM": glm_predictions,
        "Gradient boosting": boosting_predictions,
    },
    exposure=exposure,
    task="claim_frequency",
)

print(comparison.to_dataframe())
print(comparison.rank("poisson_deviance"))

Rankings are metric-specific. Target metrics such as A/E are ranked by distance from their target; ActEval does not declare one model universally best.

Quantify sampling uncertainty

Version 1.0 includes the inference layer introduced for the v0.4 roadmap. Rows, predictions, exposures, and weights are resampled jointly.

intervals = ae.bootstrap_evaluate(
    y_true,
    y_pred,
    exposure=exposure,
    task="claim_frequency",
    metrics=["rmse", "ae_ratio", "normalized_gini", "tail_ae_95"],
    n_resamples=2_000,
    confidence_level=0.95,
    random_state=42,
)

print(intervals.to_dataframe())

For model comparisons, paired resampling evaluates every model on the same bootstrap rows. Negative objective_delta favors the candidate model after accounting for whether a metric is minimized, maximized, or has a target.

paired = ae.paired_bootstrap_compare(
    y_true,
    {"Current GLM": glm_predictions, "Candidate": boosting_predictions},
    reference="Current GLM",
    task="claim_frequency",
    metrics=["poisson_deviance", "ae_ratio", "normalized_gini"],
    n_resamples=2_000,
    random_state=42,
)

Confidence intervals are descriptive sampling-uncertainty estimates. Paired comparisons are not automatically adjusted for multiple testing.

Segment and temporal monitoring

The v0.5 monitoring layer evaluates portfolio slices without changing the meaning of the underlying metrics.

segments = ae.evaluate_by_segment(
    y_true,
    y_pred,
    segment_labels,
    task="claim_frequency",
    exposure=exposure,
    metrics=["ae_ratio", "normalized_gini", "tail_ae_95"],
)

timeline = ae.evaluate_over_time(
    y_true,
    y_pred,
    accounting_period,
    task="claim_frequency",
    exposure=exposure,
    metrics=["poisson_deviance", "ae_ratio"],
)

drift = ae.prediction_drift(
    reference_predictions,
    current_predictions,
    n_bins=10,
)

Prediction drift uses fixed, weighted reference-quantile bins and reports PSI contributions. ActEval intentionally applies no universal PSI alert threshold.

Predictive distributions

Built-in vectorized adapters represent one predictive distribution per observation:

  • PoissonDistribution(mu)
  • NegativeBinomialDistribution(mean, dispersion)
  • GammaDistribution(mean, shape)
  • LognormalDistribution(meanlog, sdlog)
  • TweedieDistribution(mean, power, dispersion) for 1 < power < 2
  • EmpiricalDistribution(samples) for joint or independent scenario draws
poisson = ae.PoissonDistribution(mu=frequency_predictions)

distribution_result = ae.evaluate_distribution(
    claim_counts,
    poisson,
    task="claim_frequency",
    exposure=exposure,
    metrics=[
        ae.MetricSpec("crps", {"n_samples": 5_000, "random_state": 42}),
        "log_score",
        ae.MetricSpec("interval_score", {"coverage": 0.90}),
    ],
)

Samples have shape (n_samples, n_observations). Scalar quantiles have shape (n_observations,); vector quantiles have shape (n_quantiles, n_observations).

Decision-aware evaluation

Financial decisions always expose their loss function and named benchmark. Regret is reported in the financial loss function's unit.

premiums = ae.premium_from_distribution(
    severity_distribution,
    profit_loading=0.08,
    expense_ratio=0.20,
)

pricing = ae.pricing_regret(
    y_true=realized_loss,
    premium=premiums,
    benchmark_premium=current_tariff,
    underpricing_cost=2.0,
    overpricing_cost=1.0,
    benchmark_name="current tariff",
)

ActEval also provides loss-ratio impact, reserve and capital shortfall, and quoted stop-loss reinsurance selection. These are explicit decision models, not interchangeable measures of predictive accuracy.

Reports and exports

Result objects support DataFrames, dictionaries, printable summaries, and standalone HTML reports:

result.save_html("reports/frequency-evaluation.html")
comparison.save_html("reports/model-comparison.html")

ae.export_table(comparison, "reports/model-comparison.csv")
ae.export_table(comparison, "reports/model-comparison.json")

axis = ae.plot_calibration(y_true, y_pred, exposure=exposure)
ae.save_plot(axis, "reports/calibration.png", dpi=180)

HTML reports contain no JavaScript or remote assets and can be archived for offline review.

Input contract

  • y_true and y_pred are finite, one-dimensional, nonnegative arrays on the same scale.
  • Frequency and pure-premium rates should be supplied with policy exposure.
  • Severity observations are normally claim-level; sample_weight is often more meaningful than exposure.
  • When both are present, effective weight is sample_weight * exposure.
  • ActEval does not silently convert claim counts to rates.
  • Observed-tail diagnostics select rows using realized outcomes and are retrospective—not predictive tail probabilities.

Documentation

Development

git clone https://github.com/aminemanai2003/acteval.git
cd acteval
python -m venv .venv
python -m pip install -e ".[dev]"
ruff check .
ruff format --check .
mypy src/acteval
pytest
python -m build

Contributions are welcome. Read CONTRIBUTING.md and the security policy before opening a pull request or reporting a vulnerability.

Versioning and license

ActEval follows Semantic Versioning from 1.0 onward. Public compatibility and deprecation guarantees are documented in the stability policy.

Licensed under the Apache License 2.0.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

acteval_insurance-1.0.0.tar.gz (68.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

acteval_insurance-1.0.0-py3-none-any.whl (59.3 kB view details)

Uploaded Python 3

File details

Details for the file acteval_insurance-1.0.0.tar.gz.

File metadata

  • Download URL: acteval_insurance-1.0.0.tar.gz
  • Upload date:
  • Size: 68.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for acteval_insurance-1.0.0.tar.gz
Algorithm Hash digest
SHA256 0ff8da66f5e514b72a48b3fccf677ac6fb08034c71d0060c5f0c8c341fbf5de3
MD5 041dbd524a5c5768aa2e1abc30c2220a
BLAKE2b-256 660c2f90fc34e264b852404011c2c9d630675524c4904620cf1280946b812c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for acteval_insurance-1.0.0.tar.gz:

Publisher: release.yml on aminemanai2003/acteval

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file acteval_insurance-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for acteval_insurance-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c9fab0941fedd6a6e9a709a629389385cc8c46a28fc5551b9dff14782bf88936
MD5 40e39e7b6fb2f36aac63f0aad374cb94
BLAKE2b-256 6de8e229d51d47fe4ded1dab9aa6ce19e7501109206a260b144c4fd4822ded3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for acteval_insurance-1.0.0-py3-none-any.whl:

Publisher: release.yml on aminemanai2003/acteval

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2.0.0

2 files

This release

1.0.0 This release

2 files

0.3.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page