You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update citation and mention wave model
* Expose internal timestep of the model
* Fix title in README
* Expose level aggregation stabilisation tweak
* Test that changing the new flags changes the output
* Add more fine-tuning advice
* Make naming more consistent
* Test that model runs under DDP wrapping
* Add `Batch.{to,from}_netcdf`
Implementation of the Aurora model for atmospheric forecasting.
11
+
Implementation of the Aurora model for Earth system forecasting.
12
12
13
13
_The package currently includes the pretrained model and the fine-tuned version for high-resolution weather forecasting._
14
-
_We are working on the fine-tuned version for air pollution forecasting, which will be included in due time._
14
+
_We are working on the fine-tuned versions for air pollution and ocean wave forecasting, which will be included in due time._
15
15
16
16
[Link to the paper on arXiv.](https://arxiv.org/abs/2405.13063)
17
17
@@ -22,8 +22,8 @@ Cite us as follows:
22
22
23
23
```
24
24
@misc{bodnar2024aurora,
25
-
title = {Aurora: A Foundation Model of the Atmosphere},
26
-
author = {Cristian Bodnar and Wessel P. Bruinsma and Ana Lucic and Megan Stanley and Johannes Brandstetter and Patrick Garvan and Maik Riechert and Jonathan Weyn and Haiyu Dong and Anna Vaughan and Jayesh K. Gupta and Kit Tambiratnam and Alex Archibald and Elizabeth Heider and Max Welling and Richard E. Turner and Paris Perdikaris},
25
+
title = {Aurora: A Foundation Model for the Earth System},
26
+
author = {Cristian Bodnar and Wessel P. Bruinsma and Ana Lucic and Megan Stanley and Anna Vaughan 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},
27
27
year = {2024},
28
28
url = {https://arxiv.org/abs/2405.13063},
29
29
eprint = {2405.13063},
@@ -48,10 +48,11 @@ Contents:
48
48
Aurora is a machine learning model that can predict atmospheric variables, such as temperature.
49
49
It is a _foundation model_, which means that it was first generally trained on a lot of data,
50
50
and then can be adapted to specialised atmospheric forecasting tasks with relatively little data.
51
-
We provide three such specialised versions:
51
+
We provide four such specialised versions:
52
52
one for medium-resolution weather prediction,
53
53
one for high-resolution weather prediction,
54
-
and one for air pollution prediction.
54
+
one for air pollution prediction,
55
+
and one for ocean wave prediction.
55
56
56
57
## Getting Started
57
58
@@ -127,7 +128,7 @@ Our goal in publishing this code is
127
128
This code has not been developed nor tested for non-academic purposes and hence should not be used as such.
128
129
129
130
### Limitations
130
-
Although Aurora was trained to accurately predict future weather and air pollution,
131
+
Although Aurora was trained to accurately predict future weather, air pollution, and ocean waves,
131
132
Aurora is based on neural networks, which means that there are no strict guarantees that predictions will always be accurate.
132
133
Altering the inputs, providing a sample that was not in the training set,
133
134
or even providing a sample that was in the training set but is simply unlucky may result in arbitrarily poor predictions.
@@ -183,7 +184,7 @@ make docs
183
184
184
185
To locally view the documentation, open `docs/_build/index.html` in your browser.
185
186
186
-
### Why is the fine-tuned version of Aurora for air quality forecasting missing?
187
+
### Why are the fine-tuned versions of Aurora for air quality and ocean wave forecasting missing?
187
188
188
189
The package currently includes the pretrained model and the fine-tuned version for high-resolution weather forecasting.
189
-
We are working on the fine-tuned version for air pollution forecasting, which will be included in due time.
190
+
We are working on the fine-tuned versions for air pollution and ocean wave forecasting, which will be included in due time.
0 commit comments