ADAPT: Physics-Aware Diffusion-based World Models for Adaptive Predictive Transferable HVAC Control
给空调控制AI装上物理常识,让它换季换地方也不掉链子
建筑供暖通风空调(HVAC)系统消耗了全球约三分之一的能源并排放相应比例的二氧化碳,但由于墙壁、地板会先储热再慢慢放热造成的热惯性,控制起来很难,现有AI控制器一旦换到新的季节或气候地区,表现就会大幅下降。研究团队提出ADAPT,用扩散模型(diffusion model)结合建筑热平衡方程来预测室内温度未来的变化,并把这个预测结果提供给强化学习控制器做决策参考。结果显示,在相同条件下,ADAPT比现有最强方法节能7.3%,让人体感不适降低30.2%,而且换到没见过的季节或气候地区时性能几乎没有明显下降。
他们做了什么
- 用扩散模型搭建了一个仅依靠有限传感器数据、就能推测建筑内部隐藏储热状态的室内环境世界模型(IEWM)。
- 预测出一条假设继续沿用上一步空调动作的温度基准线,帮助强化学习控制器判断当前控制决策未来会带来什么延迟效果。
- 设计了一个可学习的多区域热平衡方程,涵盖房间之间的热交换、室内外热交换、太阳辐射、人体散热和空调设备散热,用它来约束扩散模型的预测结果符合物理规律。
- 在基于真实办公楼数据的SemiBuildingSim和开源仿真平台Sinergym上测试,在相同季节相同地区条件下,ADAPT比最强基线节能7.3%,不适感降低30.2%。
- 在夏冬季节切换、斯德哥尔摩与亚利桑那气候地区切换等训练时未见过的场景下,ADAPT性能只有轻微下降,远比现有方法更稳健。

| Algorithm | Energy (kWh) ↓ Abs PMV ↓ | PPD (%) ↓ | Action Fluctuation ↓ |
|---|---|---|---|
| MPC | 251.00 ± 9.79 | 0.56 ± 0.06 16.20 ± 1.08 | 9.94 ± 1.13 |
| A2C | 247.28 ± 3.21 | 0.48 ± 0.03 13.05 ± 1.46 | 6.02 ± 1.03 |
| PPO | 236.52 ± 2.90 | 0.46 ± 0.04 12.62 ± 0.75 | 4.94 ± 1.46 |
| DQN | 248.41 ± 3.89 | 0.50 ± 0.05 13.02 ± 0.77 | 6.59 ± 0.55 |
| BDQ | 241.87 ± 2.73 | 0.45 ± 0.05 11.40 ± 1.28 | 5.40 ± 0.46 |
| TransformerRL | 233.97 ± 4.36 | 0.42 ± 0.03 11.72 ± 1.62 | 4.66 ± 0.65 |

| Hyperparameter | Value |
|---|---|
| Planning horizon 𝐻 | 6 |
| Number of candidate sequences 𝑁 | 16 |
| Number of elite samples 𝐾 | 4 |
| Planning iterations 𝑀 | 3 |
| Discount factor 𝛾 | 0.98 |
| Hyper-parameter | Value | Hyper-parameter | Value |
|---|---|---|---|
| Optimizer | Adam | Learning rate | 2×10−3 |
| Discount factor 𝛾 | 0.99 | Replay buffer size | 5×105 |
| Batch size | 64 | Exploration 𝜀 | 1.0 → 0.04 |
| Target update interval | 1000 steps | TD(𝜆) parameter | 0.8 |
| Bootstrap horizon 𝐻 | 3 | Forecaster horizon 𝐻fore | 3 |
| Network architecture | (512, 512) | Forecaster History step 𝑇 | 6 |
| Parameter | DQN | BDQ | A2C | PPO | TransformerRL |
|---|---|---|---|---|---|
| Learning rate | 2×10−3 | 2×10−3 | 8×10−4 | 10−3 | 10−3 |
| Discount factor 𝛾 | 0.99 | 0.99 | 0.98 | 0.98 | 0.98 |
| Batch size | 64 | 64 | 40 | 1200 | 1200 |
| Network hidden dim | 256 | 512 | 256 | 256 | 256 |
| GAE 𝜆 | – | – | 0.9 | 0.8 | 0.8 |
| PPO Clip 𝜀 | – | – | – | 0.2 | 0.2 |
| Entropy coef. | – | – | 0 | 0.01 | 0.01 |
| Parameter | MBVE | MBPO | DreamerV3 |
|---|---|---|---|
| Rollout / Imagination horizon | 8 | 8 | 8 |
| Transitions / Starts per iter. | 256 | 1024 | 256 |
| Blend / Return 𝜆 | 1.0 | – | 0.95 |
| Warmup (iters) | 3 | 3 | 3 |
为什么重要
密集布设室内传感器成本高、还涉及隐私问题,现实中运营者往往只能收集单一场景下的有限数据,却希望控制系统能在没见过的季节或地区照样好用,这项研究提供了一条实现思路。它同时兼顾节能和舒适度,预测结果又符合物理规律,对建筑减碳和实际部署都有参考价值。
本文术语
- 扩散模型(diffusion model) · 一种从随机噪声出发、逐步去噪生成数据的生成式AI方法,这里用来预测室内环境未来走势
- 热惯性(thermal inertia) · 墙壁、地板、家具等先储存热量再缓慢释放的现象,使得空调动作的效果不会立刻显现
- 部分可观测马尔可夫决策过程(POMDP) · 一种决策框架,系统真实的内部状态无法完全获知,只能依靠部分传感器信息做判断
- 分布外(OOD) · 指模型训练时未见过的季节或气候等新条件
- 强化学习(reinforcement learning) · 一种让控制器通过不断试错来学习如何最大化奖励的AI训练方法
无法转载的图表
- Figure 1
- Figure 2
- Figure 3
- Figure 1: Overall framework of ADAPT. The training process of ADAPT is divided into two phases. Phase I: Physics-aware Diffusion IEWM Training. Phase II: Online RL Policy Learning. IEWM is frozen during phase II. 3.3 Physics-aware Thermal Regularization The conditional diffusion IEWM can effectively model offline trajec- tories. However, vanilla data-driven learning may exploit domain- specific st
- Figure 1: Overall framework of ADAPT. The training process of ADAPT is divided into two phases. Phase I: Physics-aware Diffusion IEWM Training. Phase II: Online RL Policy Learning. IEWM is frozen during phase II. 3.3 Physics-aware Thermal Regularization The conditional diffusion IEWM can effectively model offline trajec- tories. However, vanilla data-driven learning may exploit domain- specific st
- Figure 7
- Figure 8
- Figure 9
- Figure 10
- Figure 11
论文原文摘要(英文)
Buildings account for roughly one-third of global energy consumption and CO$_2$ emissions. Optimizing indoor climate systems plays a critical role for urban climate mitigation aligned with UN Sustainable Development Goals 11 and 13. However, indoor delayed thermodynamic responses and partial observability severely hinder existing methods, which are primarily limited by implicit thermal inertia, occupancy dynamic prediction, and cumulative prediction errors, especially for out-of-distribution environments. In practice, these challenges are further exacerbated by the high cost and privacy burden of dense indoor sensing, forcing operators to collect only limited data in a single operating regime while expecting controllers to generalize reliably across unseen seasons and climate regions. To address this problem, we propose ADAPT, a physics-aware conditional diffusion indoor environmental world model for HVAC control. The model predicts a short-horizon held-action thermal baseline to capture the latent thermal inertia of the buildings. The diffusion backbone utilizes the robustness of generative models, while a learnable multi-zone heat-balance regularizer constrains generated trajectories to satisfy transferable building thermodynamics without requiring known building geometry or manually calibrated thermal parameters. A credit assignment is then design for the downstream reinforcement learning. Extensive experiments on SemibuildingSim and Sinergym demonstrate that ADAPT reduces HVAC energy consumption by 7.3\% and occupant discomfort by 30.2\% compared with state-of-the-art baselines under IID control. Under OOD control scenarios spanning unseen seasons and climate regions, ADAPT maintains robust performance with only marginal degradation relative to its IID performance, substantially outperforming existing methods in transfer robustness.
在 arXiv 阅读最新论文
- Specification-delta-driven data governance: an empirical study of the {\guillemotleft}spec-delta{\guillemotright} as the unit of change in lakehouse data platforms把数据平台的变更当作可审阅的'规格增量'来管理,而不是靠代码差异——一篇实验设计论文
- Are LLMs becoming similarly creative? Evidence from three years of models三年数据显示,不同AI聊天机器人给出的答案正变得越来越相似
- Auditing Cross-Lingual Fairness in Language Model Watermarking本该识别AI生成文本的水印技术在非英语语言中表现明显更差,而且这种差距按语系而非单个语言呈现
- TESTNAV: Pareto-Guided Search for Compositional Robustness Testing测试AI模型面对多种叠加干扰时不必穷举所有组合,也能找出真正危险的失败案例
- Optimal Skill Selection for LLM Agents with Provable Bicriteria Guarantees让AI编程智能体挑选该装入哪些技能文档,并从数学上保证接近最优的方法
- Reliable Financial Named Entity Recognition under Domain ShiftAI在正式文件里学到的自信,一到推特上就变得不可信
- FlashPrefill V2: Block-Sparse Prefill Attention for Long-Context LLM Serving把稀疏注意力从论文原型变成能真正上线服务的加速方案
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy Correction文本信息缺失或损坏时,这个AI不靠一次性猜测,而是反复修正猜测结果,从而更准确地判断情绪
METAL LAB 最新报道
图片来源: Xu Yang et al., arXiv:2608.19804, CC BY 4.0