ADAPT: Physics-Aware Diffusion-based World Models for Adaptive Predictive Transferable HVAC Control
给空调控制AI装上物理常识,让它换季换地方也不掉链子
建筑供暖通风空调(HVAC)系统消耗了全球约三分之一的能源并排放相应比例的二氧化碳,但由于墙壁、地板会先储热再慢慢放热造成的热惯性,控制起来很难,现有AI控制器一旦换到新的季节或气候地区,表现就会大幅下降。研究团队提出ADAPT,用扩散模型(diffusion model)结合建筑热平衡方程来预测室内温度未来的变化,并把这个预测结果提供给强化学习控制器做决策参考。结果显示,在相同条件下,ADAPT比现有最强方法节能7.3%,让人体感不适降低30.2%,而且换到没见过的季节或气候地区时性能几乎没有明显下降。
METAL MEDIA 解读图
给空调控制AI装上物理常识,让它换季换地方也不掉链子
- 01用扩散模型搭建了一个仅依靠有限传感器数据、就能推测建筑内部隐藏储热状态的室内环境世界模型(IEWM)。
- 02预测出一条假设继续沿用上一步空调动作的温度基准线,帮助强化学习控制器判断当前控制决策未来会带来什么延迟效果。
- 03设计了一个可学习的多区域热平衡方程,涵盖房间之间的热交换、室内外热交换、太阳辐射、人体散热和空调设备散热,用它来约束扩散模型的预测结果符合物理规律。
- 04在基于真实办公楼数据的SemiBuildingSim和开源仿真平台Sinergym上测试,在相同季节相同地区条件下,ADAPT比最强基线节能7.3%,不适感降低30.2%。
- 05在夏冬季节切换、斯德哥尔摩与亚利桑那气候地区切换等训练时未见过的场景下,ADAPT性能只有轻微下降,远比现有方法更稳健。
他们做了什么
- 用扩散模型搭建了一个仅依靠有限传感器数据、就能推测建筑内部隐藏储热状态的室内环境世界模型(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 阅读最新论文
- SWE-bench Science: Can Coding Agents Resolve Engineering Tasks in Science?让AI编程助手去修复真实科学软件,连最强的那个也有一半以上任务没做对
- FlashPrefill V2: Block-Sparse Prefill Attention for Long-Context LLM Serving把稀疏注意力从论文原型变成能真正上线服务的加速方案
- PolicyGuide: From Guarding One Action to Guiding the Whole Workflow for Policy-Compliant LLM Agents让客服AI坐席不只是拦住一个危险动作,而是把整个流程走对
- EXIMO: VLM Guided Exploration of VLA Policies不用人工遥控演示,让会说话的AI来教机械臂做新家务
- EnvHarness: Awakening Static Worlds for Agent Learning不重新搭建训练环境,而是给现有环境套一层可插拔组件,针对每个智能体的具体弱点重新塑形
- Bounded Sovereignty and the Control Tax: Pricing AI Oversight When the Deployer Does Not Own the Model租用AI而非拥有AI的机构,安全监管能力只剩一半
- Beyond Imitation: Filtering On-Policy Distillation by Reasoning ProgressAI模仿老师模型学习时,会误伤本来推理正确的步骤,新方法专门过滤掉这种误伤
- PersonalBench: Measuring the Authorship Gap in LLM Personalization让AI模仿某人的文风,结果发现它始终摆脱不了自己的腔调
METAL MEDIA 最新报道
图片来源: Xu Yang et al., arXiv:2608.19804, CC BY 4.0