Vault 资讯瀑布媒体2026.08.26 23:15 UTC+8

🔬“我们有语言基础模型,但没有物理基础模型”——Anima Anandkumar,Bren计算教授

Anima Anandkumar 开发开源天气模型 FourCastNet,并开创神经算子技术,用于模拟多尺度物理系统。

几年前,加州理工学院教授、Accelerated Understanding 联合创始人 Anima Anandkumar 着手开发首个开源 AI 天气模型。与领域专家交谈时,她遭到了质疑。天气是混沌的,物理模拟很难,已经发展了几十年,需要超级计算机,数据也不够。尽管有保留意见,Anima 还是继续前进并构建了模型。一年之内,她的团队开发出了 FourCastNet,一个与现有最佳物理模拟相媲美的预测模型。得益于 Anima 及其后续工作,现在任何人都可以使用消费级 GPU 在短时间内准确预测天气。1

在我们 Latent.Space 发布的约 15 集科学节目中,我们涵盖了原子、分子、材料、生物学和数学。Anima 是研究连续物理系统的先驱。天气、聚变、流体或热流是巨大的科学领域,极难建模:它们规模大、混沌且本质上是多尺度的。这是 AI 社区有些忽视的领域,但我们预计它会快速增长。我们计划在接下来的节目中更多地报道大型物理系统。

从 Anima 的工作中可以了解到,这个 AI 领域抵制了渗透到该领域其他部分的扩展思想。数据不存在:许多这些领域的开源数据集仅限于数万或数十万个示例,远不能满足需要大量 token 的 transformer。更糟糕的是,物理要求的分辨率将上下文长度推高到数千亿,因此你不能只是向问题投入更多 token。但这并不是上限,只是一条更慢的道路:这里的进展来自于构建结构和归纳偏置。抱歉,所有那些苦于教训的 LLM 建模者。

“如果每个维度只有几百个网格点,这是工业规模开始的地方……我们谈论的是数千亿甚至一万亿的上下文长度。所以忘掉任何这种规模的 transformer 吧,全世界的算力都不够。”

底层数学

为了处理这些系统,Anima 开创了一种称为神经算子的技术,这是过去十年 AI 中最美丽的理论发展之一。2 这些允许你结合数据和物理定律,实现多尺度输入和输出。我们不再对网格建模,而是对跨多个尺度演化的函数建模。这使得 Anima 和团队能够基于物理直觉构建先验。

神经算子 如果我们创建一个每一层本身都是函数的神经网络会怎样?

🔬“We have foundation models for language, not for physics” — Anima Anandkumar, Bren Professor of Computing

A few years ago, Caltech Prof. and co-founder of Accelerated Understanding, Anima Anandkumar set out to develop the first open-source weather model with AI. Talking to experts in the field, she was met with skepticism. Weather is chaotic, physics simulations are hard, have been developed for decades, and require supercomputers, the data just isn’t there. Despite reservations, Anima went forth and built. Within a year her team had developed FourCastNet, a predictive model that is competitive with the best physics-based simulations available. Thanks to Anima, and her follow up work, anyone can now predict weather accurately over a short timescale using consumer grade GPUs.1

In the fifteen or so science episodes we’ve released on Latent.Space, we’ve covered atoms, molecules, materials, biology, and math. Anima is a pioneer in studying physical systems that are continuous. Weather, fusion, and fluid or heat flow are huge areas of science that are extremely difficult to model: they are large, chaotic, and fundamentally multi-scale. This is a field the AI community has somewhat neglected, but one we expect will grow fast. We plan to cover large physical systems more in coming episodes.

One thing you can glean from Anima’s work is that this area of AI resists the scaling ideas that have permeated the rest of the field. The data isn’t there: open source datasets in many of these domains are limited to tens or hundreds of thousands of examples, far from what token-hungry transformers need. Even worse, the resolution that physics demands pushes the context length into the hundreds of billions, so you can’t just throw more tokens at the problem. That isn’t a ceiling though, just a slower road: progress here comes from building in structure and inductive biases. Sorry for all you bitter-lesson-pilled language modelers.

“If each dimension is even a few hundred grid points, which is where industrial scale starts... we’re talking hundreds of billions to even a trillion context length. So forget ever having a transformer for anything of this scale, all of the world’s compute will not be enough.”

The math underneath

To tackle these systems, Anima pioneered a technique known as Neural Operators, one of the most beautiful theoretical developments in AI of the last decade.2 These allow you to combine data and physical laws to enable multi-scale inputs and outputs. We’re no longer modeling a grid, we’re modeling a function that evolves over many scales. This allows Anima and crew to build in priors based upon physical intuition.

Neural Operators What if we created a neural network where every layer was itself a function?

To see how physical priors are still helpful for AI modeling, let’s revisit the problem of weather forecasting on a global scale. The earth is a sphere, which meant that accurate modeling involved using the right basis set —3 the Spherical Harmonics. Run a weather model on a grid and it blows up fast. Move to the natural basis for the problem and it stays stable far longer, long enough to roll out months ahead instead of days. Anima’s Fourier Neural Operator learns directly in this frequency domain, and its spherical variant powers FourCastNet 3, which models the weather across the whole globe and keeps running stably far into the future.

FourCastNet 3 The earth is (almost) a sphere — bake the spherical harmonics into your network!

The physical world is forgiving

Anima explored Neural Operators across other physical domains too, and one striking observation is that the physical world is more forgiving than you’d expect. In fusion, a few thousand samples are enough to predict plasma disruptions, and to do it a million times faster than traditional simulation.

None of this is a rejection of scale, it is a different route to it. Anima ultimately still wants to build a “foundation model for physics”, a model that spans many phenomena and does both simulation and design. You get there by building in the structure the physical world already has, not by waiting for data that will never exist. It is a start, and it will take longer than the token-driven parts of AI, because for the physical world tokens were never the answer.

“All of the things that work with deep learning, let’s take them, but make them a bit more principled.”

Weather is only the beginning

Neural operators and weather modeling were a personal passion of mine, so we’ve spent much of this blog and the episode exploring this work. Anima has done so much more! In the episode, we cover several other recent developments from Anima:

- Anima has a series of works integrating neural networks and automated proof techniques. We talk about TorchLean, a new framework that lets you write PyTorch-style networks inside the proof assistant Lean and formally verify them. This is a major step for proving bounds on neural networks, something that would be really important for someone trying to, e.g., add a neural network as part of the control loop to their fusion reactor!

- Anima was recently appointed to the United Nations Scientific Advisory Board! We talk with her about her goals of bringing evidence-based viewpoints to policy, and how AI in scientific domains can improve people’s lives all over the world.

This episode has something for every AI or science nerd! Elegant math? ✅ Old school harmonic analysis? ✅ Fundamental developments in modern AI? ✅ Practical ways of modeling the physical world? ✅

Give it a watch!

1

Work that has blossomed into an entire field of AI forecasting, a theme we will cover more on the podcast in coming months.

2

This is an elegant and very technically deep paper. Excellent nerd snipe if you have a big block of time to study!

3

All emdashes were human generated.

查看原始发布