← Back to Reviews | AI Models

WeatherNext Review — DeepMind's Open-Source Cyclone Model Adds a Full Day of Warning Time

James Park · · Rated 8/10 · Free and open source (Apache-2.0, github.com/google-deepmind/weathernext); inference cheap enough to run 15-day forecasts in under a minute on a TPU
8 / 10
Ease of Use 7
Features 9
Value for Money 9
Performance 8
Support & Ecosystem 7

✅ Pros

  • On average the model buys forecasters an extra day of predictive accuracy: three-day forecasts match what prior models could only deliver at two days — roughly a decade of meteorological progress in one step, published in Nature (s41586-026-10953-2)
  • Now open source under Apache-2.0 on GitHub (google-deepmind/weathernext, 6,869 stars), with a PyTorch reproduction already merged into NVIDIA's PhysicsNeMo via community PR #1660
  • Real-world validation: during the 2025 hurricane season it helped the National Hurricane Center make the historic Hurricane Melissa rapid-intensification and Jamaica landfall forecast, enabling advance warning on the ground
  • Inference is dramatically cheap: a full 15-day forecast runs in under a minute on a TPU, per the paper — orders of magnitude faster than classical numerical weather prediction (NWP) ensembles
  • Built with forecasters in the loop: co-trained with the NHC, CIRA, UK Met Office and agencies worldwide on ~20TB of global dynamics plus expert-curated cyclone history, now generating 1,000 scenarios per cyclone

⚠️ Cons

  • It is a specialist cyclone/weather model, not a general tool: it won't help with coding, and HN commenters note its methodology overlaps with ECMWF's AI-FS ensemble operational since mid-2025 — 'same methodology, operational a year ago' (wafngar)
  • Explainability gap acknowledged in the paper itself: scientists don't fully understand why the model is so accurate at high resolution, which HN's derbOac flagged as a risk for knowing when it might fail
  • Not a revenue product: HN's HardCodedBias attacked DeepMind for funding work 'with no path to revenue,' and community members (ycui7, ronnieron) worry Google may abandon SOTA science models for commercially viable LLM work
  • Earthquake forecasting — the obvious ask — remains out of reach: cossatot notes ML quake prediction is severely data-limited (~50 years of good catalogs vs. thousand-year seismic cycles)
  • Public-facing forecast products are still catching up: hammock asked whether NWS/NOAA websites surface these predictions yet — the answer is largely not on consumer properties
Best For

Meteorologists, climate researchers, and teams working on cyclone/hurricane risk, shipping safety, or disaster preparedness who want a free, state-of-the-art forecasting model — plus anyone who wants to see what non-LLM, problem-specific AI looks like at frontier quality

Pricing

Free and open source (Apache-2.0, github.com/google-deepmind/weathernext); inference cheap enough to run 15-day forecasts in under a minute on a TPU

Quick Verdict

On August 6, 2026, Google DeepMind published a Nature paper showing its WeatherNext model achieves state-of-the-art accuracy in predicting cyclone track, intensity, and wind structure — and announced the model is now open source. The Hacker News thread hit 353 points, and the reaction was unusually warm for a non-LLM AI story: “This is really cool, please more of this from the AI folks! That’s way more impactful and interesting than another coding agent,” wrote HN user dgellow.

The headline number is simple: on average, WeatherNext gives forecasters an extra day’s worth of predictive accuracy. A three-day WeatherNext forecast is as good as what previous models could provide at two days. DeepMind calls that “roughly a decade’s worth of meteorological progress” — and it is now free to download.

8.0. The science is a 9; the deployment story (open weights, tiny inference cost, forecaster co-development) is a 9; the fact that it’s a narrow specialist model and that parts of the community already see competing approaches dilutes it to an 8.

What WeatherNext Actually Does

Tropical cyclones — hurricanes, typhoons — are among the most destructive phenomena on Earth: more than 700,000 deaths and $1.4 trillion in economic losses over the past 50 years. Every hour of extra warning saves lives and money, so the forecasting problem is a race against time.

WeatherNext is trained end-to-end on two distinct data modalities: global weather dynamics (nearly 20 terabytes of global reanalysis and forecast data) and expert-curated historical cyclone observations. That hybrid design — massive machine-scale data plus smaller, human-curated event data — was specifically called out by HN’s pbronez as “cool.”

The output is a probabilistic forecast: instead of one track line, the system generates 1,000 possible scenarios per cyclone to support forecasters weighing tail risks. And the compute economics are remarkable — the paper reports a single 15-day forecast completes in less than a minute on a TPU, which HN’s snake_doc called “crazy” compared to the hours-long supercomputer runs of classical numerical weather prediction.

The collaboration roster matters for credibility: Google DeepMind and Google Research worked with the National Hurricane Center, CIRA at Colorado State, the UK Met Office, and weather agencies worldwide. This isn’t a lab toy — it’s deployed in operational forecasting workflows.

The Hurricane Melissa Proof Point

The most concrete evidence of value came before the paper: during the 2025 hurricane season, WeatherNext helped the NHC make a historic forecast for Hurricane Melissa — predicting its rapid intensification and landfall in Jamaica accurately enough to issue advance warnings and give teams on the ground critical preparation time.

That real-world validation is what separates this from benchmark theater. The model isn’t just scoring well on retrospective evals; it produced a forecast that changed operational decisions.

The Community Conversation

The HN thread (353 points, 108 comments) split into several distinct camps:

The “problem-specific AI > LLMs” camp was loudest. tcumulus: “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).” segmondy pushed back on the LLM-bubble framing: “If you think AI is all LLMs, that’s because you’re in the LLM bubble.”

The “this is a repeat of ECMWF” camp provided the key caveat. wafngar: “Seems to be the same methodology as the ECMWF AI-FS ensemble operational since mid last year.” That’s a fair point — DeepMind isn’t first to ML weather ensembles; it is, however, open-sourcing a cyclone-specialized model with forecaster co-development, which is genuinely new.

The “Google will kill this” camp worried about the lab’s direction. HardCodedBias: “It’s crazy that when Google is struggling so badly that efforts like this that have no path to revenue at all were funded.” ycui7 added: “On one side DeepMind makes a lot of advancement in science-related applications; on the commercial side they struggle to compete with other major LLM providers.” The counter came from vickychijwani: “Not everything good is about bringing in revenue.”

The “why not earthquakes?” camp got the most substantive answer. cossatot explained that ML earthquake prediction is “very strongly limited by data” — roughly 50 years of good seismological catalogs versus seismic cycles measured in thousands of years. Google’s existing Android earthquake early-warning system (20-30 seconds of alert) remains the practical limit, per mattlondon.

Open Source and Reproducibility

The model is available under Apache-2.0 at github.com/google-deepmind/weathernext (6,869 stars at time of writing). The ecosystem response was fast: HN’s kashifr pointed to a PyTorch reproduction merged into NVIDIA’s PhysicsNeMo (PR #1660), and counters traced the lineage back to Keisler’s 2022 graph-neural-network forecasting work.

For a review site that normally covers developer tools, the takeaway is that the open-weight model ecosystem now extends well beyond LLMs — and the same playbook (weights + paper + community reproduction + real deployment) is being executed by a science lab.

Who Should Use It

Meteorology and climate teams get the most: a free, state-of-the-art cyclone forecasting model with published weights, reproducible results, and operational validation.

Shipping, insurance, and disaster-preparedness teams benefit indirectly — better cyclone forecasts mean better routing (HN’s pingou: “especially useful for cargo ships… they could save fuel and be safer”), better risk pricing, and better evacuation timing.

AI practitioners should study it for the architecture lesson: co-training global dynamics with small curated event data, and generating 1,000-scenario probabilistic ensembles, are patterns that transfer beyond weather.

Skip it if you need general-purpose AI — this is a specialist model. And watch the Google-will-kill-it risk: HN commenters are genuinely uncertain whether DeepMind’s science line survives the commercial pressure. The open-source license is the insurance policy.

The one number to remember: three-day forecasts as good as prior two-day forecasts — an extra day of warning, free, open source, Apache-2.0.

DeepMind WeatherNext Weather-Forecasting Cyclone Open-Source Science-AI Nature TPU