Skip to content
AI.info

Research

Beta Distribution Learning for Reliable Roadway Crash Risk Assessment

Beta Distribution Learning for Reliable Roadway Crash Risk Assessment Overview Research area: Computer vision and geospatial deep learning for transportation safety — specifically, probabilistic (unce

arXiv
2511.04886
Published
2025-11-07
Authors
Ahmad Elallaf, Nathan Jacobs, Xinyue Ye, Mei Chen, Gongbo Liang

AI summary

Beta Distribution Learning for Reliable Roadway Crash Risk Assessment

Overview

Research area: Computer vision and geospatial deep learning for transportation safety — specifically, probabilistic (uncertainty-aware) crash risk estimation from satellite imagery.

Technical level: Intermediate. The paper assumes familiarity with convolutional neural networks, classification metrics, and calibration concepts such as Expected Calibration Error, but the probabilistic core idea is explained accessibly.

Scope: The paper proposes a framework that replaces deterministic point-estimate crash-risk classification with learning a full Beta probability distribution over risk from multi-scale satellite imagery, and evaluates it on fatal crash data from Texas.

What This Paper Is About

Traditional traffic safety studies analyze risk factors one at a time — driver behavior, road infrastructure, traffic, weather — missing the way these interact in the real built environment. Existing neural risk estimators also output a single number without any indication of how confident the model is, which is a serious weakness when the output is used for safety decisions. This paper reframes crash risk estimation as a probabilistic learning problem: instead of predicting one risk value, the model predicts the two parameters of a Beta distribution, so every prediction carries both a risk score (the distribution mean) and an explicit measure of confidence (the distribution spread).

Key Contributions

  1. A holistic, vision-based risk model that learns from satellite imagery alone, capturing interacting risk factors embedded in the visual scene rather than studying variables in isolation.
  2. A probabilistic formulation in which the network outputs Beta distribution parameters (α, β) rather than a point estimate, producing well-calibrated, uncertainty-aware predictions suited to safety-critical use.
  3. A procedural labeling technique that converts random-crop data augmentation into supervisory signals, generating a target Beta distribution per training sample whose mean and concentration depend on crop centrality and crop size.
  4. A scalable, equitable methodology built on near-globally available satellite imagery, enabling risk assessment for highways and for local roads that are typically under-assessed due to data scarcity.

Main Findings

  • Recall improvements of 17–23%: The multi-scale probabilistic model, Prob-MS, reaches recall of 0.5311 on the strongest baseline's comparison point (a 17% relative gain over MSCM-MS at 0.4521), while the single-scale Prob-SS model reaches 0.6070 recall, a 23% relative gain over the best baseline (0.4950). Because the paper treats recall as the most critical metric — "of all crash locations, what fraction did our model successfully identify?" — the authors frame this as the headline result.
  • Best overall balance for Prob-MS: Prob-MS attains the highest F1 (0.5762), the highest AUC (0.8663), the highest PRC (0.6489), the lowest ECE (0.0881 in Table 1; the body text prints this as "0.881"), and the lowest Brier score (0.1211) among the single models compared.
  • Single-scale baselines near chance on positive cases: ImageNet (F1 0.4753, recall 0.4555) and MSCM-SS (F1 0.4966, recall 0.4950) both fall below 0.5 precision and recall, meaning their positive predictions are close to random.
  • The multi-scale baseline has high precision but poor recall: MSCM-MS achieves precision of 0.6731 but recall of only 0.4521, failing to identify more than half of all crash locations — the authors call this unreliable for safety-critical use.
  • Ensemble comparison: Against a three-trial deep ensemble of MSCM-MS, a single Prob-MS model is competitive (recall 0.5311 vs 0.5165, roughly 3% higher), with better calibration and lower uncertainty, at one third the training and inference computational cost. Ensemble-to-ensemble, Ensemble Prob-MS leads on F1 (0.5976 vs 0.5966), recall (0.5361 vs 0.5165), ECE (0.0605 vs 0.0787), Brier (0.1075 vs 0.1112), variance (0.0822 vs 0.0925), and disagreement rate (15.14% vs 16.93%).
  • Calibration and stability gains: The conclusion reports up to 17% improvement in ECE on calibration and about 11% more stability relative to baselines.
  • Rational uncertainty behavior: Uncertainty is lowest for confident predictions (e.g., risk 0.051 with uncertainty 0.006 for a simple suburban neighborhood; risk 0.924 with uncertainty 0.010 for a high-traffic coastal road) and widest for ambiguous cases around a 0.5 risk score.
  • Interpretable failures: False negatives and false positives both come with wider, higher-uncertainty Beta distributions, signaling that the visual evidence was ambiguous rather than silently asserting a wrong answer.
  • Aggregate distribution shape: Baseline models cluster predictions at the extremes of 0 and 1 like overconfident black boxes, whereas the Beta model uses the full probability range.
  • San Antonio River Walk case study: Over 140 locations were scored. MSCM-MS missed close to half of the historical fatal crash sites and produced spatially incoherent, polarized risk values with sharp gradients between adjacent points; Prob-MS assigned elevated risk to more known crash sites — including the intersection near Navarro St and Villita St — and produced a smoother, more spatially coherent risk field.
  • Surrogate loss validated: The mean-variance surrogate for squared Wasserstein-2 distance closely tracks the true distance for Beta distributions, with errors typically on the order of 1e-3 to 1e-2, growing only slightly in extreme parameter regions.

Methodology in Plain English

The researchers take satellite images of a location at three zoom levels and treat fatal crash risk as a continuous quantity between 0 and 1 rather than a yes/no label.

The probabilistic core. A network processes the imagery and outputs two positive numbers, α and β, which define a Beta distribution. The risk score is the mean of that distribution, α/(α+β). A sharp, narrow distribution means the model is confident; a wide one means it is unsure. This is why two locations can both display a risk of about 0.50 but carry very different meaning — for example, α=10, β=10 (low confidence) versus α=2, β=2 (very uncertain).

Turning augmentation into supervision. Rather than static labels, the authors generate a target Beta distribution for each training sample from the geometry of the random crop used in augmentation. Negative samples (no crash) get a sharply peaked low-risk target. Positive samples get a target shaped by an "influence" score — a weighted combination of how centered the crop is on the crash point (weight 0.7) and how large the crop is relative to the original (weight 0.3). The intuition is that visual evidence most relevant to risk, such as lane markings, intersections, and road geometry, is concentrated near the crash location, so a well-centered crop deserves a more confident target. This makes augmentation a structured form of label smoothing and a source of continuous supervision.

Training. The model uses a ResNet-50 backbone with a shared feature extractor feeding two heads: a distribution learning head that outputs α and β, and an auxiliary classification head for the binary crash/no-crash task. Images at different resolutions pass through the shared backbone and their feature maps are concatenated before the heads. Training jointly optimizes a mean-variance loss based on a squared Wasserstein-2 surrogate, which directly optimizes the risk score (mean) and confidence (standard deviation) at once, plus a binary cross-entropy loss, combined with weights λ₁=5 and λ₂=1 to prioritize recall.

Inference. The random crop and the auxiliary classification head are dropped. The full uncropped multi-scale image goes through the backbone and distribution head, and the risk score is read off as the distribution mean — a fast, feed-forward operation.

Data and setup. Experiments use the MSCM dataset from Texas: 240,828 satellite images at 768×768 pixels across three resolutions (1.1943, 0.5972, and 0.2986 m/pixel), sampled from 80,276 locations. The positive class is 16,451 locations with at least one fatal crash between 2010 and 2020, of which 1,185 had multiple fatal crashes within a 50-meter radius. Negatives were selected to be within 1250 meters of a fatal crash location but at least 250 meters from any such site, with roughly 70% designated hard negatives along primary and secondary roads and 30% sampled randomly.

Why This Matters

Impact on research. The paper argues that moving from deterministic point estimates to full probabilistic distributions is a necessary step for trustworthy AI in public safety. It offers a concrete recipe for using data augmentation as a source of uncertainty supervision, and it demonstrates that a probabilistic single model can rival a deep ensemble while requiring only a third of the compute. It also extends crash risk analysis beyond the highways that dominate prior work to local roads, which are harder to study because data is sparse.

Real-world applications:

  • Safer routing for drivers and autonomous vehicles: a risk map with per-prediction confidence supports more sophisticated path planning than a single risk number.
  • Urban planning and infrastructure prioritization: planners can flag and act on high-risk corridors, with uncertainty acting as a signal about where evidence is thin.
  • Equitable resource allocation: high uncertainty can flag areas where historical crash data may be under-reported, prompting human investigation rather than automatic action.
  • Human-in-the-loop safety review: because the model signals when it is unsure, its outputs can be triaged — confident high-risk hits for action, uncertain cases for expert review.

Industry relevance. The method uses only publicly available satellite imagery, which the authors note sidesteps privacy concerns tied to other data sources such as telematics or driver records. Because imagery is near-globally available, the approach is positioned as cost-effective and scalable for municipalities, insurers, mapping providers, and autonomous-driving companies without needing proprietary or manually labeled risk datasets.

Future Directions

  • Incorporate dynamic variables. The current model estimates static, inherent risk only; the authors call for integrating real-time traffic and weather data streams.
  • Test geographic generalizability. The study is constrained to Texas, so validation on diverse international datasets is described as a critical next step.
  • Learn the labeling weights. The centrality (0.7) and size (0.3) weights in the procedural labeling scheme are hand-set; a learned weighting mechanism is proposed as an extension.
  • Move toward causal inference. The model identifies strong correlations, and the authors suggest future work could explore methods for causal inference.
  • Extend the risk field to time. The framework's spatial-only decay formulation leaves the temporal component of the risk field noted in the method but not modeled.

Target Audience

This paper is most useful to researchers working on uncertainty-aware deep learning and geospatial computer vision, and to practitioners in transportation safety, urban planning, and autonomous driving who need risk estimates they can trust and audit. It also serves as a readable case study for anyone interested in how probabilistic output layers and calibration metrics (ECE, Brier score) can be applied to a sparse-event, safety-critical prediction problem.

Authors’ abstract

Roadway traffic accidents represent a global health crisis, responsible for over a million deaths annually and costing many countries up to 3% of their GDP. Traditional traffic safety studies often examine risk factors in isolation, overlooking the spatial complexity and contextual interactions inherent in the built environment. Furthermore, conventional Neural Network-based risk estimators typically generate point estimates without conveying model uncertainty, limiting their utility in critical decision-making. To address these shortcomings, we introduce a novel geospatial deep learning framework that leverages satellite imagery as a comprehensive spatial input. This approach enables the model to capture the nuanced spatial patterns and embedded environmental risk factors that contribute to fatal crash risks. Rather than producing a single deterministic output, our model estimates a full Beta probability distribution over fatal crash risk, yielding accurate and uncertainty-aware predictions--a critical feature for trustworthy AI in safety-critical applications. Our model outperforms baselines by achieving a 17-23% improvement in recall, a key metric for flagging potential dangers, while delivering superior calibration. By providing reliable and interpretable risk assessments from satellite imagery alone, our method enables safer autonomous navigation and offers a highly scalable tool for urban planners and policymakers to enhance roadway safety equitably and cost-effectively.

Read the original paper