Datasets:

ArXiv:
License:
maximilianherde commited on
Commit
1866caa
1 Parent(s): ce3f276

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ ---
4
+
5
+ # Short Description
6
+
7
+ Based on the wave equation, this dataset contains trajectories starting from intial conditions as a sum of Gaussians that are propagated by the spatially varying wave speed that is a vertically layered medium.
8
+
9
+ # Dimensions
10
+
11
+ The assembled NetCDF file has **two** variables. The first is called *solution* with dimensionality
12
+ - 10512 (number of trajectories)
13
+ - 15 (time steps)
14
+ - 128 (x-dim)
15
+ - 128 (y-dim)
16
+ The second variable is called *c* with dimensionality
17
+ - 10512 (number of trajectories)
18
+ - 128 (x-dim)
19
+ - 128 (y-dim)
20
+
21
+ It was simulated on the unit square up to T=1 and saved as uniformly spaced in space and time.
22
+
23
+ # Train/Val/Test-split
24
+
25
+ 10212/60/240 trajectories
26
+
27
+ # Download & Assembly
28
+
29
+ The dataset can be downloaded, e.g., via `huggingface-cli download`.
30
+
31
+ After download, the chunked data can be assembled into a single NetCDF file using the provided `assemble_data.py` script.
32
+ Use it as follows:
33
+ ```bash
34
+ python assemble_data.py --input_dir . --output_file Wave-Layer.nc
35
+ ```