File size: 4,662 Bytes
1a1b2ef
 
 
 
 
 
 
 
 
 
 
 
 
 
a3b1e01
1a1b2ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5c45c13
1a1b2ef
 
 
30c689e
 
 
 
 
 
 
 
1a1b2ef
 
 
30c689e
1a1b2ef
5c45c13
1a1b2ef
 
 
30c689e
 
 
 
 
 
 
 
1a1b2ef
 
 
30c689e
1a1b2ef
5c45c13
1a1b2ef
 
 
30c689e
 
 
 
 
 
 
 
1a1b2ef
 
 
30c689e
1a1b2ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
---
tags:
- seismic
- multiples
- denoising
- marine-seismic
- geophysics
- synthetic
task_categories:
- image-to-image
- other
size_categories:
- 1G-10G
pretty_name: Marine Multiples Attenuation Dataset
viewer: false
---

# Marine Multiples Attenuation Dataset

Paired noisy-input / multiples-noise-label SEG-Y volumes for supervised marine multiples attenuation.

## Task

**Noise-label regression**: given a noisy pre-stack shot gather, predict the additive multiples component. The denoised signal is recovered as:

```text
denoised = noisy_input - predicted_multiples
```

The uploaded noise label is the supervised target. The clean reference used by the benchmark is computed as:

```text
clean_reference = noisy_input - multiples_label
```

## Dataset Description

- **Noisy input**: `noisy/total_nodw.sgy`
- **Multiples label**: `noise/multiples.sgy`
- **Geometry used by benchmark configs**: 638 traces per shot, 1,976 time samples per trace
- **Format**: Pre-stack SEG-Y, paired volumes with matching geometry

### Example 1

<div align="center">

  <p><b>Noisy Data</b></p>
  <img src="assets/multiples/noisy1.png" alt="Example 1 noisy data" width="92%">

  <p><b>Clean Data</b></p>
  <img src="assets/multiples/clean1.png" alt="Example 1 clean data" width="92%">

  <p><b>Multiples Noise Label</b></p>
  <img src="assets/multiples/noise1.png" alt="Example 1 multiples noise label" width="92%">

</div>

<div align="center"><i>representative multiples attenuation sample.</i></div>

### Example 2

<div align="center">

  <p><b>Noisy Data</b></p>
  <img src="assets/multiples/noisy2.png" alt="Example 2 noisy data" width="92%">

  <p><b>Clean Data</b></p>
  <img src="assets/multiples/clean2.png" alt="Example 2 clean data" width="92%">

  <p><b>Multiples Noise Label</b></p>
  <img src="assets/multiples/noise2.png" alt="Example 2 multiples noise label" width="92%">

</div>

<div align="center"><i>representative multiples attenuation sample.</i></div>

### Example 3

<div align="center">

  <p><b>Noisy Data</b></p>
  <img src="assets/multiples/noisy3.png" alt="Example 3 noisy data" width="92%">

  <p><b>Clean Data</b></p>
  <img src="assets/multiples/clean3.png" alt="Example 3 clean data" width="92%">

  <p><b>Multiples Noise Label</b></p>
  <img src="assets/multiples/noise3.png" alt="Example 3 multiples noise label" width="92%">

</div>

<div align="center"><i>representative multiples attenuation sample.</i></div>


## File Structure

| Kind | Path | Size |
|------|------|------|
| noise | `noise/multiples.sgy` | 3161.4 MB |
| noisy | `noisy/total_nodw.sgy` | 3161.4 MB |

**Total**: 1 noisy + 1 noise SEG-Y files

## Loading Data

```python
import segyio
import numpy as np

def read_shot_gather(path, traces_per_shot=638):
    '''Read a regular SEG-Y file into (n_shots, n_traces, n_time).'''
    with segyio.open(path, "r", strict=False) as src:
        n_traces_total = src.tracecount
        n_shots = n_traces_total // traces_per_shot
        n_time = src.samples.size
        data = np.zeros((n_shots, traces_per_shot, n_time), dtype=np.float32)
        for i in range(n_shots):
            for j in range(traces_per_shot):
                data[i, j, :] = src.trace[i * traces_per_shot + j]
    return data

noisy = read_shot_gather("noisy/total_nodw.sgy", traces_per_shot=638)
multiples = read_shot_gather("noise/multiples.sgy", traces_per_shot=638)
clean_reference = noisy - multiples
```

With `huggingface_hub`:

```python
from huggingface_hub import hf_hub_download

noisy_path = hf_hub_download(
    repo_id="GeoBrain/multiples",
    filename="noisy/total_nodw.sgy",
    repo_type="dataset",
)
```

## Benchmark Split

The companion benchmark uses shot-level FFID splitting to avoid trace leakage. The current multiples configs use:

| Split | Shots |
|-------|-------|
| Train | 510 |
| Val | 64 |
| Test | 64 |

The split is done at loading time, so users can adjust it in their own configs.

## Preprocessing Recipe

The companion benchmark applies:

1. **Normalization**: `max_abs`, global scope on the noisy input; the same scale is applied to the multiples label.
2. **Patching**: overlapping 2D patches on the trace-time plane.
3. **Metric handling**: SNR can skip near-zero clean-reference patches with `min_signal_energy`.

No spherical-divergence correction is applied in the denoising training script.

## Citation

If you use this dataset, cite the dataset repository:

```bibtex
@misc{marine_multiples_attenuation,
  title={Marine Multiples Attenuation Dataset},
  howpublished={https://huggingface.co/datasets/GeoBrain/multiples},
}
```

## References

- `segyio` library: https://github.com/equinor/segyio