0 cumulative citations
View corpus contextA pollutant-aware forecasting model sharpens air-quality predictions: AirFlow cuts RMSE by up to 11.11% versus leading baselines across three Chinese cities while remaining extremely lightweight (0.0483M parameters), showing that channel-specific normalization and multi-rate state modeling can outperform heavier spatial-graph approaches in station-level scenarios.
Citation observations
Cumulative provider counts captured on specific dates; providers are never combined.
Accurate air quality forecasting is essential for public health and urban environmental management, but remains challenging because pollutant channels differ in periodicity and distribution drift, while their concentration trajectories contain both multi-scale dependencies and rapid changes. Recent methods have improved spatial dependency learning and meteorological covariate modeling. However, pollutant channels are still passed through the same normalization rule and temporal backbone, using a shared latent representation for channel-specific distributions and changes at different rates. To address this limitation, we propose AirFlow, a pollutant-aware dual-stream framework that operates on station multivariate observations without additional graph propagation or predefined signal decomposition. Specifically, AirFlow designs two novel blocks: (1) a statistic-guided normalization routing mechanism that selects a normalization path for each pollutant according to its 24-hour autocorrelation and distribution drift; and (2) a hierarchical dual-stream state model that combines multi-scale state space propagation with learnable response coefficients, where gated bidirectional cross-attention exchanges information and adaptively fuses the resulting representations. Experiments on real-world data from multiple cities show that AirFlow achieves the best performance in 34 of 36 metrics comparisons, with reductions of up to 11.11% root mean square error over the state-of-the-art baseline. AirFlow also requires only 0.0483M parameters and 0.0215G FLOPs, achieving high forecasting accuracy with low computational overhead.
Summary
Main Finding
AirFlow is a lightweight, pollutant-aware temporal model for station-level air quality forecasting that (1) routes each pollutant–station time series through a normalization operator chosen by simple channel statistics, and (2) models multi-rate temporal behavior with a hierarchical dual-stream latent state architecture (structural memory + transient dynamics) fused by gated bidirectional cross-attention. Without relying on additional spatial graph propagation or auxiliary meteorological inputs, AirFlow achieves state-of-the-art accuracy on three Chinese-city datasets (Beijing, Tianjin, Hangzhou), winning 34 of 36 metric comparisons and reducing RMSE by up to 11.11% versus the strongest baseline, while using only ≈0.0483M parameters and ≈0.0215G FLOPs.
Key Points
- Core motivation: pollutant channels differ in periodicity and distribution drift, and concentration trajectories combine persistent context and rapid transient events. A single normalization and single temporal backbone across pollutants can be suboptimal.
- Statistic-guided normalization routing:
- Compute per-station, per-pollutant diurnal autocorrelation (ρ) and a drift-rate score (ν).
- Route each pollutant–station pair to either MinMax (preserve cross-window absolute levels when periodicity is high) or RevIN (instance-wise standardization to reduce local level/scale shifts when drift is stronger).
- Hierarchical Dual-Stream State Model:
- Structural Memory Stream (SMS): depthwise conv + selective propagation (state-space–style propagation) to preserve contextual memory and selective long-term structure.
- Transient Dynamics Stream (TDS): recurrent-like latent features with learnable per-feature response coefficients to allow fast/slow responses.
- Gated Bidirectional Cross-Attention (GBCA): bidirectional conditioning between SMS and TDS followed by a tokenwise gate to adaptively fuse the two streams.
- Prediction & loss:
- Mean pooling + small MLP decoder.
- Trajectory-aware loss: robust pointwise penalty (quadratic near zero, linear in tails) plus an inter-step variation term to couple adjacent horizons.
- Practical performance:
- Evaluated on hourly data from three cities (Beijing, Tianjin, Hangzhou; 2023–2024) with six pollutants per station (PM2.5, PM10, SO2, NO2, CO, O3).
- Targets included PM2.5, PM10, NO2, AQI.
- Outperformed both general sequence models (LSTM, Transformer, state-space variants) and domain-specific spatiotemporal / physics-guided baselines (Air-DualODE, AirPhyNet, AirFormer).
- Example gains: Beijing PM2.5 RMSE −5.26% vs best baseline; Hangzhou PM10 RMSE −11.11%.
- Computational efficiency: only ~48K parameters and ~21.5M FLOPs — feasible for low-resource or edge deployment.
- Ablation: component removals (routing, dual streams, gated fusion, loss terms) each degrade performance, indicating synergistic contributions.
Data & Methods
- Problem setup: per-station multivariate windows X ∈ R^{L × P} (L = input window length, P = pollutant channels); model predicts O-step horizon for a fixed target pollutant.
- Datasets:
- Public hourly monitoring datasets for Beijing (35 stations), Tianjin (21), Hangzhou (12), covering Jan 1, 2023 – Dec 31, 2024.
- Six pollutants recorded per station. Train/val/test split 8:1:1 chronologically after filtering.
- Normalization routing:
- Periodicity score ρ: Pearson corr between series shifted by one diurnal lag.
- Drift score ν: ratio of weekly-moving-average std to raw std.
- Route rule: choose RevIN when ρ low and ν high; otherwise MinMax using station training extrema.
- Hierarchical Dual-Stream (stacked K blocks):
- SMS: projection + depthwise temporal conv; selective propagation operator updates a latent matrix-state using learned transition coefficients, direct terms — conceptually a discrete linear state propagation with input modulation.
- TDS: recurrent updates where candidate state is combined with previous state via learnable per-feature response coefficients α (sigmoid of learnable η/τ), enabling multi-rate responsiveness.
- GBCA: multi-head cross-attention in both directions (S queries T; T queries S), then compute a tokenwise gate from conditioned representations to fuse them.
- Training:
- Forecasts trained and evaluated in the appropriate normalization scale; predictions inverse-transformed.
- Loss = robust pointwise penalty (quadratic near zero, linear in tails) + inter-step variation MSE to enforce coherent multi-step trajectories.
- Baselines used: BiLSTM, ConvLSTM, Transformer, LNN, PatchTST, iTransformer, Mamba, plus domain models PM2.5-GNN, AirFormer, STAAGCN, AirPhyNet, MGSFformer, Air-DualODE.
- Evaluation metrics: RMSE, MAE, R^2 on original concentration scale.
Implications for AI Economics
- Cost-performance trade-offs and procurement:
- AirFlow demonstrates that careful temporal modeling and simple per-channel preprocessing can substitute for complex spatial modeling when transport/context data are unavailable. For municipalities or private vendors with limited budgets or sparse auxiliary data, adopting a lightweight model like AirFlow can yield high accuracy with low compute and development costs.
- Low parameter count and FLOPs enable deployment on edge hardware or low-cost cloud instances, reducing operational expenditure (OPEX) compared with heavier graph- or physics-guided models.
- Value to stakeholders and markets:
- Improved short-term forecasts (notably PM10 in some cities) can inform operational decisions (e.g., emission controls, traffic restrictions, public health advisories), which translate into tangible economic benefits (reduced healthcare visits, optimized industrial operations, targeted mobilization of mitigation resources).
- Forecasting-as-a-service providers can leverage lightweight, accurate models to extend services to smaller cities or regions where rich meteorological inputs are unavailable, expanding addressable markets.
- Data investment vs. modeling investment:
- The paper suggests a trade-off: in the absence of high-quality transport/meteorology data, investment in pollutant-aware temporal models can be more cost-effective than investing in expensive sensing networks or advanced spatial models. Public agencies should weigh investments in additional sensors/meteorological data collection against improvements achievable via smarter temporal models.
- Insurance, regulation, and valuation:
- More accurate local forecasts can feed into risk pricing (e.g., health-insurance or environmental-liability models), regulatory compliance monitoring, and enforcement—improving market efficiency in environmental risk transfer and enabling more precise regulatory interventions.
- Labor and capabilities:
- Because AirFlow operates without complex graph construction or physics encodings, it lowers the expertise barrier for deployers: teams with moderate ML skills can implement and maintain it compared with building physics-guided graph models or integrating large external data sources.
- Limitations and economic risk:
- Where spatial transport and meteorological context are critical (long-range transport events, sudden weather-driven dispersion), models that omit these inputs may misforecast extreme cross-station episodes—potentially causing economic misallocation if operators over-rely on them.
- Generalizability: evaluations were on three Chinese-city datasets; economic decision-makers should test local transferability before wide-scale adoption.
- Policy implications:
- Municipalities with constrained monitoring infrastructure might prioritize algorithmic upgrades (deploy AirFlow-like models) to gain immediate forecasting improvements, while longer-term investments build richer environmental sensing and transport data for hybrid approaches.
- Commercialization and competition:
- Compact, high-performing architectures are attractive for productization. They can accelerate competition among air-quality forecasting vendors, potentially lowering prices and increasing availability of forecasting services for smaller municipalities and private actors.
Overall, AirFlow highlights an economically appealing direction: targeted algorithmic design (pollutant-aware normalization + multi-rate latent-state modeling) can achieve strong forecasting performance at low computational and data cost, shifting some investment emphasis from expanding sensing/auxiliary data to smarter temporal modeling where transport context is incomplete.