Datasets:

ArXiv:
License:
maximilianherde commited on
Commit
4de3875
1 Parent(s): f52ce43

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -3
README.md CHANGED
@@ -1,3 +1,31 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ ---
4
+
5
+ # Short Description
6
+
7
+ This dataset comprises trajectories of the Allen-Cahn equation.
8
+
9
+ # Dimensions
10
+
11
+ The assembled NetCDF file has a **single** variable called *solution* with dimensionality
12
+ - 15000 (number of trajectories)
13
+ - 20 (time steps)
14
+ - 128 (x-dim)
15
+ - 128 (y-dim)
16
+
17
+ It was simulated on the unit square up to T=0.0002 and saved as uniformly spaced in space and time.
18
+
19
+ # Train/Val/Test-split
20
+
21
+ 14700/60/240 trajectories
22
+
23
+ # Download & Assembly
24
+
25
+ The dataset can be downloaded, e.g., via `huggingface-cli download`.
26
+
27
+ After download, the chunked data can be assembled into a single NetCDF file using the provided `assemble_data.py` script.
28
+ Use it as follows:
29
+ ```bash
30
+ python assemble_data.py --input_dir . --output_file ACE.nc
31
+ ```