Remix.run Logo
tcumulus 3 hours ago

Everything in AI seems to be focused on LLMs lately. But in my opinion, powerful problem-specific models like this are even more interesting. The SOTA AI models used in weather forecasting are already outperforming the classic NWP models while being orders of magnitude more efficient (inference). Most are based on multi scale (hierarchical) Graph Neural Networks, an architecture which is not often talked about. The original Graphcast paper is worth a read if you think this is interesting: https://arxiv.org/abs/2212.12794

amarcheschi 18 minutes ago | parent | next [-]

One of my professors is referenced in the Wikipedia page of graph neural networks. It's funny that he explained them in the worse way possible and I eventually understood them better with another professor

polairscience 3 hours ago | parent | prev | next [-]

You say this as if you don't need he MWP models to train the AI models? The accuracy of the AI Prediction depends entirely on the quality of the training dataset...

geertj 3 hours ago | parent [-]

I would imagine this would be trained on actual historical weather data instead?

sunshinesnacks 2 hours ago | parent | next [-]

Pretty much all of the AI weather prediction models are trained on ECMWF ERA5, which is kinda like a numerical weather prediction model run to forecast at t=0. ERA5 is historical weather data, but it’s a “reanalysis” of it.

tcumulus 2 hours ago | parent [-]

Indeed, you can imagine this as some sort of advanced physics-based interpolation of various measurements (land stations, satellite data, ...) to fill in every cell in a latitude-longitude grid. This is not only used for ERA5 (training data for the models), but also to determine the initial conditions for every grid cell which are used to roll out the forecast. So AI weather models depend greatly on the NWP/physics used in for reanalysis and initial conditions. That being said, there is also research being conducted in training models straight from the raw data (weather stations, satellite, ...), thus bypassing the "interpolation" step.

sunshinesnacks an hour ago | parent [-]

Yeah. I can’t remember names off the top of my head, but there are a few companies, and I think many researchers, working on AI “data assimilation” for this.

plantain 3 hours ago | parent | prev | next [-]

Historical weather data is discrete. You need continuous state for weather modelling which is currently achieved through conventional reforecasts using those historical observations.

RandomLensman 2 hours ago | parent | prev [-]

From a quick read: ECMWF and IBTrACS data - the former is model based (with measurement data crunched), the latter purely observational.

WarmWash 2 hours ago | parent | prev | next [-]

Rumor is that part of the disruption at GDM these past few months also involved people not wanting to be bound to strictly LLM research.

segmondy 35 minutes ago | parent | prev | next [-]

everything in AI is not focused on LLM, if you think so then that's because you are in LLM bubble. The big idea with LLM is that it's generative AI, the generative could be anything! Not just large languages, we have seen break through in image generation, video, audio, but guess what. Anything that you have enough data and given data you can predict what comes next can have gen AI applied, so we are seeing it with physical actions so robots get trained to generate the next move, and I think the same thing applies to weather forecast. It's predictable too given enough data

numbers_guy an hour ago | parent | prev | next [-]

I can assure you that anyone who touches numerical simulations of any kind (physicists, engineers, chemists, biophysicts...etc) has tried their hand at ML based surrogate models in the last 5 years, so it's not like they aren't being tested. From my experience, they aren't very robust. Weather modeling is actually one of the very few areas where it seems to work half decently.

pbronez 3 hours ago | parent | prev [-]

Insightful paper, thanks for sharing. Two things stand out to me.

First, it reinforces that you want methods that get better with more data. It emphasizes that the current approach cannot improve based on historic data - that’s the opportunity that ML based approaches exploit.

Second, it highlights that mature legacy solutions are tough competitors. They benefit from extensive tuning and real world feedback. Even when you have a genuinely better approach, it will take meaningful time & effort to achieve the current standard.

Patience and solid long term strategy are needed to make progress in these situations. You need confidence that your approach will win long term, backed by enough money & time to prove yourself correct.