Datasets:

ArXiv:
License:
suryadheeshjith commited on
Commit
4f5a6a1
·
verified ·
1 Parent(s): b142786

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -3
README.md CHANGED
@@ -1,3 +1,29 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # Samudra 🌊
6
+ This repository contains the data used to train and test the Samudra Ocean Emulator described in the paper ["Samudra: An AI Global Ocean Emulator for Climate"](https://arxiv.org/abs/2412.03795). Samudra is a skillful global emulator of the ocean component of a state-of-the-art climate model. We emulate key ocean variables, sea surface height, horizontal velocities, temperature, and salinity, across their full depth. Refer the code [here](https://github.com/m2lines/Samudra.git)
7
+
8
+ <p align="center">
9
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/66843421443492c24ce5a19a/jP-SZ0oW9hVOWNZKMouj0.gif" >
10
+ </p>
11
+
12
+ The data is also hosted as uncompressed zarrs in our publicly hosted pod:
13
+
14
+ ```python
15
+ import xarray as xr
16
+ data = xr.open_dataset("https://nyu1.osn.mghpcc.org/m2lines-pubs/Samudra/OM4", engine='zarr', chunks={})
17
+ ```
18
+
19
+
20
+ ### Citing
21
+ If you use this data in your research, please consider citing the following paper:
22
+ ```
23
+ @article{dheeshjith2024samudra,
24
+ title={Samudra: An AI Global Ocean Emulator for Climate},
25
+ author={Dheeshjith, Surya and Subel, Adam and Adcroft, Alistair and Busecke, Julius and Fernandez-Granda, Carlos and Gupta, Shubham and Zanna, Laure},
26
+ journal={arXiv preprint arXiv:2412.03795},
27
+ year={2024}
28
+ }
29
+ ```