Commit
·
42cd049
1
Parent(s):
93c4194
Update README.md
Browse files
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 `
|
| 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/
|
| 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)
|