Skip to main content

Implementation of the Aurora model

Project description

high resolution (0.1 degree) temperature at 2m predictions gif   nitrogen dioxide predictions gif   ocean wave direction predictions gif   tropical cyclone track predictions gif

Aurora: A Foundation Model for the Earth System

CI Documentation Paper DOI

Implementation of the Aurora model for Earth system forecasting.

Link to the paper.

Please see the documentation for detailed instructions and more examples. You can also directly go to a full-fledged example that runs the model on ERA5.

Cite us as follows:

@article{bodnar2025aurora,
    title = {A Foundation Model for the Earth System},
    author = {Cristian Bodnar and Wessel P. Bruinsma and Ana Lucic and Megan Stanley and Anna Allen and Johannes Brandstetter and Patrick Garvan and Maik Riechert and Jonathan A. Weyn and Haiyu Dong and Jayesh K. Gupta and Kit Thambiratnam and Alexander T. Archibald and Chun-Chieh Wu and Elizabeth Heider and Max Welling and Richard E. Turner and Paris Perdikaris},
    journal = {Nature},
    year = {2025},
    month = {May},
    day = {21},
    issn = {1476-4687},
    doi = {10.1038/s41586-025-09005-y},
    url = {https://doi.org/10.1038/s41586-025-09005-y},
}

Contents:

Please email AIWeatherClimate@microsoft.com if you are interested in using Aurora for commercial applications. For research-related questions or technical support with the code here, please open an issue or reach out to the authors of the paper.

What is Aurora?

Aurora is a machine learning model that can predict atmospheric variables, such as temperature. It is a foundation model, which means that it was first generally trained on a lot of data, and then can be adapted to specialised atmospheric forecasting tasks with relatively little data. We provide four such specialised versions: one for medium-resolution weather prediction, one for high-resolution weather prediction, one for air pollution prediction, and one for ocean wave prediction.

Getting Started

Install with pip:

pip install microsoft-aurora

Or with conda / mamba:

mamba install microsoft-aurora -c conda-forge

Run the pretrained small model on random data:

from datetime import datetime

import torch

from aurora import AuroraSmallPretrained, Batch, Metadata

model = AuroraSmallPretrained()
model.load_checkpoint()

batch = Batch(
    surf_vars={k: torch.randn(1, 2, 17, 32) for k in ("2t", "10u", "10v", "msl")},
    static_vars={k: torch.randn(17, 32) for k in ("lsm", "z", "slt")},
    atmos_vars={k: torch.randn(1, 2, 4, 17, 32) for k in ("z", "u", "v", "t", "q")},
    metadata=Metadata(
        lat=torch.linspace(90, -90, 17),
        lon=torch.linspace(0, 360, 32 + 1)[:-1],
        time=(datetime(2020, 6, 1, 12, 0),),
        atmos_levels=(100, 250, 500, 850),
    ),
)

prediction = model.forward(batch)

print(prediction.surf_vars["2t"])

Note that this will incur a 500 MB download.

Please read the documentation for more detailed instructions and for which models are available.

Contributing

See CONTRIBUTING.md.

License

See LICENSE.txt.

Security

See SECURITY.md.

Responsible AI Transparency Documentation

An AI system includes not only the technology, but also the people who will use it, the people who will be affected by it, and the environment in which it is deployed. Creating a system that is fit for its intended purpose requires an understanding of how the technology works, its capabilities and limitations, and how to achieve the best performance. Microsoft has a broad effort to put our AI principles into practice. To find out more, see Responsible AI principles from Microsoft.

Use of this code

Our goal in publishing this code is (1) to facilitate reproducibility of our paper and (2) to support and accelerate further research into foundation model for atmospheric forecasting. This code has not been developed nor tested for non-academic purposes and hence should only be used as such completely at your own risk.

Limitations

Although Aurora was trained to accurately predict future weather, air pollution, and ocean waves, Aurora is based on neural networks, which means that there are no strict guarantees that predictions will always be accurate. Altering the inputs, providing a sample that was not in the training set, or even providing a sample that was in the training set but is simply unlucky may result in arbitrarily poor predictions. In addition, even though Aurora was trained on a wide variety of data sets, it is possible that Aurora inherits biases present in any one of those data sets. A forecasting system like Aurora is only one piece of the puzzle in a weather prediction pipeline, and its outputs are not meant to be directly used by people or businesses to plan their operations. A series of additional verification tests are needed before it can become operationally useful.

In addition to the above, the models published here are streamlined versions of the models originally developed internally. Whereas we tried to be as thorough as possible, it is possible that the models published here deviate from the original model in subtle, unintended ways. This may affect predictive performance.

Data

The models included in the code have been trained on a variety of publicly available data. A description of all data, including download links, can be found in Supplementary C of the paper. The checkpoints include data from ERA5, CMIP6 (CMCC-CM2-VHR4 and ECMWF-IFS-HR), HRES forecasts, GFS T0, GFS forecasts, HRES T0, HRES analysis, HRES-WAM analysis, CAMS reanalysis, and CAMS analysis.

Evaluations

All versions of Aurora were extensively evaluated by evaluating predictions on data not seen during training. These evaluations not only compare measures of accuracy, such as the root mean square error and anomaly correlation coefficient, but also look at the behaviour in extreme situations, like extreme heat and cold, and rare events, like Storm Ciarán in 2023. These evaluations are the main topic of the paper.

Note: The documentation included in this file is for informational purposes only and is not intended to supersede the applicable license terms.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

FAQ

How do I setup the repo for local development?

First, install the repository in editable mode and setup pre-commit:

make install

To run the tests and print coverage, run

make test

You can then explore the coverage in the browser by opening htmlcov/index.html.

To locally build the documentation, run

make docs

To locally view the documentation, open docs/_build/index.html in your browser.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

microsoft_aurora-1.8.0.tar.gz (201.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

microsoft_aurora-1.8.0-py3-none-any.whl (215.7 kB view details)

Uploaded Python 3

File details

Details for the file microsoft_aurora-1.8.0.tar.gz.

File metadata

  • Download URL: microsoft_aurora-1.8.0.tar.gz
  • Upload date:
  • Size: 201.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for microsoft_aurora-1.8.0.tar.gz
Algorithm Hash digest
SHA256 2557523e880b9754ced6a535e8861ad6bc0b29c26c5c7f62ce4e625b3d1f7d16
MD5 77e85a3f511ac8238e332f1d812b141d
BLAKE2b-256 4150f1b483af3701a1ee277b9f6a88402266eb03a8e0b86197ede3d0475013fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for microsoft_aurora-1.8.0.tar.gz:

Publisher: publish.yaml on microsoft/aurora

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file microsoft_aurora-1.8.0-py3-none-any.whl.

File metadata

File hashes

Hashes for microsoft_aurora-1.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7588a656d10015fc499efa4b992abe4b47c1a4c3e6ea750aae3db4a19c0575f5
MD5 0b8f37ae10565ec7d60ccdf4d0a6812b
BLAKE2b-256 9308a4c9f0898b89ce03f0d7d693d910e1f2356fbf04a99ce7aa929dc3cc78ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for microsoft_aurora-1.8.0-py3-none-any.whl:

Publisher: publish.yaml on microsoft/aurora

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page