S David Mis commited on
Commit
1655908
·
verified ·
1 Parent(s): b34665a

Add files using upload-large-folder tool

Browse files
README.md CHANGED
@@ -1,3 +1,34 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ pretty_name: Hybrid Helmholtz const_back raw data
4
+ tags:
5
+ - geophysics
6
+ - helmholtz
7
+ - wave-scattering
8
+ - operator-learning
9
  ---
10
+
11
+ # Hybrid Helmholtz const_back Raw Data
12
+
13
+ This dataset repository contains the raw NumPy arrays used by the paper
14
+ [Hybrid operator learning of wave scattering maps in high-contrast media](https://arxiv.org/abs/2602.11197).
15
+
16
+ The repository is intentionally minimal. It contains only the four raw arrays
17
+ consumed by `scripts/prepare_data.py`; processed splits can be regenerated from
18
+ these files.
19
+
20
+ ## Files
21
+
22
+ | Path | Dtype | Shape | Size |
23
+ | --- | --- | --- | --- |
24
+ | `const_back/velocity_sharp.npy` | `float32` | `[50000, 256, 256]` | 12.2 GB |
25
+ | `const_back/velocity_smooth.npy` | `float32` | `[50000, 256, 256]` | 12.2 GB |
26
+ | `const_back/pressure_sharp.npy` | `complex64` | `[50000, 256, 256]` | 24.4 GB |
27
+ | `const_back/pressure_smooth.npy` | `complex64` | `[50000, 256, 256]` | 24.4 GB |
28
+
29
+ ## Usage
30
+
31
+ ```bash
32
+ hf download dmis09/hybrid-operator-learning-of-wave-scattering-maps-in-high-contrast-media --repo-type dataset --local-dir data/raw
33
+ python scripts/prepare_data.py --raw-root data/raw --output-root data/processed --dataset const_back
34
+ ```
const_back/pressure_sharp.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:959171d9f164e19f5f5d55ae12037c4ece1364529fb2592a772c9da185e6f7a5
3
+ size 26214400128
const_back/pressure_smooth.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be999b13f7c1cf508e0225cba60ba2798766b26f3a93a74fb97147f3683f2837
3
+ size 26214400128
const_back/velocity_sharp.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82f5227c11883ffcd5993ce5657bd1af55e09b1941eeabe9ea4c506038cd8ddd
3
+ size 13107200128
const_back/velocity_smooth.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3543eb1178e36630882a7f1b524cb65b89d68ea195d101c6269584cc5e073033
3
+ size 13107200128
hf_release_manifest.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artifact_type": "raw_data",
3
+ "created_at_utc": "2026-06-02T19:30:09.006793+00:00",
4
+ "dataset": "const_back",
5
+ "files": [
6
+ {
7
+ "dtype": "complex64",
8
+ "kind": "raw_numpy_array",
9
+ "path": "const_back/pressure_sharp.npy",
10
+ "shape": [
11
+ 50000,
12
+ 256,
13
+ 256
14
+ ],
15
+ "size": "24.4 GB",
16
+ "size_bytes": 26214400128
17
+ },
18
+ {
19
+ "dtype": "complex64",
20
+ "kind": "raw_numpy_array",
21
+ "path": "const_back/pressure_smooth.npy",
22
+ "shape": [
23
+ 50000,
24
+ 256,
25
+ 256
26
+ ],
27
+ "size": "24.4 GB",
28
+ "size_bytes": 26214400128
29
+ },
30
+ {
31
+ "dtype": "float32",
32
+ "kind": "raw_numpy_array",
33
+ "path": "const_back/velocity_sharp.npy",
34
+ "shape": [
35
+ 50000,
36
+ 256,
37
+ 256
38
+ ],
39
+ "size": "12.2 GB",
40
+ "size_bytes": 13107200128
41
+ },
42
+ {
43
+ "dtype": "float32",
44
+ "kind": "raw_numpy_array",
45
+ "path": "const_back/velocity_smooth.npy",
46
+ "shape": [
47
+ 50000,
48
+ 256,
49
+ 256
50
+ ],
51
+ "size": "12.2 GB",
52
+ "size_bytes": 13107200128
53
+ }
54
+ ],
55
+ "layout": "const_back/<raw-array>.npy",
56
+ "paper": {
57
+ "title": "Hybrid operator learning of wave scattering maps in high-contrast media",
58
+ "url": "https://arxiv.org/abs/2602.11197"
59
+ },
60
+ "selection_policy": "Only the four raw arrays consumed by scripts/prepare_data.py are staged."
61
+ }