Bayesian Trigger Model
MC Dropout / Bayesian neural network
A payout model that returns both a mean estimate and an uncertainty band.
Paper focus
Uncertainty-Aware Trigger Calibration for Parametric Insurance
This model shows the spread around the payout estimate instead of only showing one number.
It uses the same weather inputs as the MLP page but adds uncertainty to the final output.
It helps when a decision near attachment should show whether the model is confident or not.
The current Bayesian page trains on synthetic weather-loss rows shaped like the backend tabular pipeline.
- Synthetic rows match the event-level tabular payout workflow used by the backend.
- The model reports both mean payout and uncertainty from repeated forward passes.
- This is a practical approximation of the paper, not a dataset match.
- Reuses the tabular payout pipeline and keeps dropout active during inference to produce multiple stochastic passes.
- Aggregates mean and spread into one decision output so payout level and uncertainty are visible together.
- Serves a live case-analysis response from the latest trained checkpoint rather than a hard-coded chart.
Mathematical model
- Monte Carlo dropout approximates the Bayesian posterior by sampling dropout masks during inference.
- Mean μ(x)=1/S Σ_{s=1}^S ŷ_s(x) and predictive variance σ²(x) are computed from the same stochastic passes.
- The policy widens/narrows the trigger by inspecting μ ± k·σ so uncertain cases trigger review.
μ(x) = 1/S Σ_{s=1}^S ŷ_s(x), σ²(x) = 1/S Σ_{s=1}^S (ŷ_s(x) - μ(x))²
Pros
- Adds uncertainty bands to the tabular payout pipeline.
- Highlights borderline events so reviewers can request additional evidence.
- Uses MC dropout so it is easy to integrate with existing network definitions.
Cons
- MC dropout is only an approximation to the paper’s deep sigma-point process.
- Inference cost grows linearly with the number of stochastic passes.
- Downstream policy editors must agree on what σ means before adjusting thresholds.
Results
Attachment
—
Decision boundary applied to the model output.
Payout MAE
—
Average absolute payout error on the held-out split.
Payout RMSE
—
Root-mean-square payout error on the held-out split.
Basis Risk
—
Threshold mismatch rate after calibration.
Test Uncertainty
—
Average predictive spread on the test split.
This ruler shows where the current case sits relative to the deployed trigger threshold.
Live case inference
Hong Kong Cold-Chain Warehouse — Typhoon Saola
Architecture
- Structured weather features into dense layers with dropout retained at inference
- Monte Carlo samples aggregated into mean payout and uncertainty band
- Decision policy uses the uncertainty band when the score is near attachment
Inputs
- Same structured event features as the MLP baseline
- Dropout rate and number of stochastic forward passes
- Optional case-analysis settings such as sample count
Outputs
- Mean payout estimate
- Uncertainty interval and standard deviation
- A recommendation for review when the interval overlaps attachment