Problem
Dubai commuter corridors show PM peak average v/c ratio = 0.723. At Sheikh Zayed Rd NB (capacity 12,000 vph), demand peaks at 10,500 vph but throughput saturates — 4.8% of annual hours are at vc_ratio > 0.9, and 15.7% of AM peak hours reach LOS F (gridlock). Annual unserved demand totals 5,660,782 vehicles.
Data Sources
- traffic_volume_hourly — 473K rows, vc_ratio, demand_vph, avg_speed_kph, level_of_service (LOS A–F)
- weather_hourly — Thunderstorm multiplies incident risk 9×, Heavy Rain 6×
- calendar_context — Ramadan shifts: daytime ×0.62, pre-iftar surge ×1.9, iftar lull ×0.45
- incidents_log — 2,439 events: 61 on April 16, 2024 (historic storm)
Pipeline
Model: Mistral-7B fine-tuned on (window × location × weather × calendar) → next-hour vc_ratio. Retrain weekly. Fallback to historical mean + weather adjustment when confidence < 0.7.
Mistral Integration
- Mistral-7B-Instruct as forecasting core — autoregressive chain-of-thought over sliding feature window (168h × 18 sites × 14 features)
- Devstral-22B receives forecast + live incident stream, generates natural-language alert for RTA control room
- Voxtral-4B-TTS synthesises voice alerts in 9 languages
Critics & Refinement
Autoregressive Mistral on 168h × 18 × 14 dimensions = high inference cost. Single-city weather profile (48 rain hours, 126 fog hours/year) means the model will overfit to Dubai's arid-dust climate. Historic events like Apr-16 2024 (61 incidents in 1 day) are distribution outliers that poison training.
Quantize Mistral-7B to Q4 (4.5 GB VRAM), edge-deploy on T4. Use weather normalization — train on weather-conditioned features. Implement outlier isolation: quarantine the 5 days around historic storms, train a separate "extreme weather" Mistral adapter.
Name: Mistral Forecast · Predict Before You Depart
Moat: 15-min, corridor-level ETAs with uncertainty intervals — "SZR NB will reach LOS D in 23 min with 78% confidence"
Market: B2G contract with RTA (AED 2–4M/year); B2B API for ride-hailing/apps
KPI: 30% reduction in forecast MAE vs 2023 baseline; API latency < 200ms; 10K daily API calls by month-6
AI Governance
• Synthetic Data Disclose: This model is calibrated on synthetic RTA-inspired data (seed=42). 90-day shadow-only mode mandatory before any public deployment.
• Hallucination Safeguard: Devstral alert agent can only cite forecast vc_ratio values, dataset-derived confidence intervals, and weather condition strings. Alert text is diff-checked against last hour's alert.
• Bias & Fairness: Model is Dubai-only. Performance evaluated separately for commuter vs leisure corridors, Eid vs non-Eid weeks, pre- and post-Salik-dynamic windows.
• Human in the Loop: RTA operators approve every public voice alert before broadcast. Audit log retained 2 years.
• EU AI Act: Acceptable-risk system under Annex III. Mandatory model card on HF Hub.