ZDDWLIG commited on
Commit
1a1b2ef
·
verified ·
1 Parent(s): b0eafa0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +161 -0
README.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - seismic
4
+ - multiples
5
+ - denoising
6
+ - marine-seismic
7
+ - geophysics
8
+ - synthetic
9
+ task_categories:
10
+ - image-to-image
11
+ - other
12
+ size_categories:
13
+ - 1G-10G
14
+ pretty_name: Marine Multiples Attenuation Dataset
15
+ ---
16
+
17
+ # Marine Multiples Attenuation Dataset
18
+
19
+ Paired noisy-input / multiples-noise-label SEG-Y volumes for supervised marine multiples attenuation.
20
+
21
+ ## Task
22
+
23
+ **Noise-label regression**: given a noisy pre-stack shot gather, predict the additive multiples component. The denoised signal is recovered as:
24
+
25
+ ```text
26
+ denoised = noisy_input - predicted_multiples
27
+ ```
28
+
29
+ The uploaded noise label is the supervised target. The clean reference used by the benchmark is computed as:
30
+
31
+ ```text
32
+ clean_reference = noisy_input - multiples_label
33
+ ```
34
+
35
+ ## Dataset Description
36
+
37
+ - **Noisy input**: `noisy/total_nodw.sgy`
38
+ - **Multiples label**: `noise/multiples.sgy`
39
+ - **Geometry used by benchmark configs**: 638 traces per shot, 1,976 time samples per trace
40
+ - **Format**: Pre-stack SEG-Y, paired volumes with matching geometry
41
+
42
+
43
+ ### Noisy Shot Gather
44
+
45
+ <div align="center">
46
+
47
+ <img src="assets/multiples/noisy1.png" alt="Noisy Shot Gather example 1" width="48%">
48
+ <img src="assets/multiples/noisy2.png" alt="Noisy Shot Gather example 2" width="48%">
49
+ <img src="assets/multiples/noisy3.png" alt="Noisy Shot Gather example 3" width="48%">
50
+
51
+ </div>
52
+
53
+ <div align="center"><i>Example 1 &nbsp;|&nbsp; Example 2 &nbsp;|&nbsp; Example 3 - noisy shot gather for a representative shot gather.</i></div>
54
+
55
+
56
+ ### Clean Reference Signal
57
+
58
+ <div align="center">
59
+
60
+ <img src="assets/multiples/clean1.png" alt="Clean Reference Signal example 1" width="48%">
61
+ <img src="assets/multiples/clean2.png" alt="Clean Reference Signal example 2" width="48%">
62
+ <img src="assets/multiples/clean3.png" alt="Clean Reference Signal example 3" width="48%">
63
+
64
+ </div>
65
+
66
+ <div align="center"><i>Example 1 &nbsp;|&nbsp; Example 2 &nbsp;|&nbsp; Example 3 - clean reference signal for a representative shot gather.</i></div>
67
+
68
+
69
+ ### Multiples Noise Label
70
+
71
+ <div align="center">
72
+
73
+ <img src="assets/multiples/noise1.png" alt="Multiples Noise Label example 1" width="48%">
74
+ <img src="assets/multiples/noise2.png" alt="Multiples Noise Label example 2" width="48%">
75
+ <img src="assets/multiples/noise3.png" alt="Multiples Noise Label example 3" width="48%">
76
+
77
+ </div>
78
+
79
+ <div align="center"><i>Example 1 &nbsp;|&nbsp; Example 2 &nbsp;|&nbsp; Example 3 - multiples noise label for a representative shot gather.</i></div>
80
+
81
+
82
+ ## File Structure
83
+
84
+ | Kind | Path | Size |
85
+ |------|------|------|
86
+ | noise | `noise/multiples.sgy` | 3161.4 MB |
87
+ | noisy | `noisy/total_nodw.sgy` | 3161.4 MB |
88
+
89
+ **Total**: 1 noisy + 1 noise SEG-Y files
90
+
91
+ ## Loading Data
92
+
93
+ ```python
94
+ import segyio
95
+ import numpy as np
96
+
97
+ def read_shot_gather(path, traces_per_shot=638):
98
+ '''Read a regular SEG-Y file into (n_shots, n_traces, n_time).'''
99
+ with segyio.open(path, "r", strict=False) as src:
100
+ n_traces_total = src.tracecount
101
+ n_shots = n_traces_total // traces_per_shot
102
+ n_time = src.samples.size
103
+ data = np.zeros((n_shots, traces_per_shot, n_time), dtype=np.float32)
104
+ for i in range(n_shots):
105
+ for j in range(traces_per_shot):
106
+ data[i, j, :] = src.trace[i * traces_per_shot + j]
107
+ return data
108
+
109
+ noisy = read_shot_gather("noisy/total_nodw.sgy", traces_per_shot=638)
110
+ multiples = read_shot_gather("noise/multiples.sgy", traces_per_shot=638)
111
+ clean_reference = noisy - multiples
112
+ ```
113
+
114
+ With `huggingface_hub`:
115
+
116
+ ```python
117
+ from huggingface_hub import hf_hub_download
118
+
119
+ noisy_path = hf_hub_download(
120
+ repo_id="GeoBrain/multiples",
121
+ filename="noisy/total_nodw.sgy",
122
+ repo_type="dataset",
123
+ )
124
+ ```
125
+
126
+ ## Benchmark Split
127
+
128
+ The companion benchmark uses shot-level FFID splitting to avoid trace leakage. The current multiples configs use:
129
+
130
+ | Split | Shots |
131
+ |-------|-------|
132
+ | Train | 510 |
133
+ | Val | 64 |
134
+ | Test | 64 |
135
+
136
+ The split is done at loading time, so users can adjust it in their own configs.
137
+
138
+ ## Preprocessing Recipe
139
+
140
+ The companion benchmark applies:
141
+
142
+ 1. **Normalization**: `max_abs`, global scope on the noisy input; the same scale is applied to the multiples label.
143
+ 2. **Patching**: overlapping 2D patches on the trace-time plane.
144
+ 3. **Metric handling**: SNR can skip near-zero clean-reference patches with `min_signal_energy`.
145
+
146
+ No spherical-divergence correction is applied in the denoising training script.
147
+
148
+ ## Citation
149
+
150
+ If you use this dataset, cite the dataset repository:
151
+
152
+ ```bibtex
153
+ @misc{marine_multiples_attenuation,
154
+ title={Marine Multiples Attenuation Dataset},
155
+ howpublished={https://huggingface.co/datasets/GeoBrain/multiples},
156
+ }
157
+ ```
158
+
159
+ ## References
160
+
161
+ - `segyio` library: https://github.com/equinor/segyio