shermansiu commited on
Commit
6d05d1d
1 Parent(s): f7d03dc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -6,7 +6,7 @@ license: cc-by-nc-sa-4.0
6
  Original repo: https://github.com/google-deepmind/graphcast
7
  Original files are from this Google Cloud Bucket: https://console.cloud.google.com/storage/browser/dm_graphcast
8
 
9
- This repo contains the weights for `GraphCast`, the high-resolution model used in the GraphCast paper (0.25 degree resolution, 37 pressure levels), trained on ERA5 data from 1979 to 2017.
10
 
11
  ## License and Attribution
12
  The model weights are released by Google DeepMind.
@@ -20,8 +20,8 @@ You can load the model like so:
20
  ```python
21
  from graphcast import checkpoint
22
 
23
- REPO_ID = "shermansiu/dm_graphcast"
24
- FILENAME = ""
25
 
26
  with open(hf_hub_download(repo_id=REPO_ID, filename=FILENAME), "rb") as f:
27
  ckpt = checkpoint.load(f, graphcast.CheckPoint)
 
6
  Original repo: https://github.com/google-deepmind/graphcast
7
  Original files are from this Google Cloud Bucket: https://console.cloud.google.com/storage/browser/dm_graphcast
8
 
9
+ This repo contains the weights for `GraphCast_operational`, a high-resolution model (0.25 degree resolution, 13 pressure levels) pre-trained on ERA5 data from 1979 to 2017 and fine-tuned on HRES data from 2016 to 2021. This model can be initialized from HRES data (does not require precipitation inputs).
10
 
11
  ## License and Attribution
12
  The model weights are released by Google DeepMind.
 
20
  ```python
21
  from graphcast import checkpoint
22
 
23
+ REPO_ID = "shermansiu/dm_graphcast_operational"
24
+ FILENAME = "GraphCast_operational - ERA5-HRES 1979-2021 - resolution 0.25 - pressure levels 13 - mesh 2to6 - precipitation output only.npz"
25
 
26
  with open(hf_hub_download(repo_id=REPO_ID, filename=FILENAME), "rb") as f:
27
  ckpt = checkpoint.load(f, graphcast.CheckPoint)