Research Papers 论文研究 3d ago Updated 3d ago 更新于 3天前 47

Less Tokens, Better Forecasts: Sparse Residual Routing for Efficient Weather Prediction 少Token,更好预测:用于高效天气预测的稀疏残差路由

Introduction of Sparse-Reslim, a parameter-free plug-in routing module that enables sparse token processing for dense spatiotemporal prediction tasks like weather forecasting. The method routes only 25% of spatial tokens through expensive middle transformer blocks, treating them as residual updates to preserve the integrity of the full latitude-longitude grid. Unselected tokens retain their pre-routing representations exactly, avoiding the need for masking, fusion layers, or additional parameter 提出 Sparse-Reslim 模块,通过稀疏残差路由解决 ViT 气象模型中计算冗余问题,仅对 25% 空间 Token 进行密集计算。 采用“增量散射”机制,未选中 Token 保持原表征不变,确保全网格物理一致性,无需额外参数或融合层。 在 ERA5 数据及确定性 Transformer 与扩散模型上验证,训练速度提升 2.5-3.18 倍,峰值内存降低超 2.2 倍,且所有变量预报精度均提升。

65
Hot 热度
70
Quality 质量
68
Impact 影响力

Analysis 深度分析

TL;DR

  • Introduction of Sparse-Reslim, a parameter-free plug-in routing module that enables sparse token processing for dense spatiotemporal prediction tasks like weather forecasting.
  • The method routes only 25% of spatial tokens through expensive middle transformer blocks, treating them as residual updates to preserve the integrity of the full latitude-longitude grid.
  • Unselected tokens retain their pre-routing representations exactly, avoiding the need for masking, fusion layers, or additional parameters.
  • Empirical results show significant efficiency gains, including 2.5x faster training, 3.18x speedup at 0.25-degree resolution, and over 2.2x lower peak memory usage.
  • Forecast accuracy improves across all evaluated variables on both deterministic Transformer and diffusion model families using ERA5 data.

Why It Matters

This research addresses a critical bottleneck in applying Vision Transformers to scientific domains where dense output grids are mandatory, demonstrating that sparsity can enhance rather than degrade performance. By decoupling computational efficiency from the requirement for full-grid physical consistency, it offers a scalable path for high-resolution climate modeling and other dense prediction problems.

Technical Details

  • Architecture: Sparse-Reslim acts as a lightweight, parameter-free insertion into existing ViT-based models, specifically targeting the middle transformer blocks.
  • Mechanism: It selects 25% of tokens for deep processing; the transformer computes the delta (change) for these tokens, which is then scattered back to update the full sequence. Non-selected tokens pass through unchanged.
  • Compatibility: Designed to handle autoregressive rollouts by ensuring every grid cell maintains a physically meaningful representation without dropping cells or using mask tokens.
  • Evaluation: Tested on ERA5 dataset resolutions up to 0.25 degrees, applied to both deterministic Transformers and diffusion models.
  • Analysis: Controlled decomposition indicates that accuracy gains stem primarily from the sparse routing mechanism itself, with random selection providing additional regularization benefits.

Industry Insight

  • Efficiency-Performance Trade-off: Practitioners should reconsider the assumption that sparsity always reduces accuracy in dense prediction tasks; structured sparse routing can yield both speedups and better forecasts.
  • Modular Integration: The parameter-free nature of Sparse-Reslim allows for easy integration into existing state-of-the-art weather and climate models without architectural overhauls.
  • Scalability for High-Resolution Models: With memory and compute costs significantly reduced, this approach facilitates the deployment of higher-resolution models (e.g., 0.25 degree) in resource-constrained environments.

TL;DR

  • 提出 Sparse-Reslim 模块,通过稀疏残差路由解决 ViT 气象模型中计算冗余问题,仅对 25% 空间 Token 进行密集计算。
  • 采用“增量散射”机制,未选中 Token 保持原表征不变,确保全网格物理一致性,无需额外参数或融合层。
  • 在 ERA5 数据及确定性 Transformer 与扩散模型上验证,训练速度提升 2.5-3.18 倍,峰值内存降低超 2.2 倍,且所有变量预报精度均提升。

为什么值得看

本文针对气象预报这一典型的时空密集预测任务,巧妙平衡了计算效率与物理网格的一致性要求,为视觉 Transformer 在科学计算领域的高效部署提供了新思路。其参数无关的插件式设计使其易于集成到现有主流气象大模型中,具有极高的工程实用价值。

技术解析

  • 核心机制:Sparse-Reslim 是一个无参数的插件式路由模块。它将昂贵的中间 Transformer 块视为残差更新单元,仅将 25% 的空间 Token 送入这些块进行处理。
  • 残差散射策略:模型计算被路由 Token 产生的变化量(Delta),并将此增量散射回完整序列。未被选中的 Token 直接保留输入表征,避免了掩码 Token 或特征融合带来的信息损失。
  • 实验设置与结果:在 ERA5 数据集(最高至 0.25° 操作标准分辨率)上,结合确定性 Transformer 和扩散模型两种架构进行测试。结果显示,该方法不仅显著降低了计算成本(训练加速 2.5x-3.18x,内存降低 2.2x+),还提高了所有评估变量的预报准确率。
  • 消融实验洞察:控制分解表明,精度提升主要源于稀疏路由本身的结构优势,而随机 Token 选择则提供了额外的正则化效果,且无需开销。

行业启示

  • 科学 AI 的效率优化方向:在气象、气候等需要保持物理网格一致性的领域,简单的 Token 剪枝或合并可能破坏物理意义,基于残差更新的稀疏计算是更优的技术路径。
  • 即插即用的模块化设计:证明无需重新训练整个模型,仅通过引入轻量级、无参数的路由模块即可显著提升现有大模型的推理效率和精度,降低了技术落地门槛。
  • 稀疏性作为正则化手段:研究揭示了稀疏处理不仅用于加速,还能通过限制信息流动路径起到正则化作用,有助于提升模型的泛化能力和预报准确性。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Research 科学研究 Inference 推理 Deployment 部署