VachelHu commited on
Commit
c691954
1 Parent(s): 3789249

fix README

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md CHANGED
@@ -1,3 +1,56 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # Global Data-driven High-resolution Weather Model
6
+
7
+ This is a global data-driven high-resolution weather model implemented and open sourced by [High-Flyer AI](https://www.high-flyer.cn/). It is the first AI weather model, which can compare with the ECMWF Integrated Forecasting System (IFS).
8
+
9
+ Typhoon track comparison:
10
+
11
+ ![](./img/wind_small.gif)
12
+
13
+ Water vapour comparison:
14
+
15
+ ![](./img/precipitation_small.gif)
16
+
17
+ ## Requirements
18
+
19
+ - [hfai](https://doc.hfai.high-flyer.cn/index.html)
20
+ - torch >=1.8
21
+
22
+
23
+ ## Training
24
+ The raw data is from the public dataset, [ERA5](https://www.ecmwf.int/en/forecasts/datasets/reanalysis-datasets/era5) , which is integrated into the dataset warehouse, `hfai.datasets`.
25
+
26
+ submit these tasks to Yinghuo HPC:
27
+
28
+ 1. pretrain `backbone.pt`
29
+
30
+ ```shell
31
+ hfai python train/pretrain.py -- -n 8 -p 30
32
+ ```
33
+
34
+ 2. finetune `backbone.pt`
35
+
36
+ ```shell
37
+ hfai python train/fine_tune.py -- -n 8 -p 30
38
+ ```
39
+
40
+ 3. train `precipitation.pt`
41
+
42
+ ```shell
43
+ hfai python train/precipitation.py -- -n 8 -p 30
44
+ ```
45
+
46
+
47
+ ## Citation
48
+
49
+ ```bibtex
50
+ @article{pathak2022fourcastnet,
51
+ title={Fourcastnet: A global data-driven high-resolution weather model using adaptive fourier neural operators},
52
+ author={Pathak, Jaideep and Subramanian, Shashank and Harrington, Peter and Raja, Sanjeev and Chattopadhyay, Ashesh and Mardani, Morteza and Kurth, Thorsten and Hall, David and Li, Zongyi and Azizzadenesheli, Kamyar and others},
53
+ journal={arXiv preprint arXiv:2202.11214},
54
+ year={2022}
55
+ }
56
+ ```