shermansiu commited on
Commit
42cd049
1 Parent(s): 93c4194

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_small`, a smaller, low-resolution version of GraphCast (1 degree resolution, 13 pressure levels, and a smaller mesh), trained on ERA5 data from 1979 to 2015, useful to run a model with lower memory and compute constraints.
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_small"
24
+ FILENAME = "GraphCast_small - ERA5 1979-2015 - resolution 1.0 - pressure levels 13 - mesh 2to5 - precipitation input and output.npz"
25
 
26
  with open(hf_hub_download(repo_id=REPO_ID, filename=FILENAME), "rb") as f:
27
  ckpt = checkpoint.load(f, graphcast.CheckPoint)